forked from fiorix/wsdl2go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
debmas.txt
1794 lines (1794 loc) · 172 KB
/
debmas.txt
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
&{{http://www.w3.org/2001/XMLSchema element} BEGIN 1 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} EDI_DC40 tns:EDI_DC40.DEBMAS.DEBMAS07 1 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} E1KNA1M tns:DEBMAS07.E1KNA1M Master customer master basic data (KNA1) 1 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} idoc tns:DEBMAS07 1 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} IDOC tns:DEBMAS.DEBMAS07 Customer master data distribution 1 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SEGMENT 1 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KNURL Uniform Resource Locator 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} J_1KFREPRE Name of Representative 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} J_1KFTBUS Type of Business 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} J_1KFTIND Type of Industry 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} PSOIS Subledger acct preprocessing procedure 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} PSON1 Name 1 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} PSON2 Name 1 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} PSON3 Name 1 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} PSOVN First Name 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} PSOTL Title 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} PSOO1 Description 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} PSOO2 Description 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} PSOO3 Description 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} PSOO4 Description 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} PSOO5 Description 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} STCD5 Tax Number 5 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SEGMENT 1 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MSGFN Function 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TDOBJECT Texts: Application Object 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TDNAME Name 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TDID Text ID 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TDSPRAS Language Key 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TDTEXTTYPE SAPscript: Format of Text 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TDSPRASISO Language according to ISO 639 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} E1KNA1L tns:DEBMAS07.E1KNA1L 0 unbounded false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SEGMENT 1 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MSGFN Function 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TDFORMAT Tag column 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TDLINE Text Line 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SEGMENT 1 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MSGFN Function 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KUNNR Customer Number 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} ANRED Title 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} AUFSD Central order block for customer 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} BAHNE Express train station 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} BAHNS Train station 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} BBBNR International location number (part 1) 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} BBSNR International location number (Part 2) 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} BEGRU Authorization Group 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} BRSCH Industry key 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} BUBKZ Check digit for the international location number 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} DATLT Data communication line no. 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} FAKSD Central billing block for customer 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} FISKN Account number of the master record with the fiscal address 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KNRZA Account number of an alternative payer 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KONZS Group key 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KTOKD Customer Account Group 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KUKLA Customer classification 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} LAND1 Country Key 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} LIFNR Account Number of Vendor or Creditor 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} LIFSD Central delivery block for the customer 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} LOCCO City Coordinates 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} LOEVM Central Deletion Flag for Master Record 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} NAME1 Name 1 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} NAME2 Name 2 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} NAME3 Name 3 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} NAME4 Name 4 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} NIELS Nielsen ID 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} ORT01 City 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} ORT02 District 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} PFACH PO Box 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} PSTL2 P.O. Box Postal Code 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} PSTLZ Postal Code 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} REGIO Region (State, Province, County) 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} COUNC County Code 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} CITYC City Code 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} RPMKR Regional Market 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SORTL Sort field 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SPERR Central posting block 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SPRAS Language Key 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} STCD1 Tax Number 1 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} STCD2 Tax Number 2 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} STKZA Indicator: Business Partner Subject to Equalization Tax? 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} STKZU Liable for VAT 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} STRAS House number and street 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TELBX Telebox number 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TELF1 First telephone number 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TELF2 Second telephone number 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TELFX Fax Number 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TELTX Teletex number 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TELX1 Telex number 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} LZONE Transportation zone to or from which the goods are delivered 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} XZEMP Indicator: Alternative payee in document allowed ? 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} VBUND Company ID of Trading Partner 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} STCEG VAT Registration Number 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} GFORM Legal status 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} BRAN1 Industry Code 1 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} BRAN2 Industry code 2 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} BRAN3 Industry code 3 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} BRAN4 Industry code 4 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} BRAN5 Industry code 5 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} UMJAH Year For Which Sales are Given 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} UWAER Currency of sales figure 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} JMZAH Yearly number of employees 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} JMJAH Year for which the number of employees is given 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KATR1 e-Shop 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KATR2 Attribute 2 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KATR3 Attribute 3 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KATR4 Attribute 4 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KATR5 Attribute 5 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KATR6 Attribute 6 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KATR7 Attribute 7 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KATR8 Attribute 8 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KATR9 Attribute 9 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KATR10 Attribute 10 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} STKZN Natural Person 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} UMSA1 Field of length 16 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TXJCD Tax Jurisdiction 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} PERIV Fiscal Year Variant 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KTOCD Reference Account Group for One-Time Account (Customer) 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} PFORT PO Box city 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} DTAMS Indicator for Data Medium Exchange 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} DTAWS Instruction key for data medium exchange 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} HZUOR Hierarchy assignment (batch input) 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} CIVVE ID for mainly non-military use 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MILVE ID for mainly military use 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SPRAS_ISO Language according to ISO 639 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} FITYP Tax type 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} STCDT Tax Number Type 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} STCD3 Tax Number 3 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} STCD4 Tax Number 4 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} XICMS Customer is ICMS-exempt 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} XXIPI Customer is IPI-exempt 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} XSUBT Customer group of Substituiçao Tributária calculation- old!! 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} CFOPC Customer's CFOP category 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TXLW1 Tax law: ICMS 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TXLW2 Tax law: IPI 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} CCC01 Indicator for biochemical warfare for legal control 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} CCC02 Indicator for nuclear nonproliferation for legal control 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} CCC03 Indicator for national security for legal control 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} CCC04 Indicator for missile technology for legal control 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} CASSD Central sales block for customer 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KDKG1 Customer condition group 1 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KDKG2 Customer condition group 2 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KDKG3 Customer condition group 3 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KDKG4 Customer condition group 4 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KDKG5 Customer condition group 5 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} NODEL Central deletion block for master record 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} XSUB2 Customer group for Substituiçao Tributária calculation 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} WERKS Plant 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} E1KNA11 tns:DEBMAS07.E1KNA11 Customer Master: Additional General Fields (KNA1) 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} E1KNA1H tns:DEBMAS07.E1KNA1H 0 unbounded false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} E1KNVVM tns:DEBMAS07.E1KNVVM 0 unbounded false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} E1KNB1M tns:DEBMAS07.E1KNB1M 0 unbounded false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} E1KNBKM tns:DEBMAS07.E1KNBKM 0 unbounded false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} E1KNVAM tns:DEBMAS07.E1KNVAM 0 unbounded false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} E1WRF12 tns:DEBMAS07.E1WRF12 0 unbounded false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} E1WRF4M tns:DEBMAS07.E1WRF4M 0 unbounded false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} E1KNVKM tns:DEBMAS07.E1KNVKM 0 unbounded false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} E1KNEXM tns:DEBMAS07.E1KNEXM 0 unbounded false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} E1KNASM tns:DEBMAS07.E1KNASM 0 unbounded false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} E1KNKAM tns:DEBMAS07.E1KNKAM Master customer master credit management central data (KNKA) 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} E1KNATM tns:DEBMAS07.E1KNATM 0 unbounded false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} E1KNKKM tns:DEBMAS07.E1KNKKM 0 unbounded false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} E1VCKUN tns:DEBMAS07.E1VCKUN 0 unbounded false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} E1WRF1M tns:DEBMAS07.E1WRF1M 0 unbounded false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} E1WRF3M tns:DEBMAS07.E1WRF3M 0 unbounded false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} E1WRF5M tns:DEBMAS07.E1WRF5M 0 unbounded false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} E1WRF6M tns:DEBMAS07.E1WRF6M 0 unbounded false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} E1T023W tns:DEBMAS07.E1T023W 0 unbounded false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} E1T023X tns:DEBMAS07.E1T023X 0 unbounded false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SEGMENT 1 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MSGFN Function 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} LAND1 Country Key 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} STCEG VAT Registration Number 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SEGMENT 1 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MSGFN Function 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TAXGR Category indicator for tax codes 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SBJDF Character field, 8 characters long 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SBJDT Character field, 8 characters long 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} EXNR Number of exemption certificate 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} EXRT R/2 table 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} EXDF Character field, 8 characters long 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} EXDT Character field, 8 characters long 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SEGMENT 1 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MSGFN Function 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TDOBJECT Texts: Application Object 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TDNAME Name 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TDID Text ID 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TDSPRAS Language Key 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TDTEXTTYPE SAPscript: Format of Text 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TDSPRASISO Language according to ISO 639 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} E1KNB1L tns:DEBMAS07.E1KNB1L 0 unbounded false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SEGMENT 1 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MSGFN Function 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TDFORMAT Tag column 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TDLINE Text Line 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SEGMENT 1 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MSGFN Function 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} BUKRS Company Code 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SPERR Posting block for company code 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} LOEVM Deletion Flag for Master Record (Company Code Level) 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} ZUAWA Key for sorting according to assignment numbers 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} BUSAB Accounting clerk 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} AKONT Reconciliation Account in General Ledger 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} BEGRU Authorization Group 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KNRZE Head office account number (in branch accounts) 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KNRZB Account number of an alternative payer 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} ZAMIM Indicator: Payment notice to customer (with cleared items)? 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} ZAMIV Indicator: payment notice to sales department? 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} ZAMIR Indicator: payment notice to legal department? 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} ZAMIB Indicator: Payment notice to the accounting department ? 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} ZAMIO Indicator: payment notice to customer (w/o cleared items)? 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} ZWELS List of the Payment Methods to be Considered 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} XVERR Indicator: Clearing between customer and vendor ? 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} ZAHLS Block Key for Payment 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} ZTERM Terms of Payment Key 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} WAKON Terms of payment key for bill of exchange charges 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} VZSKZ Interest calculation indicator 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} ZINDT Key date of the last interest calculation 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} ZINRT Interest calculation frequency in months 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} EIKTO Our account number at customer 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} ZSABE User at customer 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KVERM Memo 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} FDGRV Planning group 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} VRBKZ Export credit insurance institution number 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} VLIBB Amount Insured 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} VRSZL Insurance lead months 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} VRSPR Deductible percentage rate 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} VRSNR Insurance number 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} VERDT Insurance validity date 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} PERKZ Collective invoice variant 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} XDEZV Indicator: Local processing? 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} XAUSZ Indicator for periodic account statements 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} WEBTR Bill of exchange limit (in local currency) 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} REMIT Next payee 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} DATLZ Date of the last interest calculation run 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} XZVER Indicator: Record Payment History ? 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TOGRU Tolerance group for the business partner/G/L account 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KULTG Probable time until check is paid 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} HBKID Short Key for a House Bank 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} XPORE Indicator: Pay all items separately ? 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} BLNKZ Subsidy Indicator for Determining the Reduction Rates 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} ALTKN Previous Master Record Number 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} ZGRUP Key for Payment Grouping 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} URLID Short Key for Known/Negotiated Leave 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MGRUP Key for dunning notice grouping 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} LOCKB Key of the Lockbox to Which the Customer Is To Pay 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} UZAWE Payment Method Supplement 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} EKVBD Account Number of Buying Group 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SREGL Selection Rule for Payment Advices 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} XEDIP Indicator: Send Payment Advices by EDI 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} FRGRP Release Approval Group 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} VRSDG Reason Code Conversion Version 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TLFXS Accounting clerk's fax number at the customer/vendor 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} PERNR Personnel Number 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} INTAD Internet address of partner company clerk 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} GUZTE Payment Terms Key for Credit Memos 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} GRICD Activity Code for Gross Income Tax 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} GRIDT Distribution Type for Employment Tax 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} WBRSL Value Adjustment Key 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} NODEL Deletion bock for master record (company code level) 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TLFNS Accounting clerk's telephone number at business partner 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} CESSION_KZ Accounts Receivable Pledging Indicator 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} GMVKZD Customer is in execution 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} AVSND Indicator: Send Payment Advice by XML 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SMTP_ADDR E-mail Address 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} E1KNBWM tns:DEBMAS07.E1KNBWM 0 unbounded false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} E1KNB5M tns:DEBMAS07.E1KNB5M 0 unbounded false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} E1KNB1H tns:DEBMAS07.E1KNB1H 0 unbounded false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SEGMENT 1 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MSGFN Function 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MABER Dunning Area 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MAHNA Dunning Procedure 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MANSP Dunning Block 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MADAT Date of Last Dunning Notice 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MAHNS Dunning Level 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KNRMA Account number of the dunning recipient 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} GMVDT Date of the legal dunning proceedings 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} BUSAB Dunning clerk 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SEGMENT 1 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MSGFN Function 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} BANKS Bank country key 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} BANKL Bank number 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} BANKN Bank account number 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} BKONT Bank Control Key 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} BVTYP Partner Bank Type 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} XEZER Indicator: Is there collection authorization ? 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} BKREF Reference specifications for bank details 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} BANKA Name of bank 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} STRAS House number and street 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} ORT01 City 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SWIFT SWIFT Code for International Payments 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} BGRUP Bank group (bank network) 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} XPGRO Post Office Bank Current Account 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} BNKLZ Bank number 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} PSKTO Account Number of Bank Account At Post Office 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} BRNCH Bank Branch 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} PROVZ Region (State, Province, County) 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KOINH Account Holder Name 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KOINH_N Account Holder Name 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KOVON Date (batch input) 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KOBIS Date (batch input) 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} IBAN_BANKS Bank country key 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} IBAN_BANKL Bank Keys 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} IBAN_BIC SWIFT Code for International Payments 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} IBAN IBAN (International Bank Account Number) 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SEGMENT 1 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MSGFN Function 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} WITHT Indicator for withholding tax type 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} WT_WITHCD Withholding tax code 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} WT_AGENT Indicator: Withholding tax agent? 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} WT_AGTDF Date (batch input) 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} WT_AGTDT Date (batch input) 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} WT_WTSTCD Withholding tax identification number 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SEGMENT 1 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MSGFN Function 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} LNDEX Country key for export control in customer master 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TDOCO ID: TDO boycott list for export control 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TDODA Date of last check of TDO list for export control 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SDNCO ID: SDN boycott list for export control 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SDNDA Date of last check of SDN list for export control 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} DHRCO ID: Customer boycott list for export control 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} DHRDA Date of last check in inter. boycott list for exp. control 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SEGMENT 1 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MSGFN Function 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KLIMG Field of length 16 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KLIME Field of length 16 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} WAERS Currency Key 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} DLAUS Date of the last general information 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SEGMENT 1 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MSGFN Function 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TDOBJECT Texts: Application Object 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TDNAME Name 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TDID Text ID 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TDSPRAS Language Key 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TDTEXTTYPE SAPscript: Format of Text 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TDSPRASISO Language according to ISO 639 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} E1KNKKL tns:DEBMAS07.E1KNKKL 0 unbounded false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SEGMENT 1 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MSGFN Function 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TDFORMAT Tag column 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TDLINE Text Line 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SEGMENT 1 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MSGFN Function 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KKBER Credit Control Area 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KLIMK Field of length 16 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KNKLI Customer's account number with credit limit reference 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} CTLPC Credit management: Risk category 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} DTREV Last internal review 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} CRBLB Indicator: Blocked by credit management ? 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SBGRP Credit representative group for credit management 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} NXTRV Next internal review 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KRAUS Credit information number 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} PAYDB do not use - replaced by DBPAY_CM 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} DBRAT do not use - replaced by DBRTG_CM 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} REVDB Last review (external) 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} GRUPP Customer Credit Group 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SBDAT Reference Date 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KDGRP Customer Group 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} DBPAY Payment Index 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} DBRTG Rating 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} DBEKR Recommended credit limit 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} DBWAE ISO currency code 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} DBMON Date Monitoring 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} E1KNKKH tns:DEBMAS07.E1KNKKH 0 unbounded false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SEGMENT 1 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MSGFN Function 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} ABLAD Unloading Point 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KNFAK Customer's factory calendar 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} WANID Goods receiving hours ID (default value) 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MOAB1 Goods receipt times: Monday morning from ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MOBI1 Goods receiving hours: Monday morning until ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MOAB2 Goods receiving hours: Monday afternoon from ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MOBI2 Goods receiving hours: Monday afternoon until ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} DIAB1 Goods receiving hours: Tuesday morning from... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} DIBI1 Goods receipt times: Tuesday morning until ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} DIAB2 Goods receiving hours: Tuesday afternoon from ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} DIBI2 Goods receiving hours: Tuesday afternoon until ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MIAB1 Goods receiving hours: Wednesday morning from ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MIBI1 Goods receiving hours: Wednesday morning until ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MIAB2 Goods receiving hours: Wednesday afternoon from ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MIBI2 Goods receiving hours: Wednesday afternoon until ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} DOAB1 Goods receiving hours: Thursday morning from ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} DOBI1 Goods receiving hours: Thursday morning until ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} DOAB2 Goods receiving hours: Thursday afternoon from ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} DOBI2 Goods receiving hours: Thursday afternoon until... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} FRAB1 Goods receiving hours: Friday morning from ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} FRBI1 Goods receiving hours: Friday morning until ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} FRAB2 Goods receiving hours: Friday afternoon from ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} FRBI2 Goods receiving hours: Friday afternoon until ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SAAB1 Goods receiving hours: Saturday morning from ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SABI1 Goods receiving hours: Saturday morning from ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SAAB2 Goods receiving hours: Saturday afternoon from ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SABI2 Goods receiving hours: Saturday afternoon until ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SOAB1 Goods receiving hours: Sunday morning from ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SOBI1 Goods receiving hours: Sunday morning until ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SOAB2 Goods receiving hours: Sunday afternoon from ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SOBI2 Goods receiving hours: Sunday afternoon until ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} DEFAB Default unloading point 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SEGMENT 1 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MSGFN Function 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} DOCTP Output Type 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SPRAS Message language 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} DOANZ 3-Byte field 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} DOVER Dispatch time 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} NACHA Message transmission medium 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SPRAS_ISO Language according to ISO 639 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SEGMENT 1 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MSGFN Function 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} ALAND Departure country (country from which the goods are sent) 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TATYP Tax category (sales tax, federal sales tax,...) 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TAXKD Tax classification for customer 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SEGMENT 1 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MSGFN Function 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TDOBJECT Texts: Application Object 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TDNAME Name 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TDID Text ID 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TDSPRAS Language Key 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TDTEXTTYPE SAPscript: Format of Text 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TDSPRASISO Language according to ISO 639 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} E1KNVKL tns:DEBMAS07.E1KNVKL 0 unbounded false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SEGMENT 1 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MSGFN Function 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TDFORMAT Tag column 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TDLINE Text Line 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SEGMENT 1 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MSGFN Function 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} PARNR Number of contact person 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} NAMEV First name 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} NAME1 Name 1 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} ABTPA Contact person's department at customer 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} ABTNR Contact person department 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} UEPAR Higher-level partner 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TELF1 First telephone number 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} ANRED Form of address for contact person (Mr, Mrs...etc) 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} PAFKT Contact person function 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} PARVO Partner's Authority 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} PAVIP VIP Partner 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} PARGE Partner's gender 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} PARLA Partner language 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} GBDAT Date of Birth 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} VRTNR Representative number 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} BRYTH Call frequency 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} AKVER Buying habits 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} NMAIL Advertising material indicator 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} PARAU Notes about contact person 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} PARH1 Field of Interest 1 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} PARH2 Field of Interest 2 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} PARH3 Field of Interest 3 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} PARH4 Field of Interest 4 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} PARH5 Field of Interest 5 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MOAB1 Contact person's visiting hours: Monday morning from ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MOBI1 Contact person's visiting hours: Monday morning until ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MOAB2 Contact person's visiting hours: Monday afternoon from ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MOBI2 Contact person's visiting hours: Monday afternoon until ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} DIAB1 Contact person's visiting hours: Tuesday morning from... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} DIBI1 Contact person's visiting hours: Tuesday morning until ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} DIAB2 Contact person's visiting hours: Tuesday afternoon from.. 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} DIBI2 Contact person's visiting hours: Tuesday afternoon until ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MIAB1 Contact person's visiting hours: Wednesday morning from... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MIBI1 Contact person's visiting hours: Wednesday morning until ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MIAB2 Contact person's visiting hours: Wednesday afternoon from .. 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MIBI2 Contact person's visiting hours: Wednesday afternoon until.. 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} DOAB1 Contact person's visiting hours: Thursday morning from .... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} DOBI1 Contact person's visiting hours: Thursday morning until .... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} DOAB2 Contact person's visiting hours: Thursday afternoon from... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} DOBI2 Contact person's visiting hours: Thursday afternoon until .. 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} FRAB1 Contact person's visiting hours: Friday morning from ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} FRBI1 Contact person's visiting hours: Friday morning until ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} FRAB2 Contact person's visiting hours: Friday afternoon from ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} FRBI2 Contact person's visiting hours: Friday afternoon until ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SAAB1 Contact person's visiting hours: Saturday morning from ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SABI1 Contact person's visiting hours: Saturday morning until ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SAAB2 Contact person's visiting hours: Saturday afternoon from ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SABI2 Contact person's visiting hours: Saturday afternoon until .. 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SOAB1 Contact person's visiting hours: Sunday morning from ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SOBI1 Contact person's visiting hours: Sunday morning until ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SOAB2 Contact person's visiting hours: Sunday afternoon from ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SOBI2 Contact person's visiting hours: Sunday afternoon until ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} PAKN1 Field of Interest 6 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} PAKN2 Field of Interest 7 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} PAKN3 Field of Interest 8 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} PAKN4 Contact person: Attribute 9 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} PAKN5 Contact person: Attribute 10 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SORTL Sort field 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} FAMST Marital Status Key 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SPNAM Nickname 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TITEL_AP Title of contact person (description of function) 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} PARLA_ISO Language according to ISO 639 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} E1KNVKH tns:DEBMAS07.E1KNVKH 0 unbounded false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SEGMENT 1 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MSGFN Function 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} ALAND Departure country (country from which the goods are sent) 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TATYP Tax category (sales tax, federal sales tax,...) 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} LICNR License number 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} DATAB Valid-From Date 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} DATBI Valid To Date 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} BELIC Confirmation for licenses 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SEGMENT 1 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MSGFN Function 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} PARVW Partner Function 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KUNN2 Customer number of business partner 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} DEFPA Default Partner 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KNREF Customer description of partner (plant, storage location) 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} PARZA Partner counter 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SEGMENT 1 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MSGFN Function 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TDOBJECT Texts: Application Object 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TDNAME Name 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TDID Text ID 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TDSPRAS Language Key 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TDTEXTTYPE SAPscript: Format of Text 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TDSPRASISO Language according to ISO 639 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} E1KNVVL tns:DEBMAS07.E1KNVVL 0 unbounded false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SEGMENT 1 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MSGFN Function 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TDFORMAT Tag column 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TDLINE Text Line 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SEGMENT 1 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MSGFN Function 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} VKORG Sales Organization 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} VTWEG Distribution Channel 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SPART Division 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} BEGRU Authorization Group 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} LOEVM Deletion flag for customer (sales level) 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} VERSG Customer Statistics Group 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} AUFSD Customer order block (sales area) 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KALKS Pricing procedure assigned to this customer 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KDGRP Customer group 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} BZIRK Sales district 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KONDA Price group (customer) 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} PLTYP Price list type 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} AWAHR Order probability of the item 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} INCO1 Incoterms (Part 1) 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} INCO2 Incoterms (Part 2) 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} LIFSD Customer delivery block (sales area) 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} AUTLF Complete delivery defined for each sales order? 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} ANTLF Maximum Number of Partial Deliveries Allowed Per Item 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KZTLF Partial delivery at item level 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KZAZU Order Combination Indicator 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} CHSPL Batch split allowed 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} LPRIO Delivery Priority 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} EIKTO Shipper's (Our) Account Number at the Customer or Vendor 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} VSBED Shipping Conditions 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} FAKSD Billing block for customer (sales and distribution) 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MRNKZ Manual invoice maintenance 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} PERFK Invoice dates (calendar identification) 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} PERRL Invoice list schedule (calendar identification) 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} WAERS Currency 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KTGRD Account assignment group for this customer 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} ZTERM Terms of Payment Key 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} VWERK Delivering Plant 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} VKGRP Sales Group 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} VKBUR Sales Office 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} VSORT Item proposal 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KVGR1 Service Flatrate 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KVGR2 Customer Category 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KVGR3 Customer group 3 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KVGR4 Customer group 4 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KVGR5 Customer group 5 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} BOKRE Indicator: Customer Is Rebate-Relevant 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KURST Exchange Rate Type 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} PRFRE Relevant for price determination ID 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KLABC Customer classification (ABC analysis) 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KABSS Customer payment guarantee procedure 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KKBER Credit Control Area 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} CASSD Sales block for customer (sales area) 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} RDOFF Switch off rounding? 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} AGREL Indicator: Relevant for agency business 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MEGRU Unit of Measure Group 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} UEBTO Overdelivery tolerance limit (BTCI) 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} UNTTO Underdelivery tolerance (BTCI) 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} UEBTK Unlimited overdelivery allowed 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} PVKSM Customer procedure for product proposal 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} PODKZ Relevant for POD processing 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} PODTG Timeframe for Confirmation of POD (BI) 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} BLIND Indicator: Doc. index compilation active for purchase orders 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} CARRIER_NOTIF Carrier is to be notified 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} E1KNVPM tns:DEBMAS07.E1KNVPM 0 unbounded false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} E1KNVDM tns:DEBMAS07.E1KNVDM 0 unbounded false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} E1KNVIM tns:DEBMAS07.E1KNVIM 0 unbounded false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} E1KNVLM tns:DEBMAS07.E1KNVLM 0 unbounded false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} E1KNVVH tns:DEBMAS07.E1KNVVH 0 unbounded false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SEGMENT 1 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MSGFN Function 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} LOCNR Customer Number for Plant 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MATKL Material Group 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} WWGPA Material group material 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KEDET Indicates exceptions to type of Inventory Management 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} WWGPA_EXTERNAL Material Group Material 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} WWGPA_VERSION Version Number (Future Development) for Field WWGPA 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} WWGPA_GUID External GUID (Future Development) for Field WWGPA 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SEGMENT 1 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MSGFN Function 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} LOCNR Customer Number for Plant 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MATNR Material Number 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} WMATN Posting material number of value-only or individual material 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MATKL Material Group 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MATNR_EXTERNAL Material Number 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MATNR_VERSION Version Number for MATNR Field 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MATNR_GUID External GUID for MATNR Field 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} WMATN_EXTERNAL Length of Material No. (Future Development) for Field WMATN 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} WMATN_VERSION Version Number (Future Development) for Field WMATN 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} WMATN_GUID External GUID (Future Development) for Field WMATN 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SEGMENT 1 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MSGFN Function 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} CCINS Payment cards: Card type 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} CCNUM Payment cards: Card number 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} CCDEF Payment cards: Indicator for default payment card 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} CCNAME Payment cards: Name of cardholder 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} DATAB Payment cards: Valid from 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} DATBI Payment Cards: Valid To 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} CCTYP Payment cards: Card category 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} CCLOCK Payment cards: Reason for payment card block 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} CCGUID GUID of a Payment Card 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SEGMENT 1 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MSGFN Function 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} LOCNR Customer Number for Plant 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} EMPST Receiving point 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KUNN2 Customer number of business partner 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} ABLAD Unloading Point 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SEGMENT 1 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MSGFN Function 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} LOCNR Customer Number for Plant 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} EROED Opening date 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SCHLD Closing date 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SPDAB Block from 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SPDBI Block to 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} AUTOB Automatic purchase order 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KOPRO POS outbound profile 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} LAYVR Layout 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} FLVAR Area schema 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} STFAK Calendar 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} WANID Goods receiving hours ID (default value) 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MOAB1 Goods receipt times: Monday morning from ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MOBI1 Goods receiving hours: Monday morning until ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MOAB2 Goods receiving hours: Monday afternoon from ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MOBI2 Goods receiving hours: Monday afternoon until ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} DIAB1 Goods receiving hours: Tuesday morning from... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} DIBI1 Goods receipt times: Tuesday morning until ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} DIAB2 Goods receiving hours: Tuesday afternoon from ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} DIBI2 Goods receiving hours: Tuesday afternoon until ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MIAB1 Goods receiving hours: Wednesday morning from ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MIBI1 Goods receiving hours: Wednesday morning until ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MIAB2 Goods receiving hours: Wednesday morning until ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MIBI2 Goods receiving hours: Wednesday afternoon from ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} DOAB1 Goods receiving hours: Wednesday afternoon until ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} DOBI1 Goods receiving hours: Thursday morning from ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} DOAB2 Goods receiving hours: Thursday morning until ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} DOBI2 Goods receiving hours: Thursday afternoon from ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} FRAB1 Goods receiving hours: Thursday afternoon until... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} FRBI1 Goods receiving hours: Friday morning from ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} FRAB2 Goods receiving hours: Friday morning until ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} FRBI2 Goods receiving hours: Friday afternoon from ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SAAB1 Goods receiving hours: Friday afternoon until ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SABI1 Goods receiving hours: Saturday morning from ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SAAB2 Goods receiving hours: Saturday afternoon from ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SABI2 Goods receiving hours: Saturday afternoon until ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SOAB1 Goods receiving hours: Sunday morning from ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SOBI1 Goods receiving hours: Sunday morning until ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SOAB2 Goods receiving hours: Sunday afternoon from ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SOBI2 Goods receiving hours: Sunday afternoon until ... 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} VERFL Sales area (floor space) 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} VERFE Sales area (floor space) unit 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SPGR1 Blocking reason 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} INPRO POS inbound profile 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} EKOAR POS outbound: condition type group 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} KZLIK Listing conditions should be created per assortment 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} BETRP Plant profile 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} ERDAT Date on Which Record Was Created 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} ERNAM Name of Person who Created the Object 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} NLMATFB ID: Carry out subsequent listing 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} BWWRK Plant for retail price determination 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} BWVKO Sales organization for retail price determination 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} BWVTW Distribution channel for retail price determination 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} BBPRO Assortment list profile 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} VKBUR_WRK Sales office 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} VLFKZ Plant category 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} LSTFL Listing procedure for store or other assortment categories 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} LIGRD Basic listing rule for assortments 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} VKORG Sales organization for intercompany billing 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} VTWEG Distribution channel for intercompany billing 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} DESROI Required ROI (for ALE) 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TIMINC Time Increment for Investment Buying Algorithms (for ALE) 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} POSWS Currency of POS systems 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SSOPT_PRO Space management profile 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} WBPRO Profile for value-based inventory management 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} ORGPRICE Retail: Original Price for Segment Definition E2WRF1M 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} PRCTR Profit Center 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} RMA_PROF Retail: RMA Profile for Segment Definition E2WRF1M 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} RMA_VKORG Cost allocation sales organization 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} RMA_VTWEG Cost allocation distribution channel 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SEGMENT 1 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MSGFN Function 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} LOCNR Customer Number for Plant 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MATKL Material Group 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} DATBI Valid to date 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} DATAB Valid-from date 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} LOCLB Supplying plant (source of supply) 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} PRIORITAET Supplying Plant Priority (BI) 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TRANSPORT_CHAIN Transportation Chain 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SEGMENT 1 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MSGFN Function 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} LOCNR Customer Number for Plant 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} ABTNR Department number 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} EMPST Receiving point 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} VERFL Sales area (floor space) 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} VERFE Sales area (floor space) unit 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} LAYVR Layout 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} FLVAR Area schema 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SEGMENT 1 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MSGFN Function 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} LOCNR Customer Number 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} CCINS Payment cards: Card type 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MERCH Payment cards: Merchant ID at the clearing house 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} BEZEI Description of merchant ID of credit card company 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SEGMENT 1 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MSGFN Function 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} LOCNR Customer Number for Plant 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MATKL Material Group 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SSTUF Assortment grade 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SORBR Assortment length 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} ABTNR Department number 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} PRIOT Assortment Priority 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} DISPR Material: MRP profile 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} PROPR Forecast profile 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} PRIMW Price including sales tax 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} UPROF Retail revalution profile 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} WDAUS Exclude material group from POS outbound processing 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} RQGRP Replenishment: requirement group 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} FBPRO Store procurement profile for store order, replenishment 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} PLTYP_P Price determination: Item-based price list type 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} PSTRA Sales Pricing: Pricing Strategy 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MGINT Internal Class Number of a Competitor Group (for ALE) 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SEGMENT 1 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TABNAM TABNAM 1 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MANDT MANDT 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} DOCNUM DOCNUM 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} DOCREL DOCREL 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} STATUS STATUS 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} DIRECT tns:DIRECT 1 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} OUTMOD OUTMOD 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} EXPRSS EXPRSS 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} TEST TEST 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} IDOCTYP IDOCTYP 1 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} CIMTYP CIMTYP 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MESTYP MESTYP 1 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MESCOD MESCOD 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} MESFCT MESFCT 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} STD STD 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} STDVRS STDVRS 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} STDMES STDMES 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SNDPOR SNDPOR 1 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SNDPRT SNDPRT 1 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SNDPFC SNDPFC 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SNDPRN SNDPRN 1 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SNDSAD SNDSAD 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SNDLAD SNDLAD 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} RCVPOR RCVPOR 1 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} RCVPRT RCVPRT 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} RCVPFC RCVPFC 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} RCVPRN RCVPRN 1 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} RCVSAD RCVSAD 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} RCVLAD RCVLAD 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} CREDAT CREDAT 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} CRETIM CRETIM 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} REFINT REFINT 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} REFGRP REFGRP 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} REFMES REFMES 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} ARCKEY ARCKEY 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} SERIAL SERIAL 0 false <nil>}
&{{http://www.w3.org/2001/XMLSchema element} Body tns:DEBMAS.DEBMAS071 1 false <nil>}
&{{http://schemas.xmlsoap.org/wsdl/ part} POST_DEBMASDEBMAS07Post_InputMessage q1:POST_DEBMASDEBMAS07Post_InputMessage 0 false <nil>}
&{{http://schemas.xmlsoap.org/wsdl/ part} POST_DEBMASDEBMAS07Post_OutputMessage q2:POST_DEBMASDEBMAS07Post_OutputMessage 0 false <nil>}
2018/10/09 16:54:26 generated bad code: 996:12: expected type, found '.' (and 1 more errors)
1 package debmasdebmas07_binding
2
3 import (
4 "reflect"
5
6 "github.com/fiorix/wsdl2go/soap"
7 )
8
9 // Namespace was auto-generated from WSDL.
10 var Namespace = "http://www.example.com/wsdl"
11
12
13 // NewDEBMASDEBMAS07_PortType creates an initializes a DEBMASDEBMAS07_PortType.
14 func NewDEBMASDEBMAS07_PortType(cli *soap.Client) DEBMASDEBMAS07_PortType {
15 return &dEBMAS.DEBMAS07_PortType{cli}
16 }
17
18 // DEBMASDEBMAS07_PortType was auto-generated from WSDL
19 // and defines interface for the remote service. Useful for testing.
20 type DEBMASDEBMAS07_PortType interface {
21 // DEBMAS.DEBMAS07
22 POST_DEBMASDEBMAS07Post(POST_DEBMASDEBMAS07Post_InputMessage *POST_DEBMASDEBMAS07Post_InputMessage) (*POST_DEBMASDEBMAS07Post_OutputMessage,error)
23
24 }
25 // DIRECT was auto-generated from WSDL.
26 type DIRECT int64
27
28
29 // Validate validates DIRECT.
30 func (v DIRECT) Validate() bool {
31 for _, vv := range []int64 {
32 1,
33 2,
34
35 }{
36 if reflect.DeepEqual(v, vv) {
37 return true
38 }
39 }
40 return false
41 }
42 // Customer master data distribution
43 type DEBMASDEBMAS07 struct {
44 BEGIN string `xml:"BEGIN" json:"BEGIN" yaml:"BEGIN" doc:""`
45 EDI_DC40 *EDI_DCDEBMASDEBMAS07 `xml:"EDI_DC40" json:"EDI_DC40" yaml:"EDI_DC40" doc:""`
46 E1KNA1M *DEBMASE1KNA1M `xml:"E1KNA1M" json:"E1KNA1M" yaml:"E1KNA1M" doc:"Master customer master basic data (KNA1)"`
47 }
48
49 // DEBMASDEBMAS071 was auto-generated from WSDL.
50 type DEBMASDEBMAS071 struct {
51 Idoc *DEBMAS07 `xml:"idoc" json:"idoc" yaml:"idoc" doc:""`
52 }
53
54 // DEBMAS07 was auto-generated from WSDL.
55 type DEBMAS07 struct {
56 IDOC *DEBMASDEBMAS07 `xml:"IDOC" json:"IDOC" yaml:"IDOC" doc:"Customer master data distribution"`
57 }
58
59 // Customer Master: Additional General Fields (KNA1)
60 type DEBMASE1KNA11 struct {
61 SEGMENT string `xml:"SEGMENT" json:"SEGMENT" yaml:"SEGMENT" doc:""`
62 KNURL *string `xml:"KNURL,omitempty" json:"KNURL,omitempty" yaml:"KNURL,omitempty" doc:"Uniform Resource Locator"`
63 J_1KFREPRE *string `xml:"J_1KFREPRE,omitempty" json:"J_1KFREPRE,omitempty" yaml:"J_1KFREPRE,omitempty" doc:"Name of Representative"`
64 J_1KFTBUS *string `xml:"J_1KFTBUS,omitempty" json:"J_1KFTBUS,omitempty" yaml:"J_1KFTBUS,omitempty" doc:"Type of Business"`
65 J_1KFTIND *string `xml:"J_1KFTIND,omitempty" json:"J_1KFTIND,omitempty" yaml:"J_1KFTIND,omitempty" doc:"Type of Industry"`
66 PSOIS *string `xml:"PSOIS,omitempty" json:"PSOIS,omitempty" yaml:"PSOIS,omitempty" doc:"Subledger acct preprocessing procedure"`
67 PSON1 *string `xml:"PSON1,omitempty" json:"PSON1,omitempty" yaml:"PSON1,omitempty" doc:"Name 1"`
68 PSON2 *string `xml:"PSON2,omitempty" json:"PSON2,omitempty" yaml:"PSON2,omitempty" doc:"Name 1"`
69 PSON3 *string `xml:"PSON3,omitempty" json:"PSON3,omitempty" yaml:"PSON3,omitempty" doc:"Name 1"`
70 PSOVN *string `xml:"PSOVN,omitempty" json:"PSOVN,omitempty" yaml:"PSOVN,omitempty" doc:"First Name"`
71 PSOTL *string `xml:"PSOTL,omitempty" json:"PSOTL,omitempty" yaml:"PSOTL,omitempty" doc:"Title"`
72 PSOO1 *string `xml:"PSOO1,omitempty" json:"PSOO1,omitempty" yaml:"PSOO1,omitempty" doc:"Description"`
73 PSOO2 *string `xml:"PSOO2,omitempty" json:"PSOO2,omitempty" yaml:"PSOO2,omitempty" doc:"Description"`
74 PSOO3 *string `xml:"PSOO3,omitempty" json:"PSOO3,omitempty" yaml:"PSOO3,omitempty" doc:"Description"`
75 PSOO4 *string `xml:"PSOO4,omitempty" json:"PSOO4,omitempty" yaml:"PSOO4,omitempty" doc:"Description"`
76 PSOO5 *string `xml:"PSOO5,omitempty" json:"PSOO5,omitempty" yaml:"PSOO5,omitempty" doc:"Description"`
77 STCD5 *string `xml:"STCD5,omitempty" json:"STCD5,omitempty" yaml:"STCD5,omitempty" doc:"Tax Number 5"`
78 }
79
80 // Master customer master basic data: Texts, header
81 type DEBMASE1KNA1H struct {
82 SEGMENT string `xml:"SEGMENT" json:"SEGMENT" yaml:"SEGMENT" doc:""`
83 MSGFN *string `xml:"MSGFN,omitempty" json:"MSGFN,omitempty" yaml:"MSGFN,omitempty" doc:"Function"`
84 TDOBJECT *string `xml:"TDOBJECT,omitempty" json:"TDOBJECT,omitempty" yaml:"TDOBJECT,omitempty" doc:"Texts: Application Object"`
85 TDNAME *string `xml:"TDNAME,omitempty" json:"TDNAME,omitempty" yaml:"TDNAME,omitempty" doc:"Name"`
86 TDID *string `xml:"TDID,omitempty" json:"TDID,omitempty" yaml:"TDID,omitempty" doc:"Text ID"`
87 TDSPRAS *string `xml:"TDSPRAS,omitempty" json:"TDSPRAS,omitempty" yaml:"TDSPRAS,omitempty" doc:"Language Key"`
88 TDTEXTTYPE *string `xml:"TDTEXTTYPE,omitempty" json:"TDTEXTTYPE,omitempty" yaml:"TDTEXTTYPE,omitempty" doc:"SAPscript: Format of Text"`
89 TDSPRASISO *string `xml:"TDSPRASISO,omitempty" json:"TDSPRASISO,omitempty" yaml:"TDSPRASISO,omitempty" doc:"Language according to ISO 639"`
90 E1KNA1L []*DEBMASE1KNA1L `xml:"E1KNA1L,omitempty" json:"E1KNA1L,omitempty" yaml:"E1KNA1L,omitempty" doc:""`
91 }
92
93 // Master customer master basic data: Text line
94 type DEBMASE1KNA1L struct {
95 SEGMENT string `xml:"SEGMENT" json:"SEGMENT" yaml:"SEGMENT" doc:""`
96 MSGFN *string `xml:"MSGFN,omitempty" json:"MSGFN,omitempty" yaml:"MSGFN,omitempty" doc:"Function"`
97 TDFORMAT *string `xml:"TDFORMAT,omitempty" json:"TDFORMAT,omitempty" yaml:"TDFORMAT,omitempty" doc:"Tag column"`
98 TDLINE *string `xml:"TDLINE,omitempty" json:"TDLINE,omitempty" yaml:"TDLINE,omitempty" doc:"Text Line"`
99 }
100
101 // Master customer master basic data (KNA1)
102 type DEBMASE1KNA1M struct {
103 SEGMENT string `xml:"SEGMENT" json:"SEGMENT" yaml:"SEGMENT" doc:""`
104 MSGFN *string `xml:"MSGFN,omitempty" json:"MSGFN,omitempty" yaml:"MSGFN,omitempty" doc:"Function"`
105 KUNNR *string `xml:"KUNNR,omitempty" json:"KUNNR,omitempty" yaml:"KUNNR,omitempty" doc:"Customer Number"`
106 ANRED *string `xml:"ANRED,omitempty" json:"ANRED,omitempty" yaml:"ANRED,omitempty" doc:"Title"`
107 AUFSD *string `xml:"AUFSD,omitempty" json:"AUFSD,omitempty" yaml:"AUFSD,omitempty" doc:"Central order block for customer"`
108 BAHNE *string `xml:"BAHNE,omitempty" json:"BAHNE,omitempty" yaml:"BAHNE,omitempty" doc:"Express train station"`
109 BAHNS *string `xml:"BAHNS,omitempty" json:"BAHNS,omitempty" yaml:"BAHNS,omitempty" doc:"Train station"`
110 BBBNR *string `xml:"BBBNR,omitempty" json:"BBBNR,omitempty" yaml:"BBBNR,omitempty" doc:"International location number (part 1)"`
111 BBSNR *string `xml:"BBSNR,omitempty" json:"BBSNR,omitempty" yaml:"BBSNR,omitempty" doc:"International location number (Part 2)"`
112 BEGRU *string `xml:"BEGRU,omitempty" json:"BEGRU,omitempty" yaml:"BEGRU,omitempty" doc:"Authorization Group"`
113 BRSCH *string `xml:"BRSCH,omitempty" json:"BRSCH,omitempty" yaml:"BRSCH,omitempty" doc:"Industry key"`
114 BUBKZ *string `xml:"BUBKZ,omitempty" json:"BUBKZ,omitempty" yaml:"BUBKZ,omitempty" doc:"Check digit for the international location number"`
115 DATLT *string `xml:"DATLT,omitempty" json:"DATLT,omitempty" yaml:"DATLT,omitempty" doc:"Data communication line no."`
116 FAKSD *string `xml:"FAKSD,omitempty" json:"FAKSD,omitempty" yaml:"FAKSD,omitempty" doc:"Central billing block for customer"`
117 FISKN *string `xml:"FISKN,omitempty" json:"FISKN,omitempty" yaml:"FISKN,omitempty" doc:"Account number of the master record with the fiscal address"`
118 KNRZA *string `xml:"KNRZA,omitempty" json:"KNRZA,omitempty" yaml:"KNRZA,omitempty" doc:"Account number of an alternative payer"`
119 KONZS *string `xml:"KONZS,omitempty" json:"KONZS,omitempty" yaml:"KONZS,omitempty" doc:"Group key"`
120 KTOKD *string `xml:"KTOKD,omitempty" json:"KTOKD,omitempty" yaml:"KTOKD,omitempty" doc:"Customer Account Group"`
121 KUKLA *string `xml:"KUKLA,omitempty" json:"KUKLA,omitempty" yaml:"KUKLA,omitempty" doc:"Customer classification"`
122 LAND1 *string `xml:"LAND1,omitempty" json:"LAND1,omitempty" yaml:"LAND1,omitempty" doc:"Country Key"`
123 LIFNR *string `xml:"LIFNR,omitempty" json:"LIFNR,omitempty" yaml:"LIFNR,omitempty" doc:"Account Number of Vendor or Creditor"`
124 LIFSD *string `xml:"LIFSD,omitempty" json:"LIFSD,omitempty" yaml:"LIFSD,omitempty" doc:"Central delivery block for the customer"`
125 LOCCO *string `xml:"LOCCO,omitempty" json:"LOCCO,omitempty" yaml:"LOCCO,omitempty" doc:"City Coordinates"`
126 LOEVM *string `xml:"LOEVM,omitempty" json:"LOEVM,omitempty" yaml:"LOEVM,omitempty" doc:"Central Deletion Flag for Master Record"`
127 NAME1 *string `xml:"NAME1,omitempty" json:"NAME1,omitempty" yaml:"NAME1,omitempty" doc:"Name 1"`
128 NAME2 *string `xml:"NAME2,omitempty" json:"NAME2,omitempty" yaml:"NAME2,omitempty" doc:"Name 2"`
129 NAME3 *string `xml:"NAME3,omitempty" json:"NAME3,omitempty" yaml:"NAME3,omitempty" doc:"Name 3"`
130 NAME4 *string `xml:"NAME4,omitempty" json:"NAME4,omitempty" yaml:"NAME4,omitempty" doc:"Name 4"`
131 NIELS *string `xml:"NIELS,omitempty" json:"NIELS,omitempty" yaml:"NIELS,omitempty" doc:"Nielsen ID"`
132 ORT01 *string `xml:"ORT01,omitempty" json:"ORT01,omitempty" yaml:"ORT01,omitempty" doc:"City"`
133 ORT02 *string `xml:"ORT02,omitempty" json:"ORT02,omitempty" yaml:"ORT02,omitempty" doc:"District"`
134 PFACH *string `xml:"PFACH,omitempty" json:"PFACH,omitempty" yaml:"PFACH,omitempty" doc:"PO Box"`
135 PSTL2 *string `xml:"PSTL2,omitempty" json:"PSTL2,omitempty" yaml:"PSTL2,omitempty" doc:"P.O. Box Postal Code"`
136 PSTLZ *string `xml:"PSTLZ,omitempty" json:"PSTLZ,omitempty" yaml:"PSTLZ,omitempty" doc:"Postal Code"`
137 REGIO *string `xml:"REGIO,omitempty" json:"REGIO,omitempty" yaml:"REGIO,omitempty" doc:"Region (State, Province, County)"`
138 COUNC *string `xml:"COUNC,omitempty" json:"COUNC,omitempty" yaml:"COUNC,omitempty" doc:"County Code"`
139 CITYC *string `xml:"CITYC,omitempty" json:"CITYC,omitempty" yaml:"CITYC,omitempty" doc:"City Code"`
140 RPMKR *string `xml:"RPMKR,omitempty" json:"RPMKR,omitempty" yaml:"RPMKR,omitempty" doc:"Regional Market"`
141 SORTL *string `xml:"SORTL,omitempty" json:"SORTL,omitempty" yaml:"SORTL,omitempty" doc:"Sort field"`
142 SPERR *string `xml:"SPERR,omitempty" json:"SPERR,omitempty" yaml:"SPERR,omitempty" doc:"Central posting block"`
143 SPRAS *string `xml:"SPRAS,omitempty" json:"SPRAS,omitempty" yaml:"SPRAS,omitempty" doc:"Language Key"`
144 STCD1 *string `xml:"STCD1,omitempty" json:"STCD1,omitempty" yaml:"STCD1,omitempty" doc:"Tax Number 1"`
145 STCD2 *string `xml:"STCD2,omitempty" json:"STCD2,omitempty" yaml:"STCD2,omitempty" doc:"Tax Number 2"`
146 STKZA *string `xml:"STKZA,omitempty" json:"STKZA,omitempty" yaml:"STKZA,omitempty" doc:"Indicator: Business Partner Subject to Equalization Tax?"`
147 STKZU *string `xml:"STKZU,omitempty" json:"STKZU,omitempty" yaml:"STKZU,omitempty" doc:"Liable for VAT"`
148 STRAS *string `xml:"STRAS,omitempty" json:"STRAS,omitempty" yaml:"STRAS,omitempty" doc:"House number and street"`
149 TELBX *string `xml:"TELBX,omitempty" json:"TELBX,omitempty" yaml:"TELBX,omitempty" doc:"Telebox number"`
150 TELF1 *string `xml:"TELF1,omitempty" json:"TELF1,omitempty" yaml:"TELF1,omitempty" doc:"First telephone number"`
151 TELF2 *string `xml:"TELF2,omitempty" json:"TELF2,omitempty" yaml:"TELF2,omitempty" doc:"Second telephone number"`
152 TELFX *string `xml:"TELFX,omitempty" json:"TELFX,omitempty" yaml:"TELFX,omitempty" doc:"Fax Number"`
153 TELTX *string `xml:"TELTX,omitempty" json:"TELTX,omitempty" yaml:"TELTX,omitempty" doc:"Teletex number"`
154 TELX1 *string `xml:"TELX1,omitempty" json:"TELX1,omitempty" yaml:"TELX1,omitempty" doc:"Telex number"`
155 LZONE *string `xml:"LZONE,omitempty" json:"LZONE,omitempty" yaml:"LZONE,omitempty" doc:"Transportation zone to or from which the goods are delivered"`
156 XZEMP *string `xml:"XZEMP,omitempty" json:"XZEMP,omitempty" yaml:"XZEMP,omitempty" doc:"Indicator: Alternative payee in document allowed ?"`
157 VBUND *string `xml:"VBUND,omitempty" json:"VBUND,omitempty" yaml:"VBUND,omitempty" doc:"Company ID of Trading Partner"`
158 STCEG *string `xml:"STCEG,omitempty" json:"STCEG,omitempty" yaml:"STCEG,omitempty" doc:"VAT Registration Number"`
159 GFORM *string `xml:"GFORM,omitempty" json:"GFORM,omitempty" yaml:"GFORM,omitempty" doc:"Legal status"`
160 BRAN1 *string `xml:"BRAN1,omitempty" json:"BRAN1,omitempty" yaml:"BRAN1,omitempty" doc:"Industry Code 1"`
161 BRAN2 *string `xml:"BRAN2,omitempty" json:"BRAN2,omitempty" yaml:"BRAN2,omitempty" doc:"Industry code 2"`
162 BRAN3 *string `xml:"BRAN3,omitempty" json:"BRAN3,omitempty" yaml:"BRAN3,omitempty" doc:"Industry code 3"`
163 BRAN4 *string `xml:"BRAN4,omitempty" json:"BRAN4,omitempty" yaml:"BRAN4,omitempty" doc:"Industry code 4"`
164 BRAN5 *string `xml:"BRAN5,omitempty" json:"BRAN5,omitempty" yaml:"BRAN5,omitempty" doc:"Industry code 5"`
165 UMJAH *string `xml:"UMJAH,omitempty" json:"UMJAH,omitempty" yaml:"UMJAH,omitempty" doc:"Year For Which Sales are Given"`
166 UWAER *string `xml:"UWAER,omitempty" json:"UWAER,omitempty" yaml:"UWAER,omitempty" doc:"Currency of sales figure"`
167 JMZAH *string `xml:"JMZAH,omitempty" json:"JMZAH,omitempty" yaml:"JMZAH,omitempty" doc:"Yearly number of employees"`
168 JMJAH *string `xml:"JMJAH,omitempty" json:"JMJAH,omitempty" yaml:"JMJAH,omitempty" doc:"Year for which the number of employees is given"`
169 KATR1 *string `xml:"KATR1,omitempty" json:"KATR1,omitempty" yaml:"KATR1,omitempty" doc:"e-Shop"`
170 KATR2 *string `xml:"KATR2,omitempty" json:"KATR2,omitempty" yaml:"KATR2,omitempty" doc:"Attribute 2"`
171 KATR3 *string `xml:"KATR3,omitempty" json:"KATR3,omitempty" yaml:"KATR3,omitempty" doc:"Attribute 3"`
172 KATR4 *string `xml:"KATR4,omitempty" json:"KATR4,omitempty" yaml:"KATR4,omitempty" doc:"Attribute 4"`
173 KATR5 *string `xml:"KATR5,omitempty" json:"KATR5,omitempty" yaml:"KATR5,omitempty" doc:"Attribute 5"`
174 KATR6 *string `xml:"KATR6,omitempty" json:"KATR6,omitempty" yaml:"KATR6,omitempty" doc:"Attribute 6"`
175 KATR7 *string `xml:"KATR7,omitempty" json:"KATR7,omitempty" yaml:"KATR7,omitempty" doc:"Attribute 7"`
176 KATR8 *string `xml:"KATR8,omitempty" json:"KATR8,omitempty" yaml:"KATR8,omitempty" doc:"Attribute 8"`
177 KATR9 *string `xml:"KATR9,omitempty" json:"KATR9,omitempty" yaml:"KATR9,omitempty" doc:"Attribute 9"`
178 KATR10 *string `xml:"KATR10,omitempty" json:"KATR10,omitempty" yaml:"KATR10,omitempty" doc:"Attribute 10"`
179 STKZN *string `xml:"STKZN,omitempty" json:"STKZN,omitempty" yaml:"STKZN,omitempty" doc:"Natural Person"`
180 UMSA1 *string `xml:"UMSA1,omitempty" json:"UMSA1,omitempty" yaml:"UMSA1,omitempty" doc:"Field of length 16"`
181 TXJCD *string `xml:"TXJCD,omitempty" json:"TXJCD,omitempty" yaml:"TXJCD,omitempty" doc:"Tax Jurisdiction"`
182 PERIV *string `xml:"PERIV,omitempty" json:"PERIV,omitempty" yaml:"PERIV,omitempty" doc:"Fiscal Year Variant"`
183 KTOCD *string `xml:"KTOCD,omitempty" json:"KTOCD,omitempty" yaml:"KTOCD,omitempty" doc:"Reference Account Group for One-Time Account (Customer)"`
184 PFORT *string `xml:"PFORT,omitempty" json:"PFORT,omitempty" yaml:"PFORT,omitempty" doc:"PO Box city"`
185 DTAMS *string `xml:"DTAMS,omitempty" json:"DTAMS,omitempty" yaml:"DTAMS,omitempty" doc:"Indicator for Data Medium Exchange"`
186 DTAWS *string `xml:"DTAWS,omitempty" json:"DTAWS,omitempty" yaml:"DTAWS,omitempty" doc:"Instruction key for data medium exchange"`
187 HZUOR *string `xml:"HZUOR,omitempty" json:"HZUOR,omitempty" yaml:"HZUOR,omitempty" doc:"Hierarchy assignment (batch input)"`
188 CIVVE *string `xml:"CIVVE,omitempty" json:"CIVVE,omitempty" yaml:"CIVVE,omitempty" doc:"ID for mainly non-military use"`
189 MILVE *string `xml:"MILVE,omitempty" json:"MILVE,omitempty" yaml:"MILVE,omitempty" doc:"ID for mainly military use"`
190 SPRAS_ISO *string `xml:"SPRAS_ISO,omitempty" json:"SPRAS_ISO,omitempty" yaml:"SPRAS_ISO,omitempty" doc:"Language according to ISO 639"`
191 FITYP *string `xml:"FITYP,omitempty" json:"FITYP,omitempty" yaml:"FITYP,omitempty" doc:"Tax type"`
192 STCDT *string `xml:"STCDT,omitempty" json:"STCDT,omitempty" yaml:"STCDT,omitempty" doc:"Tax Number Type"`
193 STCD3 *string `xml:"STCD3,omitempty" json:"STCD3,omitempty" yaml:"STCD3,omitempty" doc:"Tax Number 3"`
194 STCD4 *string `xml:"STCD4,omitempty" json:"STCD4,omitempty" yaml:"STCD4,omitempty" doc:"Tax Number 4"`
195 XICMS *string `xml:"XICMS,omitempty" json:"XICMS,omitempty" yaml:"XICMS,omitempty" doc:"Customer is ICMS-exempt"`
196 XXIPI *string `xml:"XXIPI,omitempty" json:"XXIPI,omitempty" yaml:"XXIPI,omitempty" doc:"Customer is IPI-exempt"`
197 XSUBT *string `xml:"XSUBT,omitempty" json:"XSUBT,omitempty" yaml:"XSUBT,omitempty" doc:"Customer group of Substituiçao Tributária calculation- old!!"`
198 CFOPC *string `xml:"CFOPC,omitempty" json:"CFOPC,omitempty" yaml:"CFOPC,omitempty" doc:"Customer's CFOP category"`
199 TXLW1 *string `xml:"TXLW1,omitempty" json:"TXLW1,omitempty" yaml:"TXLW1,omitempty" doc:"Tax law: ICMS"`
200 TXLW2 *string `xml:"TXLW2,omitempty" json:"TXLW2,omitempty" yaml:"TXLW2,omitempty" doc:"Tax law: IPI"`
201 CCC01 *string `xml:"CCC01,omitempty" json:"CCC01,omitempty" yaml:"CCC01,omitempty" doc:"Indicator for biochemical warfare for legal control"`
202 CCC02 *string `xml:"CCC02,omitempty" json:"CCC02,omitempty" yaml:"CCC02,omitempty" doc:"Indicator for nuclear nonproliferation for legal control"`
203 CCC03 *string `xml:"CCC03,omitempty" json:"CCC03,omitempty" yaml:"CCC03,omitempty" doc:"Indicator for national security for legal control"`
204 CCC04 *string `xml:"CCC04,omitempty" json:"CCC04,omitempty" yaml:"CCC04,omitempty" doc:"Indicator for missile technology for legal control"`
205 CASSD *string `xml:"CASSD,omitempty" json:"CASSD,omitempty" yaml:"CASSD,omitempty" doc:"Central sales block for customer"`
206 KDKG1 *string `xml:"KDKG1,omitempty" json:"KDKG1,omitempty" yaml:"KDKG1,omitempty" doc:"Customer condition group 1"`
207 KDKG2 *string `xml:"KDKG2,omitempty" json:"KDKG2,omitempty" yaml:"KDKG2,omitempty" doc:"Customer condition group 2"`
208 KDKG3 *string `xml:"KDKG3,omitempty" json:"KDKG3,omitempty" yaml:"KDKG3,omitempty" doc:"Customer condition group 3"`
209 KDKG4 *string `xml:"KDKG4,omitempty" json:"KDKG4,omitempty" yaml:"KDKG4,omitempty" doc:"Customer condition group 4"`
210 KDKG5 *string `xml:"KDKG5,omitempty" json:"KDKG5,omitempty" yaml:"KDKG5,omitempty" doc:"Customer condition group 5"`
211 NODEL *string `xml:"NODEL,omitempty" json:"NODEL,omitempty" yaml:"NODEL,omitempty" doc:"Central deletion block for master record"`
212 XSUB2 *string `xml:"XSUB2,omitempty" json:"XSUB2,omitempty" yaml:"XSUB2,omitempty" doc:"Customer group for Substituiçao Tributária calculation"`
213 WERKS *string `xml:"WERKS,omitempty" json:"WERKS,omitempty" yaml:"WERKS,omitempty" doc:"Plant"`
214 E1KNA11 *DEBMASE1KNA11 `xml:"E1KNA11,omitempty" json:"E1KNA11,omitempty" yaml:"E1KNA11,omitempty" doc:"Customer Master: Additional General Fields (KNA1)"`
215 E1KNA1H []*DEBMASE1KNA1H `xml:"E1KNA1H,omitempty" json:"E1KNA1H,omitempty" yaml:"E1KNA1H,omitempty" doc:""`
216 E1KNVVM []*DEBMASE1KNVVM `xml:"E1KNVVM,omitempty" json:"E1KNVVM,omitempty" yaml:"E1KNVVM,omitempty" doc:""`
217 E1KNB1M []*DEBMASE1KNB1M `xml:"E1KNB1M,omitempty" json:"E1KNB1M,omitempty" yaml:"E1KNB1M,omitempty" doc:""`
218 E1KNBKM []*DEBMASE1KNBKM `xml:"E1KNBKM,omitempty" json:"E1KNBKM,omitempty" yaml:"E1KNBKM,omitempty" doc:""`
219 E1KNVAM []*DEBMASE1KNVAM `xml:"E1KNVAM,omitempty" json:"E1KNVAM,omitempty" yaml:"E1KNVAM,omitempty" doc:""`
220 E1WRF12 []*DEBMASE1WRF12 `xml:"E1WRF12,omitempty" json:"E1WRF12,omitempty" yaml:"E1WRF12,omitempty" doc:""`
221 E1WRF4M []*DEBMASE1WRF4M `xml:"E1WRF4M,omitempty" json:"E1WRF4M,omitempty" yaml:"E1WRF4M,omitempty" doc:""`
222 E1KNVKM []*DEBMASE1KNVKM `xml:"E1KNVKM,omitempty" json:"E1KNVKM,omitempty" yaml:"E1KNVKM,omitempty" doc:""`
223 E1KNEXM []*DEBMASE1KNEXM `xml:"E1KNEXM,omitempty" json:"E1KNEXM,omitempty" yaml:"E1KNEXM,omitempty" doc:""`
224 E1KNASM []*DEBMASE1KNASM `xml:"E1KNASM,omitempty" json:"E1KNASM,omitempty" yaml:"E1KNASM,omitempty" doc:""`
225 E1KNKAM *DEBMASE1KNKAM `xml:"E1KNKAM,omitempty" json:"E1KNKAM,omitempty" yaml:"E1KNKAM,omitempty" doc:"Master customer master credit management central data (KNKA)"`
226 E1KNATM []*DEBMASE1KNATM `xml:"E1KNATM,omitempty" json:"E1KNATM,omitempty" yaml:"E1KNATM,omitempty" doc:""`
227 E1KNKKM []*DEBMASE1KNKKM `xml:"E1KNKKM,omitempty" json:"E1KNKKM,omitempty" yaml:"E1KNKKM,omitempty" doc:""`
228 E1VCKUN []*DEBMASE1VCKUN `xml:"E1VCKUN,omitempty" json:"E1VCKUN,omitempty" yaml:"E1VCKUN,omitempty" doc:""`