-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdev_rfc.log
More file actions
2617 lines (2400 loc) · 127 KB
/
Copy pathdev_rfc.log
File metadata and controls
2617 lines (2400 loc) · 127 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
**** Log file opened at 2024-04-11 16:56:05.006300 UTC+08:00 (W. Australia Standard Time), Encoding UTF-8
NW RFC Library: Kernel variant, Release 750 Patch Level 12
Compilation date : Jun 30 2023 01:15:34
CPIC library : 753.2023.04.24 version 3
NI library : 40
Kernel Release : 753 Patch Level 1214
Current working directory : C:\dev\QRM\data-migration-validation
Program : python
Process ID : 09800
User : he127407
Hardware : PC with Windows NT 4x AMD64 Level 6 (Mod 61 Step 4)
Operating_system : Windows NT 10.0
Hostname : E00157725
IP address : 10.21.108.138
IPv6 address : fe80::1813:4dc:22f8:c8
Global trace level : 0
2024-04-11 16:56:04.817699 [07452] >> Info entry
Did not find config file C:\dev\QRM\data-migration-validation\sapnwrfc.ini.
2024-04-11 16:56:05.752766 [07452] >> Error entry
Error in receive: 18, no SAP ErrInfo available, 311
2024-04-11 16:56:05.795728 [07452] >> Error entry
[Handle: 2075845293856 ConvID: 44103347 Target: vaciy7i SysID: Y7I SysNr: 00 User: APIUSER_SNWF Client: 100 Language: E Codepage: 4103]
RfcLogonException: Key: RFC_LOGON_FAILURE, Code: RFC_LOGON_FAILURE, Message: Name or password is incorrect (repeat logon)
**** Log file opened at 2024-04-11 16:57:28.417585 UTC+08:00 (W. Australia Standard Time), Encoding UTF-8
NW RFC Library: Kernel variant, Release 750 Patch Level 12
Compilation date : Jun 30 2023 01:15:34
CPIC library : 753.2023.04.24 version 3
NI library : 40
Kernel Release : 753 Patch Level 1214
Current working directory : C:\dev\QRM\data-migration-validation
Program : python
Process ID : 16344
User : he127407
Hardware : PC with Windows NT 4x AMD64 Level 6 (Mod 61 Step 4)
Operating_system : Windows NT 10.0
Hostname : E00157725
IP address : 10.21.108.138
IPv6 address : fe80::1813:4dc:22f8:c8
Global trace level : 0
2024-04-11 16:57:28.415039 [16044] >> Error entry
Error in receive: 18, no SAP ErrInfo available, 311
2024-04-11 16:57:28.446941 [16044] >> Error entry
[Handle: 2145407154032 ConvID: 44193059 Target: vaciy7i SysID: Y7I SysNr: 00 User: APIUSER_SNWF Client: 100 Language: E Codepage: 4103]
RfcLogonException: Key: RFC_LOGON_FAILURE, Code: RFC_LOGON_FAILURE, Message: Name or password is incorrect (repeat logon)
**** Log file opened at 2024-04-11 16:57:48.505057 UTC+08:00 (W. Australia Standard Time), Encoding UTF-8
NW RFC Library: Kernel variant, Release 750 Patch Level 12
Compilation date : Jun 30 2023 01:15:34
CPIC library : 753.2023.04.24 version 3
NI library : 40
Kernel Release : 753 Patch Level 1214
Current working directory : C:\dev\QRM\data-migration-validation
Program : python
Process ID : 15896
User : he127407
Hardware : PC with Windows NT 4x AMD64 Level 6 (Mod 61 Step 4)
Operating_system : Windows NT 10.0
Hostname : E00157725
IP address : 10.21.108.138
IPv6 address : fe80::1813:4dc:22f8:c8
Global trace level : 0
**** Log file opened at 2024-04-11 16:57:48.505128 UTC+08:00 (W. Australia Standard Time), Encoding UTF-8
NW RFC Library: Kernel variant, Release 750 Patch Level 12
Compilation date : Jun 30 2023 01:15:34
CPIC library : 753.2023.04.24 version 3
NI library : 40
Kernel Release : 753 Patch Level 1214
Current working directory : C:\dev\QRM\data-migration-validation
Program : python
Process ID : 16164
User : he127407
Hardware : PC with Windows NT 4x AMD64 Level 6 (Mod 61 Step 4)
Operating_system : Windows NT 10.0
Hostname : E00157725
IP address : 10.21.108.138
IPv6 address : fe80::1813:4dc:22f8:c8
Global trace level : 0
2024-04-11 16:57:48.502658 [09128] >> Error entry
Error in receive: 18, no SAP ErrInfo available, 311
**** Log file opened at 2024-04-11 16:57:48.520709 UTC+08:00 (W. Australia Standard Time), Encoding UTF-8
NW RFC Library: Kernel variant, Release 750 Patch Level 12
Compilation date : Jun 30 2023 01:15:34
CPIC library : 753.2023.04.24 version 3
NI library : 40
Kernel Release : 753 Patch Level 1214
Current working directory : C:\dev\QRM\data-migration-validation
Program : python
Process ID : 01236
User : he127407
Hardware : PC with Windows NT 4x AMD64 Level 6 (Mod 61 Step 4)
Operating_system : Windows NT 10.0
Hostname : E00157725
IP address : 10.21.108.138
IPv6 address : fe80::1813:4dc:22f8:c8
Global trace level : 0
2024-04-11 16:57:48.518630 [01736] >> Error entry
Error in receive: 18, no SAP ErrInfo available, 311
2024-04-11 16:57:48.535042 [13828] >> Error entry
[Handle: 2048926461920 ConvID: 44214140 Target: vaciy7i SysID: Y7I SysNr: 00 User: APIUSER_SNWF Client: 100 Language: E Codepage: 4103]
RfcLogonException: Key: RFC_LOGON_FAILURE, Code: RFC_LOGON_FAILURE, Message: Name or password is incorrect (repeat logon)
2024-04-11 16:57:48.550681 [01736] >> Error entry
[Handle: 2112064954848 ConvID: 44216196 Target: vaciy7i SysID: Y7I SysNr: 00 User: APIUSER_SNWF Client: 100 Language: E Codepage: 4103]
RfcLogonException: Key: RFC_LOGON_FAILURE, Code: RFC_LOGON_FAILURE, Message: Name or password is incorrect (repeat logon)
2024-04-11 16:57:48.576118 [09128] >> Error entry
[Handle: 1736098452336 ConvID: 44215190 Target: vaciy7i SysID: Y7I SysNr: 00 User: APIUSER_SNWF Client: 100 Language: E Codepage: 4103]
RfcLogonException: Key: RFC_LOGON_FAILURE, Code: RFC_LOGON_FAILURE, Message: Name or password is incorrect (repeat logon)
**** Log file opened at 2024-04-11 16:57:48.647443 UTC+08:00 (W. Australia Standard Time), Encoding UTF-8
NW RFC Library: Kernel variant, Release 750 Patch Level 12
Compilation date : Jun 30 2023 01:15:34
CPIC library : 753.2023.04.24 version 3
NI library : 40
Kernel Release : 753 Patch Level 1214
Current working directory : C:\dev\QRM\data-migration-validation
Program : python
Process ID : 16348
User : he127407
Hardware : PC with Windows NT 4x AMD64 Level 6 (Mod 61 Step 4)
Operating_system : Windows NT 10.0
Hostname : E00157725
IP address : 10.21.108.138
IPv6 address : fe80::1813:4dc:22f8:c8
Global trace level : 0
2024-04-11 16:57:48.643630 [03020] >> Error entry
Error in receive: 18, no SAP ErrInfo available, 311
2024-04-11 16:57:48.677731 [03020] >> Error entry
[Handle: 2875663689440 ConvID: 44217327 Target: vaciy7i SysID: Y7I SysNr: 00 User: APIUSER_SNWF Client: 100 Language: E Codepage: 4103]
RfcLogonException: Key: RFC_LOGON_FAILURE, Code: RFC_LOGON_FAILURE, Message: Name or password is incorrect (repeat logon)
2024-04-11 16:57:50.874142 [13828] >> Error entry
Error in receive: 18, no SAP ErrInfo available, 311
2024-04-11 16:57:50.874419 [13828] >> Error entry
[Handle: 2048927866896 ConvID: 44220588 Target: vaciy7i SysID: Y7I SysNr: 00 User: APIUSER_SNWF Client: 100 Language: E Codepage: 4103]
RfcLogonException: Key: RFC_LOGON_FAILURE, Code: RFC_LOGON_FAILURE, Message: Name or password is incorrect (repeat logon)
2024-04-11 16:57:51.498818 [13828] >> Error entry
Error in receive: 18, no SAP ErrInfo available, 311
2024-04-11 16:57:51.499086 [13828] >> Error entry
[Handle: 2048927568496 ConvID: 44222212 Target: vaciy7i SysID: Y7I SysNr: 00 User: APIUSER_SNWF Client: 100 Language: E Codepage: 4103]
RfcLogonException: Key: RFC_LOGON_FAILURE, Code: RFC_LOGON_FAILURE, Message: Name or password is incorrect (repeat logon)
**** Log file opened at 2024-04-11 16:59:49.132873 UTC+08:00 (W. Australia Standard Time), Encoding UTF-8
NW RFC Library: Kernel variant, Release 750 Patch Level 12
Compilation date : Jun 30 2023 01:15:34
CPIC library : 753.2023.04.24 version 3
NI library : 40
Kernel Release : 753 Patch Level 1214
Current working directory : C:\dev\QRM\data-migration-validation
Program : python
Process ID : 15224
User : he127407
Hardware : PC with Windows NT 4x AMD64 Level 6 (Mod 61 Step 4)
Operating_system : Windows NT 10.0
Hostname : E00157725
IP address : 10.21.108.138
IPv6 address : fe80::1813:4dc:22f8:c8
Global trace level : 0
2024-04-11 16:59:49.130443 [15296] >> Error entry
Error in receive: 18, no SAP ErrInfo available, 311
2024-04-11 16:59:49.164433 [15296] >> Error entry
[Handle: 1687415294976 ConvID: 44341794 Target: vaciy7i SysID: Y7I SysNr: 00 User: APIUSER_SNWF Client: 100 Language: E Codepage: 4103]
RfcLogonException: Key: RFC_LOGON_FAILURE, Code: RFC_LOGON_FAILURE, Message: Name or password is incorrect (repeat logon)
**** Log file opened at 2024-04-11 17:00:13.809059 UTC+08:00 (W. Australia Standard Time), Encoding UTF-8
NW RFC Library: Kernel variant, Release 750 Patch Level 12
Compilation date : Jun 30 2023 01:15:34
CPIC library : 753.2023.04.24 version 3
NI library : 40
Kernel Release : 753 Patch Level 1214
Current working directory : C:\dev\QRM\data-migration-validation
Program : python
Process ID : 02880
User : he127407
Hardware : PC with Windows NT 4x AMD64 Level 6 (Mod 61 Step 4)
Operating_system : Windows NT 10.0
Hostname : E00157725
IP address : 10.21.108.138
IPv6 address : fe80::1813:4dc:22f8:c8
Global trace level : 0
2024-04-11 17:00:13.806865 [16356] >> Error entry
Error in receive: 18, no SAP ErrInfo available, 311
2024-04-11 17:00:13.838845 [16356] >> Error entry
[Handle: 2370555019472 ConvID: 44367472 Target: vaciy7i SysID: Y7I SysNr: 00 User: APIUSER_SNWF Client: 100 Language: E Codepage: 4103]
RfcLogonException: Key: RFC_LOGON_FAILURE, Code: RFC_LOGON_FAILURE, Message: Name or password is incorrect (repeat logon)
**** Log file opened at 2024-04-11 17:00:13.872279 UTC+08:00 (W. Australia Standard Time), Encoding UTF-8
NW RFC Library: Kernel variant, Release 750 Patch Level 12
Compilation date : Jun 30 2023 01:15:34
CPIC library : 753.2023.04.24 version 3
NI library : 40
Kernel Release : 753 Patch Level 1214
Current working directory : C:\dev\QRM\data-migration-validation
Program : python
Process ID : 11508
User : he127407
Hardware : PC with Windows NT 4x AMD64 Level 6 (Mod 61 Step 4)
Operating_system : Windows NT 10.0
Hostname : E00157725
IP address : 10.21.108.138
IPv6 address : fe80::1813:4dc:22f8:c8
Global trace level : 0
2024-04-11 17:00:13.869857 [07396] >> Error entry
Error in receive: 18, no SAP ErrInfo available, 311
2024-04-11 17:00:13.902814 [07396] >> Error entry
[Handle: 1441076009136 ConvID: 44368512 Target: vaciy7i SysID: Y7I SysNr: 00 User: APIUSER_SNWF Client: 100 Language: E Codepage: 4103]
RfcLogonException: Key: RFC_LOGON_FAILURE, Code: RFC_LOGON_FAILURE, Message: Name or password is incorrect (repeat logon)
**** Log file opened at 2024-04-11 17:00:13.904236 UTC+08:00 (W. Australia Standard Time), Encoding UTF-8
NW RFC Library: Kernel variant, Release 750 Patch Level 12
Compilation date : Jun 30 2023 01:15:34
CPIC library : 753.2023.04.24 version 3
NI library : 40
Kernel Release : 753 Patch Level 1214
Current working directory : C:\dev\QRM\data-migration-validation
Program : python
Process ID : 13200
User : he127407
Hardware : PC with Windows NT 4x AMD64 Level 6 (Mod 61 Step 4)
Operating_system : Windows NT 10.0
Hostname : E00157725
IP address : 10.21.108.138
IPv6 address : fe80::1813:4dc:22f8:c8
Global trace level : 0
2024-04-11 17:00:13.901801 [15732] >> Error entry
Error in receive: 18, no SAP ErrInfo available, 311
2024-04-11 17:00:13.937306 [15732] >> Error entry
[Handle: 2607530073664 ConvID: 44369531 Target: vaciy7i SysID: Y7I SysNr: 00 User: APIUSER_SNWF Client: 100 Language: E Codepage: 4103]
RfcLogonException: Key: RFC_LOGON_FAILURE, Code: RFC_LOGON_FAILURE, Message: Name or password is incorrect (repeat logon)
**** Log file opened at 2024-04-11 17:00:14.061402 UTC+08:00 (W. Australia Standard Time), Encoding UTF-8
NW RFC Library: Kernel variant, Release 750 Patch Level 12
Compilation date : Jun 30 2023 01:15:34
CPIC library : 753.2023.04.24 version 3
NI library : 40
Kernel Release : 753 Patch Level 1214
Current working directory : C:\dev\QRM\data-migration-validation
Program : python
Process ID : 01756
User : he127407
Hardware : PC with Windows NT 4x AMD64 Level 6 (Mod 61 Step 4)
Operating_system : Windows NT 10.0
Hostname : E00157725
IP address : 10.21.108.138
IPv6 address : fe80::1813:4dc:22f8:c8
Global trace level : 0
2024-04-11 17:00:14.045757 [09820] >> Error entry
Error in receive: 18, no SAP ErrInfo available, 311
2024-04-11 17:00:14.104824 [09820] >> Error entry
[Handle: 2593116737808 ConvID: 44370702 Target: vaciy7i SysID: Y7I SysNr: 00 User: APIUSER_SNWF Client: 100 Language: E Codepage: 4103]
RfcLogonException: Key: RFC_LOGON_FAILURE, Code: RFC_LOGON_FAILURE, Message: Name or password is incorrect (repeat logon)
2024-04-11 17:00:17.369726 [16356] >> Error entry
Error in receive: 18, no SAP ErrInfo available, 311
2024-04-11 17:00:17.370000 [16356] >> Error entry
[Handle: 2370555567792 ConvID: 44375050 Target: vaciy7i SysID: Y7I SysNr: 00 User: APIUSER_SNWF Client: 100 Language: E Codepage: 4103]
RfcLogonException: Key: RFC_LOGON_FAILURE, Code: RFC_LOGON_FAILURE, Message: Name or password is incorrect (repeat logon)
2024-04-11 17:00:18.104265 [16356] >> Error entry
Error in receive: 18, no SAP ErrInfo available, 311
2024-04-11 17:00:18.104551 [16356] >> Error entry
[Handle: 2370555567792 ConvID: 44376809 Target: vaciy7i SysID: Y7I SysNr: 00 User: APIUSER_SNWF Client: 100 Language: E Codepage: 4103]
RfcLogonException: Key: RFC_LOGON_FAILURE, Code: RFC_LOGON_FAILURE, Message: Name or password is incorrect (repeat logon)
**** Log file opened at 2024-04-11 17:02:36.207779 UTC+08:00 (W. Australia Standard Time), Encoding UTF-8
NW RFC Library: Kernel variant, Release 750 Patch Level 12
Compilation date : Jun 30 2023 01:15:34
CPIC library : 753.2023.04.24 version 3
NI library : 40
Kernel Release : 753 Patch Level 1214
Current working directory : C:\dev\QRM\data-migration-validation
Program : python
Process ID : 08884
User : he127407
Hardware : PC with Windows NT 4x AMD64 Level 6 (Mod 61 Step 4)
Operating_system : Windows NT 10.0
Hostname : E00157725
IP address : 10.21.108.138
IPv6 address : fe80::1813:4dc:22f8:c8
Global trace level : 0
2024-04-11 17:02:36.205593 [04868] >> Error entry
Error in receive: 18, no SAP ErrInfo available, 311
2024-04-11 17:02:36.223948 [04868] >> Error entry
[Handle: 2203218069984 ConvID: 44525900 Target: vaciy7i SysID: Y7I SysNr: 00 User: APIUSER_SNWF Client: 100 Language: E Codepage: 4103]
RfcLogonException: Key: RFC_LOGON_FAILURE, Code: RFC_LOGON_FAILURE, Message: Name or password is incorrect (repeat logon)
**** Log file opened at 2024-04-11 17:02:50.533814 UTC+08:00 (W. Australia Standard Time), Encoding UTF-8
NW RFC Library: Kernel variant, Release 750 Patch Level 12
Compilation date : Jun 30 2023 01:15:34
CPIC library : 753.2023.04.24 version 3
NI library : 40
Kernel Release : 753 Patch Level 1214
Current working directory : C:\dev\QRM\data-migration-validation
Program : python
Process ID : 15448
User : he127407
Hardware : PC with Windows NT 4x AMD64 Level 6 (Mod 61 Step 4)
Operating_system : Windows NT 10.0
Hostname : E00157725
IP address : 10.21.108.138
IPv6 address : fe80::1813:4dc:22f8:c8
Global trace level : 0
2024-04-11 17:02:50.531646 [15368] >> Error entry
Error in receive: 18, no SAP ErrInfo available, 311
2024-04-11 17:02:50.564524 [15368] >> Error entry
[Handle: 1941211761152 ConvID: 44541208 Target: vaciy7i SysID: Y7I SysNr: 00 User: APIUSER_SNWF Client: 100 Language: E Codepage: 4103]
RfcLogonException: Key: RFC_LOGON_FAILURE, Code: RFC_LOGON_FAILURE, Message: Name or password is incorrect (repeat logon)
**** Log file opened at 2024-04-11 17:02:50.645066 UTC+08:00 (W. Australia Standard Time), Encoding UTF-8
NW RFC Library: Kernel variant, Release 750 Patch Level 12
Compilation date : Jun 30 2023 01:15:34
CPIC library : 753.2023.04.24 version 3
NI library : 40
Kernel Release : 753 Patch Level 1214
Current working directory : C:\dev\QRM\data-migration-validation
Program : python
Process ID : 03160
User : he127407
Hardware : PC with Windows NT 4x AMD64 Level 6 (Mod 61 Step 4)
Operating_system : Windows NT 10.0
Hostname : E00157725
IP address : 10.21.108.138
IPv6 address : fe80::1813:4dc:22f8:c8
Global trace level : 0
2024-04-11 17:02:50.642505 [16112] >> Error entry
Error in receive: 18, no SAP ErrInfo available, 311
2024-04-11 17:02:50.642504 [14492] >> Error entry
Error in receive: 18, no SAP ErrInfo available, 311
2024-04-11 17:02:50.672222 [14492] >> Error entry
[Handle: 3123684568448 ConvID: 44543309 Target: vaciy7i SysID: Y7I SysNr: 00 User: APIUSER_SNWF Client: 100 Language: E Codepage: 4103]
RfcLogonException: Key: RFC_LOGON_FAILURE, Code: RFC_LOGON_FAILURE, Message: Name or password is incorrect (repeat logon)
2024-04-11 17:02:50.675416 [16112] >> Error entry
[Handle: 2006993823904 ConvID: 44544325 Target: vaciy7i SysID: Y7I SysNr: 00 User: APIUSER_SNWF Client: 100 Language: E Codepage: 4103]
RfcLogonException: Key: RFC_LOGON_FAILURE, Code: RFC_LOGON_FAILURE, Message: Name or password is incorrect (repeat logon)
**** Log file opened at 2024-04-11 17:02:50.723799 UTC+08:00 (W. Australia Standard Time), Encoding UTF-8
NW RFC Library: Kernel variant, Release 750 Patch Level 12
Compilation date : Jun 30 2023 01:15:34
CPIC library : 753.2023.04.24 version 3
NI library : 40
Kernel Release : 753 Patch Level 1214
Current working directory : C:\dev\QRM\data-migration-validation
Program : python
Process ID : 12772
User : he127407
Hardware : PC with Windows NT 4x AMD64 Level 6 (Mod 61 Step 4)
Operating_system : Windows NT 10.0
Hostname : E00157725
IP address : 10.21.108.138
IPv6 address : fe80::1813:4dc:22f8:c8
Global trace level : 0
2024-04-11 17:02:50.721409 [10316] >> Error entry
Error in receive: 18, no SAP ErrInfo available, 311
2024-04-11 17:02:50.753279 [10316] >> Error entry
[Handle: 2319492678064 ConvID: 44542300 Target: vaciy7i SysID: Y7I SysNr: 00 User: APIUSER_SNWF Client: 100 Language: E Codepage: 4103]
RfcLogonException: Key: RFC_LOGON_FAILURE, Code: RFC_LOGON_FAILURE, Message: Name or password is incorrect (repeat logon)
2024-04-11 17:02:52.289726 [15368] >> Error entry
Error in receive: 18, no SAP ErrInfo available, 311
2024-04-11 17:02:52.290115 [15368] >> Error entry
[Handle: 1941212208624 ConvID: 44547003 Target: vaciy7i SysID: Y7I SysNr: 00 User: APIUSER_SNWF Client: 100 Language: E Codepage: 4103]
RfcLogonException: Key: RFC_LOGON_FAILURE, Code: RFC_LOGON_FAILURE, Message: Name or password is incorrect (repeat logon)
2024-04-11 17:02:52.898562 [15368] >> Error entry
Error in receive: 18, no SAP ErrInfo available, 311
2024-04-11 17:02:52.898784 [15368] >> Error entry
[Handle: 1941212208624 ConvID: 44548616 Target: vaciy7i SysID: Y7I SysNr: 00 User: APIUSER_SNWF Client: 100 Language: E Codepage: 4103]
RfcLogonException: Key: RFC_LOGON_FAILURE, Code: RFC_LOGON_FAILURE, Message: Name or password is incorrect (repeat logon)
**** Log file opened at 2024-04-11 17:04:13.591555 UTC+08:00 (W. Australia Standard Time), Encoding UTF-8
NW RFC Library: Kernel variant, Release 750 Patch Level 12
Compilation date : Jun 30 2023 01:15:34
CPIC library : 753.2023.04.24 version 3
NI library : 40
Kernel Release : 753 Patch Level 1214
Current working directory : C:\dev\QRM\data-migration-validation
Program : python
Process ID : 14128
User : he127407
Hardware : PC with Windows NT 4x AMD64 Level 6 (Mod 61 Step 4)
Operating_system : Windows NT 10.0
Hostname : E00157725
IP address : 10.21.108.138
IPv6 address : fe80::1813:4dc:22f8:c8
Global trace level : 0
2024-04-11 17:04:13.589708 [11132] >> Error entry
Error in receive: 18, no SAP ErrInfo available, 311
2024-04-11 17:04:13.616830 [11132] >> Error entry
[Handle: 2237010912928 ConvID: 44630272 Target: vaciy7i SysID: Y7I SysNr: 00 User: APIUSER_SNWF Client: 100 Language: E Codepage: 4103]
RfcLogonException: Key: RFC_LOGON_FAILURE, Code: RFC_LOGON_FAILURE, Message: Name or password is incorrect (repeat logon)
**** Log file opened at 2024-04-11 17:04:38.005708 UTC+08:00 (W. Australia Standard Time), Encoding UTF-8
NW RFC Library: Kernel variant, Release 750 Patch Level 12
Compilation date : Jun 30 2023 01:15:34
CPIC library : 753.2023.04.24 version 3
NI library : 40
Kernel Release : 753 Patch Level 1214
Current working directory : C:\dev\QRM\data-migration-validation
Program : python
Process ID : 11552
User : he127407
Hardware : PC with Windows NT 4x AMD64 Level 6 (Mod 61 Step 4)
Operating_system : Windows NT 10.0
Hostname : E00157725
IP address : 10.21.108.138
IPv6 address : fe80::1813:4dc:22f8:c8
Global trace level : 0
2024-04-11 17:04:38.003018 [16336] >> Error entry
Error in receive: 18, no SAP ErrInfo available, 311
2024-04-11 17:04:38.037305 [16336] >> Error entry
[Handle: 2583426596832 ConvID: 44655677 Target: vaciy7i SysID: Y7I SysNr: 00 User: APIUSER_SNWF Client: 100 Language: E Codepage: 4103]
RfcLogonException: Key: RFC_LOGON_FAILURE, Code: RFC_LOGON_FAILURE, Message: Name or password is incorrect (repeat logon)
**** Log file opened at 2024-04-11 17:04:38.085878 UTC+08:00 (W. Australia Standard Time), Encoding UTF-8
NW RFC Library: Kernel variant, Release 750 Patch Level 12
Compilation date : Jun 30 2023 01:15:34
CPIC library : 753.2023.04.24 version 3
NI library : 40
Kernel Release : 753 Patch Level 1214
Current working directory : C:\dev\QRM\data-migration-validation
Program : python
Process ID : 07368
User : he127407
Hardware : PC with Windows NT 4x AMD64 Level 6 (Mod 61 Step 4)
Operating_system : Windows NT 10.0
Hostname : E00157725
IP address : 10.21.108.138
IPv6 address : fe80::1813:4dc:22f8:c8
Global trace level : 0
2024-04-11 17:04:38.082147 [09852] >> Error entry
Error in receive: 18, no SAP ErrInfo available, 311
2024-04-11 17:04:38.117214 [09852] >> Error entry
[Handle: 2720441682320 ConvID: 44656747 Target: vaciy7i SysID: Y7I SysNr: 00 User: APIUSER_SNWF Client: 100 Language: E Codepage: 4103]
RfcLogonException: Key: RFC_LOGON_FAILURE, Code: RFC_LOGON_FAILURE, Message: Name or password is incorrect (repeat logon)
**** Log file opened at 2024-04-11 17:04:38.118906 UTC+08:00 (W. Australia Standard Time), Encoding UTF-8
NW RFC Library: Kernel variant, Release 750 Patch Level 12
Compilation date : Jun 30 2023 01:15:34
CPIC library : 753.2023.04.24 version 3
NI library : 40
Kernel Release : 753 Patch Level 1214
Current working directory : C:\dev\QRM\data-migration-validation
Program : python
Process ID : 14732
User : he127407
Hardware : PC with Windows NT 4x AMD64 Level 6 (Mod 61 Step 4)
Operating_system : Windows NT 10.0
Hostname : E00157725
IP address : 10.21.108.138
IPv6 address : fe80::1813:4dc:22f8:c8
Global trace level : 0
2024-04-11 17:04:38.112964 [13660] >> Error entry
Error in receive: 18, no SAP ErrInfo available, 311
2024-04-11 17:04:38.149456 [13660] >> Error entry
[Handle: 2311721471248 ConvID: 44657789 Target: vaciy7i SysID: Y7I SysNr: 00 User: APIUSER_SNWF Client: 100 Language: E Codepage: 4103]
RfcLogonException: Key: RFC_LOGON_FAILURE, Code: RFC_LOGON_FAILURE, Message: Name or password is incorrect (repeat logon)
**** Log file opened at 2024-04-11 17:04:38.322623 UTC+08:00 (W. Australia Standard Time), Encoding UTF-8
NW RFC Library: Kernel variant, Release 750 Patch Level 12
Compilation date : Jun 30 2023 01:15:34
CPIC library : 753.2023.04.24 version 3
NI library : 40
Kernel Release : 753 Patch Level 1214
Current working directory : C:\dev\QRM\data-migration-validation
Program : python
Process ID : 13200
User : he127407
Hardware : PC with Windows NT 4x AMD64 Level 6 (Mod 61 Step 4)
Operating_system : Windows NT 10.0
Hostname : E00157725
IP address : 10.21.108.138
IPv6 address : fe80::1813:4dc:22f8:c8
Global trace level : 0
2024-04-11 17:04:38.299751 [11508] >> Error entry
Error in receive: 18, no SAP ErrInfo available, 311
2024-04-11 17:04:38.353690 [11508] >> Error entry
[Handle: 2099201506512 ConvID: 44658921 Target: vaciy7i SysID: Y7I SysNr: 00 User: APIUSER_SNWF Client: 100 Language: E Codepage: 4103]
RfcLogonException: Key: RFC_LOGON_FAILURE, Code: RFC_LOGON_FAILURE, Message: Name or password is incorrect (repeat logon)
2024-04-11 17:04:41.361825 [16336] >> Error entry
Error in receive: 18, no SAP ErrInfo available, 311
2024-04-11 17:04:41.362060 [16336] >> Error entry
[Handle: 2583427103664 ConvID: 44663072 Target: vaciy7i SysID: Y7I SysNr: 00 User: APIUSER_SNWF Client: 100 Language: E Codepage: 4103]
RfcLogonException: Key: RFC_LOGON_FAILURE, Code: RFC_LOGON_FAILURE, Message: Name or password is incorrect (repeat logon)
2024-04-11 17:04:41.969474 [16336] >> Error entry
Error in receive: 18, no SAP ErrInfo available, 311
2024-04-11 17:04:41.969717 [16336] >> Error entry
[Handle: 2583427103664 ConvID: 44664682 Target: vaciy7i SysID: Y7I SysNr: 00 User: APIUSER_SNWF Client: 100 Language: E Codepage: 4103]
RfcLogonException: Key: RFC_LOGON_FAILURE, Code: RFC_LOGON_FAILURE, Message: Name or password is incorrect (repeat logon)
**** Log file opened at 2024-04-11 17:06:31.909687 UTC+08:00 (W. Australia Standard Time), Encoding UTF-8
NW RFC Library: Kernel variant, Release 750 Patch Level 12
Compilation date : Jun 30 2023 01:15:34
CPIC library : 753.2023.04.24 version 3
NI library : 40
Kernel Release : 753 Patch Level 1214
Current working directory : C:\dev\QRM\data-migration-validation
Program : python
Process ID : 15788
User : he127407
Hardware : PC with Windows NT 4x AMD64 Level 6 (Mod 61 Step 4)
Operating_system : Windows NT 10.0
Hostname : E00157725
IP address : 10.21.108.138
IPv6 address : fe80::1813:4dc:22f8:c8
Global trace level : 0
2024-04-11 17:06:31.905500 [10144] >> Error entry
Error in receive: 18, no SAP ErrInfo available, 311
2024-04-11 17:06:31.945298 [10144] >> Error entry
[Handle: 2412350397328 ConvID: 44785550 Target: vaciy7i SysID: Y7I SysNr: 00 User: APIUSER_SNWF Client: 100 Language: E Codepage: 4103]
RfcLogonException: Key: RFC_LOGON_FAILURE, Code: RFC_LOGON_FAILURE, Message: Name or password is incorrect (repeat logon)
**** Log file opened at 2024-04-11 17:07:05.127534 UTC+08:00 (W. Australia Standard Time), Encoding UTF-8
NW RFC Library: Kernel variant, Release 750 Patch Level 12
Compilation date : Jun 30 2023 01:15:34
CPIC library : 753.2023.04.24 version 3
NI library : 40
Kernel Release : 753 Patch Level 1214
Current working directory : C:\dev\QRM\data-migration-validation
Program : python
Process ID : 16084
User : he127407
Hardware : PC with Windows NT 4x AMD64 Level 6 (Mod 61 Step 4)
Operating_system : Windows NT 10.0
Hostname : E00157725
IP address : 10.21.108.138
IPv6 address : fe80::1813:4dc:22f8:c8
Global trace level : 0
2024-04-11 17:07:04.976879 [15164] >> Error entry
Error in receive: 18, no SAP ErrInfo available, 311
2024-04-11 17:07:05.286103 [15164] >> Error entry
[Handle: 1444319462208 ConvID: 44825596 Target: vaciy7i SysID: Y7I SysNr: 00 User: APIUSER_SNWF Client: 100 Language: E Codepage: 4103]
RfcLogonException: Key: RFC_LOGON_FAILURE, Code: RFC_LOGON_FAILURE, Message: Name or password is incorrect (repeat logon)
**** Log file opened at 2024-04-11 17:07:05.286558 UTC+08:00 (W. Australia Standard Time), Encoding UTF-8
NW RFC Library: Kernel variant, Release 750 Patch Level 12
Compilation date : Jun 30 2023 01:15:34
CPIC library : 753.2023.04.24 version 3
NI library : 40
Kernel Release : 753 Patch Level 1214
Current working directory : C:\dev\QRM\data-migration-validation
Program : python
Process ID : 12804
User : he127407
Hardware : PC with Windows NT 4x AMD64 Level 6 (Mod 61 Step 4)
Operating_system : Windows NT 10.0
Hostname : E00157725
IP address : 10.21.108.138
IPv6 address : fe80::1813:4dc:22f8:c8
Global trace level : 0
2024-04-11 17:07:05.198758 [08096] >> Error entry
Error in receive: 18, no SAP ErrInfo available, 311
2024-04-11 17:07:05.317029 [08096] >> Error entry
[Handle: 2628347062672 ConvID: 44826796 Target: vaciy7i SysID: Y7I SysNr: 00 User: APIUSER_SNWF Client: 100 Language: E Codepage: 4103]
RfcLogonException: Key: RFC_LOGON_FAILURE, Code: RFC_LOGON_FAILURE, Message: Name or password is incorrect (repeat logon)
**** Log file opened at 2024-04-11 17:07:06.276991 UTC+08:00 (W. Australia Standard Time), Encoding UTF-8
NW RFC Library: Kernel variant, Release 750 Patch Level 12
Compilation date : Jun 30 2023 01:15:34
CPIC library : 753.2023.04.24 version 3
NI library : 40
Kernel Release : 753 Patch Level 1214
Current working directory : C:\dev\QRM\data-migration-validation
Program : python
Process ID : 15412
User : he127407
Hardware : PC with Windows NT 4x AMD64 Level 6 (Mod 61 Step 4)
Operating_system : Windows NT 10.0
Hostname : E00157725
IP address : 10.21.108.138
IPv6 address : fe80::1813:4dc:22f8:c8
Global trace level : 0
2024-04-11 17:07:06.130228 [10780] >> Error entry
Error in receive: 18, no SAP ErrInfo available, 311
2024-04-11 17:07:06.330945 [10780] >> Error entry
[Handle: 2026193506960 ConvID: 44828734 Target: vaciy7i SysID: Y7I SysNr: 00 User: APIUSER_SNWF Client: 100 Language: E Codepage: 4103]
RfcLogonException: Key: RFC_LOGON_FAILURE, Code: RFC_LOGON_FAILURE, Message: Name or password is incorrect (repeat logon)
**** Log file opened at 2024-04-11 17:07:06.348677 UTC+08:00 (W. Australia Standard Time), Encoding UTF-8
NW RFC Library: Kernel variant, Release 750 Patch Level 12
Compilation date : Jun 30 2023 01:15:34
CPIC library : 753.2023.04.24 version 3
NI library : 40
Kernel Release : 753 Patch Level 1214
Current working directory : C:\dev\QRM\data-migration-validation
Program : python
Process ID : 02236
User : he127407
Hardware : PC with Windows NT 4x AMD64 Level 6 (Mod 61 Step 4)
Operating_system : Windows NT 10.0
Hostname : E00157725
IP address : 10.21.108.138
IPv6 address : fe80::1813:4dc:22f8:c8
Global trace level : 0
2024-04-11 17:07:06.240226 [13288] >> Error entry
Error in receive: 18, no SAP ErrInfo available, 311
2024-04-11 17:07:06.378456 [13288] >> Error entry
[Handle: 2251115687376 ConvID: 44829846 Target: vaciy7i SysID: Y7I SysNr: 00 User: APIUSER_SNWF Client: 100 Language: E Codepage: 4103]
RfcLogonException: Key: RFC_LOGON_FAILURE, Code: RFC_LOGON_FAILURE, Message: Name or password is incorrect (repeat logon)
2024-04-11 17:07:09.502457 [08096] >> Error entry
Error in receive: 18, no SAP ErrInfo available, 311
2024-04-11 17:07:09.502817 [08096] >> Error entry
[Handle: 2628347095504 ConvID: 44834217 Target: vaciy7i SysID: Y7I SysNr: 00 User: APIUSER_SNWF Client: 100 Language: E Codepage: 4103]
RfcLogonException: Key: RFC_LOGON_FAILURE, Code: RFC_LOGON_FAILURE, Message: Name or password is incorrect (repeat logon)
2024-04-11 17:07:10.064100 [08096] >> Error entry
Error in receive: 18, no SAP ErrInfo available, 311
2024-04-11 17:07:10.064381 [08096] >> Error entry
[Handle: 2628347095504 ConvID: 44835765 Target: vaciy7i SysID: Y7I SysNr: 00 User: APIUSER_SNWF Client: 100 Language: E Codepage: 4103]
RfcLogonException: Key: RFC_LOGON_FAILURE, Code: RFC_LOGON_FAILURE, Message: Name or password is incorrect (repeat logon)
**** Log file opened at 2024-04-11 17:10:25.122656 UTC+08:00 (W. Australia Standard Time), Encoding UTF-8
NW RFC Library: Kernel variant, Release 750 Patch Level 12
Compilation date : Jun 30 2023 01:15:34
CPIC library : 753.2023.04.24 version 3
NI library : 40
Kernel Release : 753 Patch Level 1214
Current working directory : C:\dev\QRM\data-migration-validation
Program : python
Process ID : 10952
User : he127407
Hardware : PC with Windows NT 4x AMD64 Level 6 (Mod 61 Step 4)
Operating_system : Windows NT 10.0
Hostname : E00157725
IP address : 10.21.108.138
IPv6 address : fe80::1813:4dc:22f8:c8
Global trace level : 0
2024-04-11 17:10:25.120492 [10156] >> Error entry
Error in receive: 18, no SAP ErrInfo available, 311
2024-04-11 17:10:25.153279 [10156] >> Error entry
[Handle: 2375422496528 ConvID: 45033805 Target: vaciy7i SysID: Y7I SysNr: 00 User: APIUSER_SNWF Client: 100 Language: E Codepage: 4103]
RfcLogonException: Key: RFC_LOGON_FAILURE, Code: RFC_LOGON_FAILURE, Message: Name or password is incorrect (repeat logon)
**** Log file opened at 2024-04-11 17:10:53.257674 UTC+08:00 (W. Australia Standard Time), Encoding UTF-8
NW RFC Library: Kernel variant, Release 750 Patch Level 12
Compilation date : Jun 30 2023 01:15:34
CPIC library : 753.2023.04.24 version 3
NI library : 40
Kernel Release : 753 Patch Level 1214
Current working directory : C:\dev\QRM\data-migration-validation
Program : python
Process ID : 14672
User : he127407
Hardware : PC with Windows NT 4x AMD64 Level 6 (Mod 61 Step 4)
Operating_system : Windows NT 10.0
Hostname : E00157725
IP address : 10.21.108.138
IPv6 address : fe80::1813:4dc:22f8:c8
Global trace level : 0
2024-04-11 17:10:53.255518 [09052] >> Error entry
Error in receive: 18, no SAP ErrInfo available, 311
2024-04-11 17:10:53.287994 [09052] >> Error entry
[Handle: 2557300040176 ConvID: 45062901 Target: vaciy7i SysID: Y7I SysNr: 00 User: APIUSER_SNWF Client: 100 Language: E Codepage: 4103]
RfcLogonException: Key: RFC_LOGON_FAILURE, Code: RFC_LOGON_FAILURE, Message: Name or password is incorrect (repeat logon)
**** Log file opened at 2024-04-11 17:10:53.292468 UTC+08:00 (W. Australia Standard Time), Encoding UTF-8
NW RFC Library: Kernel variant, Release 750 Patch Level 12
Compilation date : Jun 30 2023 01:15:34
CPIC library : 753.2023.04.24 version 3
NI library : 40
Kernel Release : 753 Patch Level 1214
Current working directory : C:\dev\QRM\data-migration-validation
Program : python
Process ID : 11128
User : he127407
Hardware : PC with Windows NT 4x AMD64 Level 6 (Mod 61 Step 4)
Operating_system : Windows NT 10.0
Hostname : E00157725
IP address : 10.21.108.138
IPv6 address : fe80::1813:4dc:22f8:c8
Global trace level : 0
2024-04-11 17:10:53.287480 [04628] >> Error entry
Error in receive: 18, no SAP ErrInfo available, 311
2024-04-11 17:10:53.351848 [04628] >> Error entry
[Handle: 2608760127632 ConvID: 45063930 Target: vaciy7i SysID: Y7I SysNr: 00 User: APIUSER_SNWF Client: 100 Language: E Codepage: 4103]
RfcLogonException: Key: RFC_LOGON_FAILURE, Code: RFC_LOGON_FAILURE, Message: Name or password is incorrect (repeat logon)
**** Log file opened at 2024-04-11 17:10:56.099526 UTC+08:00 (W. Australia Standard Time), Encoding UTF-8
NW RFC Library: Kernel variant, Release 750 Patch Level 12
Compilation date : Jun 30 2023 01:15:34
CPIC library : 753.2023.04.24 version 3
NI library : 40
Kernel Release : 753 Patch Level 1214
Current working directory : C:\dev\QRM\data-migration-validation
Program : python
Process ID : 09540
User : he127407
Hardware : PC with Windows NT 4x AMD64 Level 6 (Mod 61 Step 4)
Operating_system : Windows NT 10.0
Hostname : E00157725
IP address : 10.21.108.138
IPv6 address : fe80::1813:4dc:22f8:c8
Global trace level : 0
2024-04-11 17:10:56.029901 [11920] >> Error entry
Error in receive: 18, no SAP ErrInfo available, 311
2024-04-11 17:10:56.206080 [11920] >> Error entry
[Handle: 2125410449104 ConvID: 45067669 Target: vaciy7i SysID: Y7I SysNr: 00 User: APIUSER_SNWF Client: 100 Language: E Codepage: 4103]
RfcLogonException: Key: RFC_LOGON_FAILURE, Code: RFC_LOGON_FAILURE, Message: Name or password is incorrect (repeat logon)
**** Log file opened at 2024-04-11 17:10:57.623699 UTC+08:00 (W. Australia Standard Time), Encoding UTF-8
NW RFC Library: Kernel variant, Release 750 Patch Level 12
Compilation date : Jun 30 2023 01:15:34
CPIC library : 753.2023.04.24 version 3
NI library : 40
Kernel Release : 753 Patch Level 1214
Current working directory : C:\dev\QRM\data-migration-validation
Program : python
Process ID : 15136
User : he127407
Hardware : PC with Windows NT 4x AMD64 Level 6 (Mod 61 Step 4)
Operating_system : Windows NT 10.0
Hostname : E00157725
IP address : 10.21.108.138
IPv6 address : fe80::1813:4dc:22f8:c8
Global trace level : 0
2024-04-11 17:10:57.527061 [13076] >> Error entry
Error in receive: 18, no SAP ErrInfo available, 311
2024-04-11 17:10:57.746529 [13076] >> Error entry
[Handle: 1953243410448 ConvID: 45070060 Target: vaciy7i SysID: Y7I SysNr: 00 User: APIUSER_SNWF Client: 100 Language: E Codepage: 4103]
RfcLogonException: Key: RFC_LOGON_FAILURE, Code: RFC_LOGON_FAILURE, Message: Name or password is incorrect (repeat logon)
2024-04-11 17:11:00.033014 [04628] >> Error entry
Error in receive: 18, no SAP ErrInfo available, 311
2024-04-11 17:11:00.033281 [04628] >> Error entry
[Handle: 2608760450544 ConvID: 45073736 Target: vaciy7i SysID: Y7I SysNr: 00 User: APIUSER_SNWF Client: 100 Language: E Codepage: 4103]
RfcLogonException: Key: RFC_LOGON_FAILURE, Code: RFC_LOGON_FAILURE, Message: Name or password is incorrect (repeat logon)
2024-04-11 17:11:00.660641 [04628] >> Error entry
Error in receive: 18, no SAP ErrInfo available, 311
2024-04-11 17:11:00.660884 [04628] >> Error entry
[Handle: 2608760450544 ConvID: 45075365 Target: vaciy7i SysID: Y7I SysNr: 00 User: APIUSER_SNWF Client: 100 Language: E Codepage: 4103]
RfcLogonException: Key: RFC_LOGON_FAILURE, Code: RFC_LOGON_FAILURE, Message: Name or password is incorrect (repeat logon)
**** Log file opened at 2024-04-11 17:28:20.678438 UTC+08:00 (W. Australia Standard Time), Encoding UTF-8
NW RFC Library: Kernel variant, Release 750 Patch Level 12
Compilation date : Jun 30 2023 01:15:34
CPIC library : 753.2023.04.24 version 3
NI library : 40
Kernel Release : 753 Patch Level 1214
Current working directory : C:\dev\QRM\data-migration-validation
Program : python
Process ID : 14580
User : he127407
Hardware : PC with Windows NT 4x AMD64 Level 6 (Mod 61 Step 4)
Operating_system : Windows NT 10.0
Hostname : E00157725
IP address : 10.21.108.138
IPv6 address : fe80::1813:4dc:22f8:c8
Global trace level : 0
2024-04-11 17:28:20.674485 [14920] >> Error entry
Error in receive: 18, no SAP ErrInfo available, 311
2024-04-11 17:28:20.718561 [14920] >> Error entry
[Handle: 2421417217520 ConvID: 46149326 Target: vaciy7i SysID: Y7I SysNr: 00 User: APIUSER_SNWF Client: 100 Language: E Codepage: 4103]
RfcLogonException: Key: RFC_LOGON_FAILURE, Code: RFC_LOGON_FAILURE, Message: Name or password is incorrect (repeat logon)
**** Log file opened at 2024-04-11 17:28:50.511243 UTC+08:00 (W. Australia Standard Time), Encoding UTF-8
NW RFC Library: Kernel variant, Release 750 Patch Level 12
Compilation date : Jun 30 2023 01:15:34
CPIC library : 753.2023.04.24 version 3
NI library : 40
Kernel Release : 753 Patch Level 1214
Current working directory : C:\dev\QRM\data-migration-validation
Program : python
Process ID : 10196
User : he127407
Hardware : PC with Windows NT 4x AMD64 Level 6 (Mod 61 Step 4)
Operating_system : Windows NT 10.0
Hostname : E00157725
IP address : 10.21.108.138
IPv6 address : fe80::1813:4dc:22f8:c8
Global trace level : 0
2024-04-11 17:28:50.497676 [06856] >> Error entry
Error in receive: 18, no SAP ErrInfo available, 311
**** Log file opened at 2024-04-11 17:28:50.538566 UTC+08:00 (W. Australia Standard Time), Encoding UTF-8
NW RFC Library: Kernel variant, Release 750 Patch Level 12
Compilation date : Jun 30 2023 01:15:34
CPIC library : 753.2023.04.24 version 3
NI library : 40
Kernel Release : 753 Patch Level 1214
Current working directory : C:\dev\QRM\data-migration-validation
Program : python
Process ID : 05392
User : he127407
Hardware : PC with Windows NT 4x AMD64 Level 6 (Mod 61 Step 4)
Operating_system : Windows NT 10.0
Hostname : E00157725
IP address : 10.21.108.138
IPv6 address : fe80::1813:4dc:22f8:c8
Global trace level : 0
2024-04-11 17:28:50.496991 [15328] >> Error entry
Error in receive: 18, no SAP ErrInfo available, 311
2024-04-11 17:28:50.592255 [15328] >> Error entry
[Handle: 2976489318064 ConvID: 46180163 Target: vaciy7i SysID: Y7I SysNr: 00 User: APIUSER_SNWF Client: 100 Language: E Codepage: 4103]
RfcLogonException: Key: RFC_LOGON_FAILURE, Code: RFC_LOGON_FAILURE, Message: Name or password is incorrect (repeat logon)
ase : 753 Patch Level 1214
Current working directory : C:\dev\QRM\data-migration-validation
Program : python
Process ID : 10580
User : he127407
Hardware : PC with Windows NT 4x AMD64 Level 6 (Mod 61 Step 4)
Operating_system : Windows NT 10.0
Hostname : E00157725
IP address : 10.21.108.138
IPv6 address : fe80::1813:4dc:22f8:c8
Global trace level : 0
2024-04-11 17:28:50.574893 [14288] >> Error entry
Error in receive: 18, no SAP ErrInfo available, 311
2024-04-11 17:28:50.597594 [06856] >> Error entry
[Handle: 2467721062592 ConvID: 46181169 Target: vaciy7i SysID: Y7I SysNr: 00 User: APIUSER_SNWF Client: 100 Language: E Codepage: 4103]
RfcLogonException: Key: RFC_LOGON_FAILURE, Code: RFC_LOGON_FAILURE, Message: Name or password is incorrect (repeat logon)
2024-04-11 17:28:50.629424 [14288] >> Error entry
[Handle: 2318454616240 ConvID: 46183223 Target: vaciy7i SysID: Y7I SysNr: 00 User: APIUSER_SNWF Client: 100 Language: E Codepage: 4103]
RfcLogonException: Key: RFC_LOGON_FAILURE, Code: RFC_LOGON_FAILURE, Message: Name or password is incorrect (repeat logon)
**** Log file opened at 2024-04-11 17:28:50.706736 UTC+08:00 (W. Australia Standard Time), Encoding UTF-8
NW RFC Library: Kernel variant, Release 750 Patch Level 12
Compilation date : Jun 30 2023 01:15:34
CPIC library : 753.2023.04.24 version 3
NI library : 40
Kernel Release : 753 Patch Level 1214
Current working directory : C:\dev\QRM\data-migration-validation
Program : python
Process ID : 02736
User : he127407
Hardware : PC with Windows NT 4x AMD64 Level 6 (Mod 61 Step 4)
Operating_system : Windows NT 10.0
Hostname : E00157725
IP address : 10.21.108.138
IPv6 address : fe80::1813:4dc:22f8:c8
Global trace level : 0
2024-04-11 17:28:50.589736 [06864] >> Error entry
Error in receive: 18, no SAP ErrInfo available, 311
2024-04-11 17:28:50.750749 [06864] >> Error entry
[Handle: 2855223004320 ConvID: 46182204 Target: vaciy7i SysID: Y7I SysNr: 00 User: APIUSER_SNWF Client: 100 Language: E Codepage: 4103]
RfcLogonException: Key: RFC_LOGON_FAILURE, Code: RFC_LOGON_FAILURE, Message: Name or password is incorrect (repeat logon)
**** Log file opened at 2024-06-27 10:44:20.740607 UTC+08:00 (W. Australia Standard Time), Encoding UTF-8
NW RFC Library: Kernel variant, Release 750 Patch Level 12
Compilation date : Jun 30 2023 01:15:34
CPIC library : 753.2023.04.24 version 3
NI library : 40
Kernel Release : 753 Patch Level 1214
Current working directory : C:\dev\QRM\data-migration-validation
Program : python
Process ID : 17064
User : he208191
Hardware : PC with Windows NT 4x AMD64 Level 6 (Mod 61 Step 4)
Operating_system : Windows NT 10.0
Hostname : E00157725
IP address : 10.21.108.138
IPv6 address : fe80::4ab9:eca7:df3:93a9
Global trace level : 0
2024-06-27 10:44:20.738744 [06356] >> Error entry
[Handle: 2416493410208 ConvID: Target: SysID: SysNr: User: Codepage: 4103]
RfcCommunicationException: Return Value: 20, Code: RFC_COMMUNICATION_FAILURE, Message:
LOCATION SAProuter 40.4 on 'pc66payrouter01'
ERROR internal error
TIME Thu Jun 27 02:44:20 2024
RELEASE 753
COMPONENT NI (network interface)
VERSION 40
RC -93
MODULE /bas/753_REL/src/base/ni/niuxi.c
LINE 1780
DETAIL NiPGetHostByName: 'vaciddr' not found
SYSTEM CALL getaddrinfo
ERRNO -3
ERRNO TEXT (-3) - illegal errno
COUNTER 3150
**** Log file opened at 2024-06-27 11:20:32.006342 UTC+08:00 (W. Australia Standard Time), Encoding UTF-8
NW RFC Library: Kernel variant, Release 750 Patch Level 12
Compilation date : Jun 30 2023 01:15:34
CPIC library : 753.2023.04.24 version 3
NI library : 40
Kernel Release : 753 Patch Level 1214
Current working directory : C:\dev\QRM\data-migration-validation
Program : python
Process ID : 18412
User : he208191
Hardware : PC with Windows NT 4x AMD64 Level 6 (Mod 61 Step 4)
Operating_system : Windows NT 10.0
Hostname : E00157725
IP address : 10.21.108.138
IPv6 address : fe80::4ab9:eca7:df3:93a9
Global trace level : 0
2024-06-27 11:20:32.004119 [16916] >> Error entry
[Handle: 2301307058576 ConvID: Target: SysID: SysNr: User: Codepage: 4103]
RfcCommunicationException: Return Value: 20, Code: RFC_COMMUNICATION_FAILURE, Message:
LOCATION SAProuter 40.4 on 'pc66payrouter01'
ERROR internal error
TIME Thu Jun 27 03:20:31 2024
RELEASE 753
COMPONENT NI (network interface)
VERSION 40
RC -93
MODULE /bas/753_REL/src/base/ni/niuxi.c
LINE 1780
DETAIL NiPGetHostByName: 'vaciddr' not found
SYSTEM CALL getaddrinfo
ERRNO -3
ERRNO TEXT (-3) - illegal errno
COUNTER 3157
**** Log file opened at 2024-06-27 11:20:59.584700 UTC+08:00 (W. Australia Standard Time), Encoding UTF-8
NW RFC Library: Kernel variant, Release 750 Patch Level 12
Compilation date : Jun 30 2023 01:15:34
CPIC library : 753.2023.04.24 version 3
NI library : 40
Kernel Release : 753 Patch Level 1214
Current working directory : C:\dev\QRM\data-migration-validation
Program : python
Process ID : 04216
User : he208191
Hardware : PC with Windows NT 4x AMD64 Level 6 (Mod 61 Step 4)
Operating_system : Windows NT 10.0
Hostname : E00157725
IP address : 10.21.108.138
IPv6 address : fe80::4ab9:eca7:df3:93a9
Global trace level : 0
2024-06-27 11:20:59.582221 [19296] >> Error entry
[Handle: 1928668150944 ConvID: Target: SysID: SysNr: User: Codepage: 4103]
RfcCommunicationException: Return Value: 20, Code: RFC_COMMUNICATION_FAILURE, Message:
LOCATION SAProuter 40.4 on 'pc66payrouter01'
ERROR hostname 'vaciddr' unknown
TIME Thu Jun 27 03:20:59 2024
RELEASE 753
COMPONENT NI (network interface)
VERSION 40
RC -93
MODULE /bas/753_REL/src/base/ni/nixxhl.cpp
LINE 198
DETAIL NiHLGetNodeAddr: hostname cached as unknown
COUNTER 3160
**** Log file opened at 2024-06-27 11:23:23.040746 UTC+08:00 (W. Australia Standard Time), Encoding UTF-8
NW RFC Library: Kernel variant, Release 750 Patch Level 12
Compilation date : Jun 30 2023 01:15:34
CPIC library : 753.2023.04.24 version 3
NI library : 40
Kernel Release : 753 Patch Level 1214
Current working directory : C:\dev\QRM\data-migration-validation
Program : python
Process ID : 02532
User : he208191
Hardware : PC with Windows NT 4x AMD64 Level 6 (Mod 61 Step 4)
Operating_system : Windows NT 10.0
Hostname : E00157725
IP address : 10.21.108.138
IPv6 address : fe80::4ab9:eca7:df3:93a9
Global trace level : 0
2024-06-27 11:23:23.038713 [16188] >> Error entry
[Handle: 1937411148176 ConvID: Target: SysID: SysNr: User: Codepage: 4103]
RfcCommunicationException: Return Value: 20, Code: RFC_COMMUNICATION_FAILURE, Message:
LOCATION SAProuter 40.4 on 'pc66payrouter01'
ERROR internal error
TIME Thu Jun 27 03:23:22 2024
RELEASE 753
COMPONENT NI (network interface)
VERSION 40
RC -93
MODULE /bas/753_REL/src/base/ni/niuxi.c
LINE 1780
DETAIL NiPGetHostByName: 'vaciddr' not found