File: firsttime.docbook

package info (click to toggle)
kmymoney 5.0.3-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 62,472 kB
  • sloc: cpp: 150,812; sh: 469; python: 425; xml: 249; perl: 169; makefile: 13
file content (1035 lines) | stat: -rw-r--r-- 33,284 bytes parent folder | download
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
<?xml version="1.0" encoding="UTF-8"?>
<chapter id="firsttime">
<chapterinfo>
  <authorgroup>
    <author> &Michael.T.Edwardes; &Michael.T.Edwardes.mail; </author>
    <author> &Jack.H.Ostroff; &Jack.H.Ostroff.mail; </author>
  </authorgroup>
  <date>2018-02-01</date>
  <releaseinfo>5.0.0</releaseinfo>
</chapterinfo>

<title>Using &kmymoney; for the first time</title>

<sect1 id="firstime-1">
<title>Running &kmymoney; for the first time</title>

<para>
  Once &kmymoney; has fully loaded two windows will be opened. The top window,
  'Tip of the Day' offers one of a series of important or useful pieces of
  information about the application.
  <screenshot>
	<screeninfo>Tip of the Day</screeninfo>
	<mediaobject>
	<imageobject>
	<imagedata fileref="tipofday.png" format="PNG" />
	</imageobject>
	<textobject>
	<phrase>Tip of the Day</phrase>
	</textobject>
	</mediaobject>
  </screenshot>
</para>

<para>
  You are recommended to quickly read through these tips by pressing on the
  <guibutton>Previous</guibutton> and <guibutton>Next</guibutton> buttons at the
  bottom of the window.
</para>

<para>
  Once you have read the tips the window can be closed; it will re-open each
  time &kmymoney; is started.  To stop this default behavior, uncheck the
  appropriate option on the Tip of the Day window.
</para>

<note>
  <para>
    Tips can be read at anytime by selecting <guimenuitem>Show tip of the
    day</guimenuitem> from the <guimenu>Help</guimenu> menu within &kmymoney;.
  </para>
</note>

<para>
  All tips have been extracted from the Frequently Asked Questions list (FAQ)
  that provides more detailed help and can be found on the project <ulink
  url="http://www.kmymoney.org/faq.php">website</ulink> and in <link
  linkend="faq">this manual</link>.
</para>

<para>
  Please click on <guibutton>Close</guibutton> to close the Tip of the Day
  dialog.
</para>

<note>
  <para>
    When you run &kmymoney;, it might not look exactly like the screenshots in
    this manual.  Many details, such as fonts, colors, and icons, can be
    customized, either using the
    <menuchoice><guimenu>Settings</guimenu><guimenuitem>Configure
    &kmymoney;...</guimenuitem></menuchoice> dialog or the KDE System Settings
    application, depending on your operating system.
  </para>
</note>

</sect1>

<sect1 id="firsttime.mainwindow">
<title>The main window</title>

<para>
	<screenshot>
	<screeninfo>The Main Window</screeninfo>
	<mediaobject>
	<imageobject>
	<imagedata fileref="mainwindow_numbered.png" format="PNG" />
	</imageobject>
	<textobject>
	<phrase>The Main Window</phrase>
	</textobject>
	</mediaobject>
	</screenshot>
</para>

<para>
  The &kmymoney; main window consists of four major parts
</para>

<itemizedlist>
  <listitem><para>A. The menu bar</para></listitem>
  <listitem><para>B. The toolbar</para></listitem>
  <listitem><para>C. The View selector</para></listitem>
  <listitem><para>D. The view</para></listitem>
</itemizedlist>

<para>
  The menu and toolbars provide access to the features of &kmymoney; and allow
  you to <link linkend="firsttime.3">Create</link> files or configure how
  &kmymoney; operates.
</para>

<para>
  The view selector consists of at least eleven icons in the left side of the
  main window, depending upon the software provided by your system.  More icons
  could be added by various plugins.  By clicking on an icon, the view window on
  the right hand side is loaded with the appropriate view of your financial
  data.  Each view provides a unique representation of your financial situation
  and allows you to view or edit the information shown.
</para>

<para>
  The view selector may contain the following icons
</para>

<itemizedlist>
  <listitem>
    <para>
      <guiicon>
	<inlinemediaobject>
	  <imageobject>
	    <imagedata fileref="home_view.png" format="PNG"/>
	  </imageobject>
	  <textobject>
	    <phrase>Home View</phrase>
	  </textobject>
	</inlinemediaobject>
      </guiicon>
      Home: A configurable overview of your current financial situation (or an
      introduction page when no data file is open).
    </para>
  </listitem>

  <listitem>
    <para>
      <guiicon>
        <inlinemediaobject>
          <imageobject>
	    <imagedata fileref="institutions_view.png" format="PNG"/>
          </imageobject>
	  <textobject>
	    <phrase>Institutions View</phrase>
	  </textobject>
	</inlinemediaobject>
      </guiicon>
      Institutions: All of your institutions and accounts displayed in a
      hierarchy.
    </para>
  </listitem>

  <listitem>
    <para>
      <guiicon>
	<inlinemediaobject>
	  <imageobject>
	    <imagedata fileref="accounts_view.png" format="PNG"/>
	  </imageobject>
	  <textobject>
	    <phrase>Accounts View</phrase>
	  </textobject>
	</inlinemediaobject>
      </guiicon>
      Accounts: All of your accounts displayed in a hierarchy.
    </para>
  </listitem>

  <listitem>
    <para>
      <guiicon>
	<inlinemediaobject>
	  <imageobject>
	    <imagedata fileref="schedule_view.png" format="PNG"/>
	  </imageobject>
	  <textobject>
	    <phrase>Schedules View</phrase>
	  </textobject>
	</inlinemediaobject>
      </guiicon>
      Scheduled Transactions: Your recurring bills and deposits.
    </para>
  </listitem>

  <listitem>
    <para>
      <guiicon>
        <inlinemediaobject>
	  <imageobject>
	    <imagedata fileref="categories_view.png" format="PNG"/>
	  </imageobject>
	  <textobject>
	    <phrase>Categories View</phrase>
	  </textobject>
	</inlinemediaobject>
      </guiicon>
      Categories: Special accounts that provide a means for you to group
      associated transactions.
    </para>
  </listitem>

  <listitem>
    <para>
      <guiicon>
        <inlinemediaobject>
	  <imageobject>
	    <imagedata fileref="mail-tagged.png" format="PNG"/>
	  </imageobject>
	  <textobject>
	    <phrase>Tags View</phrase>
	  </textobject>
	</inlinemediaobject>
      </guiicon>
      Tags: Special accounts that provide an additional means to Categories for
      you to group associated transactions.
    </para>
  </listitem>

  <listitem>
    <para>
      <guiicon>
        <inlinemediaobject>
	  <imageobject>
	    <imagedata fileref="payees_view.png" format="PNG"/>
	  </imageobject>
	  <textobject>
	    <phrase>Payees View</phrase>
	  </textobject>
	</inlinemediaobject>
      </guiicon>
      Payees: All Payees used by &kmymoney;.  These are all the people or
      organizations you pay money to or receive money from.
    </para>
  </listitem>

  <listitem>
    <para>
      <guiicon>
	<inlinemediaobject>
	  <imageobject>
	    <imagedata fileref="ledgers_view.png" format="PNG"/>
          </imageobject>
	  <textobject>
	    <phrase>Ledgers View</phrase>
          </textobject>
	</inlinemediaobject>
      </guiicon>
      Ledgers: Your account transactions.
    </para>
  </listitem>

  <listitem>
    <para>
      <guiicon>
	<inlinemediaobject>
	  <imageobject>
	    <imagedata fileref="investments_view.png" format="PNG"/>
	  </imageobject>
	  <textobject>
            <phrase>Investments View</phrase>
	  </textobject>
	</inlinemediaobject>
      </guiicon>
      Investments: Your portfolio summary.
    </para>
  </listitem>

  <listitem>
    <para>
      <guiicon>
	<inlinemediaobject>
	  <imageobject>
	    <imagedata fileref="reports_view.png" format="PNG"/>
	  </imageobject>
	  <textobject>
	    <phrase>Reports View</phrase>
	  </textobject>
	</inlinemediaobject>
      </guiicon>
      Reports: A collection of useful reports, providing alternate, customizable
      views of your financial data.
    </para>
  </listitem>

  <listitem>
    <para>
      <guiicon>
	<inlinemediaobject>
	  <imageobject>
	    <imagedata fileref="budgets_view.png" format="PNG"/>
	  </imageobject>
	  <textobject>
	    <phrase>Budgets View</phrase>
          </textobject>
	</inlinemediaobject>
      </guiicon>
      Budgets: Your budgets
    </para>
  </listitem>

  <listitem>
    <para>
      <guiicon>
	<inlinemediaobject>
	  <imageobject>
	    <imagedata fileref="forecast_view.png" format="PNG"/>
	  </imageobject>
	  <textobject>
	    <phrase>Forecast View</phrase>
	  </textobject>
	</inlinemediaobject>
      </guiicon>
      Forecast: This view provides a forecast of your accounts and categories
    </para>
  </listitem>

  <listitem>
    <para>
      <guiicon>
	<inlinemediaobject>
	  <imageobject>
	    <imagedata fileref="outbox_view.png" format="PNG"/>
	  </imageobject>
	  <textobject>
	    <phrase>Outbox View</phrase>
	  </textobject>
	</inlinemediaobject>
      </guiicon>
      Outbox: Used by the online banking module to provide feedback on running
      processes.  This view is provided by the KBanking plugin and may not be
      present on your system.
    </para>
  </listitem>
</itemizedlist>
</sect1>

<sect1 id="firsttime.3">
<title>Creating a new file</title>

<para>
  &kmymoney; keeps all the data about your finances in a file.  As was stated in
  <link linkend="makingmostof.basicaccounting.personalaccounts">Defining the
  accounts (personal records)</link>, you can keep more than one set of
  accounts, but the data for each will be kept in a separate file, and
  &kmymoney; can only have one file open at a time.  See the chapter on <link
  linkend="details.formats">File Formats</link> for more details about
  &kmymoney;'s data files.
</para>

<para>
  To create a new file you can either select
  <menuchoice><guimenu>File</guimenu><guimenuitem>New</guimenuitem></menuchoice>
  from the menu or choose the <inlinemediaobject><imageobject><imagedata
  fileref="new.png"/></imageobject><textobject><phrase>New</phrase></textobject></inlinemediaobject>
  icon from the toolbar.  In addition, if the main welcome page is displayed,
  you can also select the first link: "Get started and setup accounts."
</para>

<para>
  &kmymoney; will then open the <quote>New File Setup Wizard</quote> which will
  guide you through the process of creating the file.
</para>

<para>
	<screenshot>
	<screeninfo>Personal Data Page</screeninfo>
	<mediaobject>
	<imageobject>
	<imagedata fileref="newfile.png" format="PNG" />
	</imageobject>
	<textobject>
	<phrase>Personal Data Page</phrase>
	</textobject>
	</mediaobject>
	</screenshot>
</para>

<para>
  Since all fields are optional, you can use &kmymoney; without entering any
  information now.  Any information entered here is used only to personalize
  your file.  In the future, it may be used in some reports and for online
  banking. If &kmymoney; requires any personal information in future releases
  and finds none, you will be prompted to enter the relevant data then.
</para>

<para>
  Please enter your name and address or nothing and press
  <guibutton>Next</guibutton>.
</para>

<para>
  In case you have an address for yourself stored in the &kaddressbook;, the
  button <guibutton>Load from Addressbook</guibutton> is enabled and pressing it
  imports all information into &kmymoney;.
</para>

<para>
  &kmymoney; supports multiple currencies.  To set your base currency (the
  currency you use day to day and which will be used for your reports), select
  the appropriate entry from the list provided and press
  <guibutton>Next</guibutton>. A default will be selected from &kmymoney; based
  upon your locale settings.
</para>

<para>
  In the following example, US Dollar has been selected as the base currency.
</para>

<para>
	<screenshot>
	<screeninfo>Base currency selection Page</screeninfo>
	<mediaobject>
	<imageobject>
	<imagedata fileref="newfile-2.png" format="PNG" />
	</imageobject>
	<textobject>
	<phrase>Base currency selection page</phrase>
	</textobject>
	</mediaobject>
	</screenshot>
</para>

<para>
  The following page allows you to create an initial account. For the typical
  &kmymoney; user this is a checking account.
</para>

<para>
	<screenshot>
	<screeninfo>Checking account creation Page</screeninfo>
	<mediaobject>
	<imageobject>
	<imagedata fileref="newfile-3.png" format="PNG" />
	</imageobject>
	<textobject>
	<phrase>Checking account creation page</phrase>
	</textobject>
	</mediaobject>
	</screenshot>
</para>

<para>
  Enter the name of the account and a possible account or reference number
  assigned by the institution managing the account.  Enter the opening date of
  the account and the opening balance of the account.  For example, you want to
  use &kmymoney; to manage all your finances as of 2008-01-01, then enter the
  balance of the account at the beginning of this date.  The number can possibly
  be obtained from a paper statement.  Also enter the name and routing number of
  the institution, though this information is optional and only required for
  online banking purposes.
</para>

<para>
  In case you don't want to setup an initial account, please uncheck the check box.
</para>

<para>
  Once finished, press <guibutton>Next</guibutton> to proceed.
</para>

<para>
	<screenshot>
	<screeninfo>Account template selection Page</screeninfo>
	<mediaobject>
	<imageobject>
	<imagedata fileref="newfile-4.png" format="PNG" />
	</imageobject>
	<textobject>
	<phrase>Account template selection page</phrase>
	</textobject>
	</mediaobject>
	</screenshot>
</para>


<para>
  Choose the appropriate country and account template(s). Each template provides
  a different set of categories for organizing your finances. Multiple
  templates, even from different countries, can be selected using a combination
  of &Ctrl; and &Shift; together with the left mouse button.  The account
  hierarchy to be setup will be shown in a preview part of the wizard. In case
  you cannot find a template that suits your needs, don't select a template at
  this time, and you can manually set up categories later.
</para>

<para>
  Once finished with the template selection press <guibutton>Next</guibutton> to
  proceed.
</para>

<para>
  The next page of the wizard allows you to setup user preferences. If you
  select the checkbox, the application settings dialog will be displayed after
  you have completed the account setup wizard.  Press
  <guibutton>Next</guibutton> if you are done and want to proceed.
</para>

<para>
	<screenshot>
	<screeninfo>Preference Page</screeninfo>
	<mediaobject>
	<imageobject>
	<imagedata fileref="newfile-5.png" format="PNG" />
	</imageobject>
	<textobject>
	<phrase>Preference page</phrase>
	</textobject>
	</mediaobject>
	</screenshot>
</para>

<para>
  The last page of the wizard allows you to select the location and filename
  that will be used to store your financial data. Initial values will be
  constructed out of your HOME folder and user name. In case the file exists, a
  warning will be displayed which reminds you to select a name of a non-existing
  file.
</para>

<para>
	<screenshot>
	<screeninfo>Filename selection Page</screeninfo>
	<mediaobject>
	<imageobject>
	<imagedata fileref="newfile-6.png" format="PNG" />
	</imageobject>
	<textobject>
	<phrase>Filename selection page</phrase>
	</textobject>
	</mediaobject>
	</screenshot>
</para>

<para>
  Now you have entered all relevant information to create the file. Press
  <guibutton>Finish</guibutton> and &kmymoney; will create the file for you and
  open it.
</para>

</sect1>

<sect1 id="firsttime.4">
<title>Creating accounts</title>

<para>
  There are multiple ways you can create an account, which are described here:
</para>

<variablelist>
  <varlistentry>
    <term>Using the menu</term>
    <listitem>
      <para>
        To create an account using the menu select
        <menuchoice><guimenu>Accounts</guimenu><guimenuitem>New
        account</guimenuitem></menuchoice>.
      </para>
    </listitem>
  </varlistentry>

  <varlistentry>
    <term>Using the Accounts view</term>
    <listitem>
      <para>
        To create an account using the accounts view click on the Accounts icon
        <guiicon><inlinemediaobject><imageobject><imagedata
        fileref="accounts_view.png"/></imageobject></inlinemediaobject></guiicon>
        in the view selector to display the Accounts View.  Right click on the
        either the Asset tree icon or the Liability tree icon in the right hand
        view and select <guimenuitem>New account</guimenuitem> from the popup
        menu.  The Asset tree holds all of your accounts that are an asset, such
        as savings and investments.  Liabilities are accounts that represent
        money you owe, such as loans and credit cards.  These and all the other
        account types are discussed in more detail later in this manual.
      </para>
    </listitem>
  </varlistentry>

  <varlistentry>
    <term>Using the toolbar</term>
    <listitem>
      <para>
        If the <guibutton>New Account...</guibutton> button is displayed on the
        toolbar, you can click it to create an account.
      </para>
    </listitem>
  </varlistentry>

</variablelist>

<tip>
  <para>
    Note that &kmymoney; uses context menus a lot throughout the whole
    application.  If you find yourself stuck trying to figure out how to do
    something, try right-clicking where you would expect to see a feature.
  </para>
</tip>

<para>
  Creating a new account by either method opens the <emphasis>New Account
  Wizard</emphasis>.  This wizard will take you step by step through the process
  of creating an account, gathering the required information at each step.  To
  navigate through the pages click on the <guibutton>Next</guibutton> and
  <guibutton>Back</guibutton> buttons.
</para>

<para>
  Create an account using any of the previously mentioned methods to continue.
  A full description of creating accounts can be found in the <link
  linkend="details.accounts">Accounts</link> section.
</para>

<para>
  Now that one or more accounts exist in &kmymoney;, your account summary is
  shown in the Home view.  You can create transactions manually in the <link
  linkend="details.ledgers">Ledgers</link> view, or set up automatic
  transactions through the <link linkend="details.schedules">Schedules</link>
  view.
</para>
</sect1>

<sect1 id="firsttime.schedules">
<title>Schedules</title>

<para>
  Sometimes called a recurring transaction, a <link
  linkend="details.schedules">Schedule</link> is a transaction that occurs one
  or more times over a certain period of time.  A typical example is your pay
  check that you receive every month or week.  Rather than have to enter the
  transaction details each time you get paid, you can instruct &kmymoney; to
  create a schedule that will enter a transaction for you when you get paid.
</para>

<para>
  To maintain <link linkend="details.schedules">schedules</link> click on the
  Schedules icon <guiicon><inlinemediaobject><imageobject><imagedata
  fileref="schedule_view.png"/></imageobject></inlinemediaobject></guiicon> in
  the view selector.
</para>
</sect1>

<sect1 id="firsttime.categories">
<title>Categories</title>

<para>
  To maintain <link linkend="details.categories">categories</link> click on the
  <guiicon><inlinemediaobject><imageobject><imagedata
  fileref="categories_view.png"/></imageobject></inlinemediaobject></guiicon>
  Categories icon in the view selector.
</para>

<para>
  A full description of this topic can be found in the <link
  linkend="details.categories">Categories</link> section.
</para>
</sect1>

<sect1 id="firsttime.tags">
<title>Tags</title>

<para>
  To maintain <link linkend="details.tags">tags</link> click on the Tags icon
  <guiicon><inlinemediaobject><imageobject><imagedata
  fileref="mail-tagged.png"/></imageobject></inlinemediaobject></guiicon> in the
  view selector.
</para>

<para>
  A full description of this topic can be found in the <link
  linkend="details.tags">Tags</link> section.
</para>
</sect1>

<sect1 id="firsttime.payees">
<title>Payees</title>

<para>
  To maintain your list of payees click on the Payees icon
  <guiicon><inlinemediaobject><imageobject><imagedata
  fileref="payees_view.png"/></imageobject></inlinemediaobject></guiicon> in the
  view selector.
</para>

<para>
  A full description of this topic can be found in the <link
  linkend="details.payees">Payees</link> section.
</para>
</sect1>

<sect1 id="firsttime.import">
<title>Quicken Interchange Format (QIF) Import</title>

<para>
  If you currently use another financial manager application, &kmymoney; can
  import an account's transactions as long as they can be exported or saved in a
  format &kmymoney; understands. The most common of these is the Quicken
  Interchange Format (QIF).  Most financial programs can export this format,
  although the different applications' methods of exporting QIF is not discussed
  here for brevity.
</para>

<para>
  A full description of this topic can be found in the <link
  linkend="details.impexp.qifimp">QIF Import</link> section.
</para>
</sect1>

<sect1 id="firsttime.find">
<title>Searching for transactions</title>

<para>
  &kmymoney; provides a useful and powerful transaction search facility in the
  form of the search dialog.
</para>

<para>
  The search dialog can be opened from the toolbar using the Find icon
  <guiicon><inlinemediaobject><imageobject><imagedata
  fileref="transaction_find.png"/></imageobject></inlinemediaobject></guiicon>
  or by selecting <guimenuitem>Find Transaction</guimenuitem> from the
  <guimenu>Edit</guimenu> menu.
</para>

<para>
  A full description of this topic can be found in the <link
  linkend="details.search">Search</link> section.
</para>

</sect1>

<sect1 id="firsttime.reconcile">
<title>Reconciliation</title>

<para>
  At some point you will want to reconcile the transactions you have entered
  with the transactions listed in a statement, be it a bank statement, credit
  card statement, loan statement, or any other statement.  Reconciliation
  involves matching what you have entered with what the statement lists.  If any
  discrepancies are found then either you or the person who created the
  statement have made a mistake.
</para>

<para>
  To reconcile an account, first select the account, either from
  <guiicon>Accounts</guiicon> view or from <guiicon>Ledgers</guiicon>
  view. Then, either click on the <guiicon>Reconcile</guiicon> icon on the
  Toolbar, or select <guimenuitem>Reconcile</guimenuitem> from the
  <guimenu>Account</guimenu> menu.
</para>

<para>
  A full description of this topic can be found in the <link
  linkend="details.reconcile">Reconciliation</link> section.
</para>
</sect1>

<sect1 id="firsttime.backup">
<title>Backing up</title>

<para>
  Now that you have created some accounts and entered transactions it's a good
  idea to perform a backup.  Because the file used by &kmymoney; is a standard
  Unix file you can just copy the file to another location to back it up or use
  the dialog provided by &kmymoney;.  Using the dialog is the preferred method
  because if &kmymoney; ever starts using other file formats, such as SQL, then
  it would be much harder to copy the file manually.
</para>

<para>
  To backup your file through &kmymoney; Select
  <guimenuitem>Backup</guimenuitem> from the <guimenu>File</guimenu> menu and
  enter the folder where you wish the file to be saved.  If the folder
  needs mounting first and you have the sufficient privileges then check the
  tick box labeled <guilabel>Mount this directory before backing up</guilabel>
  and click on <guibutton>OK</guibutton>.
</para>

<para>
  The file will be saved to the folder specified with the current date appended
  to the filename so it is easy to see the date the file was backed up.
</para>
</sect1>

<sect1 id="firsttime.launch">
<title>Launching &kmymoney;</title>

<para>
  Most commonly, you will launch &kmymoney; from an icon or a start menu of your
  window manager.  In this case, the default behavior is that &kmymoney; will
  open the last file you had open.  However, in some circumstances, you will
  want or need to launch &kmymoney; from the command line.
</para>

<para>
  For a complete description of all the available command line options, see the
  man page for &kmymoney;.  However, there are two special cases which we
  describe here.
</para>

<formalpara><title><command>kmymoney -n</command></title>
  <para>
    The -n option tells &kmymoney; not to open the last file it had open.  This
    can be useful if the program crashes on startup.
  </para>
</formalpara>

<formalpara><title><command>kmymoney &lt;path to file&gt;</command></title>
  <para>
    Giving &kmymoney; a filename on the command line tells it to open that file
    instead of the last file it had open.  You can use the name of any valid
    &kmymoney; file, as described in the chapter on <link
    linkend="details.formats">file formats</link>.  In addition, this can be
    used to import a <link linkend="details.impexp.gnucash">GnuCash</link> file.
  </para>
</formalpara>
</sect1>

<sect1 id="firsttime.newpc">
<title>How to move &kmymoney; to a new computer</title>

<sect2 id="firsttime.newpc.data">
<title>Moving your data</title>

<para>
  If you get a new computer, it's very easy to move your data.  In fact, all you
  have to do is to copy your &kmymoney; data file.  The name of the file is
  shown in the title bar when &kmymoney; is running, it usually ends in .kmy.
  The first time you run the application on the new computer you will have to
  tell it where you have put the data file, either by running from the command
  line, or from the
  <menuchoice><guimenu>File</guimenu><guimenuitem>Open...</guimenuitem></menuchoice>
  menu.  You should even be able to move between &Windows;, &MacOS;, and &Linux; systems.
</para>

<para>
  If you have encrypted your data file, be sure the appropriate software and
  keys have also been set up on the new computer.
</para>

<para>
  If your data is in an SQL database, refer to documentation for your database
  software for guidance on migrating your data.
</para>

<para>
  Note that this assumes you have installed the same version of &kmymoney; on the new
  computer as you were running on the old computer.  Installing a newer version should
  also be safe, but you need to be aware of any issues related to that upgrade.  Any such
  issues should be noted in the release notes for the new version.
</para>
</sect2>

<sect2 id="firsttime.newpc.settings">
<title>Moving your settings</title>

<para>
  If you only move your data file to the new machine, as described in the
  previous section, &kmymoney; will work correctly, but you will have lost any
  settings you changed from the default on your old machine.  To maintain these
  settings, you also need to copy your configuration file.  This file is called
  <quote>kmymoneyrc</quote>.  This file will be in a directory with other &kde;
  application configuration files.  On a &Linux; system, this will be in
  <quote>$KDEHOME/share/config</quote> where <quote>$KDEHOME</quote> is usually
  <quote>.config</quote> within your home directory.  If you are migrating from
  a version of &kmymoney; prior to 5.0 to 5.0 or later, the old location
  of <quote>$KDEHOME</quote> was <quote>.kde4</quote>.
</para>

<sect3 id="firsttime.newpc.settings.plugins">
<title>Moving plugin settings</title>

<para>
  If you have run any &kmymoney; plugin, such as the csv importer or exporter,
  it may also have created a configuration file in that same directory, such as
  csvimporterrc or csvexporterrc.  These should also be copied to the new
  computer.
</para>

<para>
  As with the main data file, this assumes the same version of the plugin on
  both computers.  Upgrades are generally safe, but if the functionality of the
  plugin has changed greatly, it is advisable to carefully test using the old
  configuration file, to be sure the plugin behaves as you expect.
</para>

<para>
  Note that when upgrading from a previous version to version 5.0 or higher, the
  location of the template files used by the plugin for printing checks has
  changed.  Please consult the release notes or the project <ulink
  url="http://www.kmymoney.org/faq.php">website</ulink> for more details.
</para>

<note>
<para>
  These instructions are solely for moving your &kmymoney; data and settings.
  However, there may be important items which are stored by &kde; and not by
  &kmymoney;, such as passwords stored in kwallet.  Moving other parts of
  your &kde; setup is beyond the scope of this manual, although many of the
  relevant files are also stored under <quote>$KDEHOME</quote>.
</para>
</note>
</sect3>
</sect2>
</sect1>

<sect1 id="firsttime.contact">
<title>Contacting the Developers / Reporting Bugs</title>

<sect2>
<title>Contacting the developers</title>

<para>
  For general questions or comments about &kmymoney;, there is a users' mailing
  list &userlist;. (<ulink
  url="https://mail.kde.org/mailman/listinfo/kmymoney">more details
  here</ulink>.) In addition, you can contact the developers through their
  mailing list &devlist;. (<ulink
  url="https://mail.kde.org/mailman/listinfo/kmymoney-devel">more details
  here</ulink>.)  Since replies are often sent only to the list, you may not get
  any response unless you subscribe to one of the lists before sending to it.
</para>

<para>
  We're happy to hear about your experiences using &kmymoney;.
</para>
</sect2>

<sect2>
<title>Reporting bugs</title>

<para>
  To report a bug please use the interface provided by &kmymoney; by selecting
  <menuchoice><guimenu>Help</guimenu><guimenuitem>Report
  Bug</guimenuitem></menuchoice> and filling in the required information.
  However, in case you have any difficulties with that method, you can report a
  bug (or file a wish-list or enhancement request) directly at the <ulink
  url="http://bugs.kde.org">&kde; bug reporting web site</ulink>.  Reports
  should be filed against the product <quote>kmymoney</quote>.
</para>

<para>
  In any case, before reporting a bug, please read through the guidelines below.
  Following them will make it more likely that the developers will be able to
  quickly identify the problem without having to ask you for more information.
</para>

<sect3 id="firsttime.bugs.quality">
<title>Writing High Quality Bug Reports</title>

<para>
  We encourage users to take extra time to write high-quality bug reports when
  submitting them.  This reduces wasted effort on all sides, as the reporter and
  the developer who will fix it trade emails until this information is really
  in place.
</para>

<para>
  Eli Goldberg wrote the canonical Bug-Writing Guideline, available at <ulink
  url="http://issues.apache.org/bugwritinghelp.html">http://issues.apache.org/bugwritinghelp.html</ulink>.
  Generally, you'll be well-served by following these guidelines:
</para>

<formalpara><title>Include your system information</title>
  <para>
    The <menuchoice><guimenu>Help</guimenu><guimenuitem>Report
    Bug</guimenuitem></menuchoice> menu choice will fill this in automatically,
    but if you would prefer not to use this interface, there are several items
    you need to include in the report.  We will need to know what operating
    system you are using (&Linux;, &MacOS;, or &Windows;), the version of &kde;,
    and the version of &kmymoney; you're running, and either the version of
    &MacOS; or &Windows; or the name and version of your &Linux; distribution
    and the version of your kernel.
  </para>
</formalpara>

<formalpara><title>Include a backtrace for crashes</title>
  <para>
    The backtrace is often the single most useful piece of information in
    solving crashes.
  </para>
</formalpara>

<formalpara><title>Try to reproduce it</title>
  <para>
    Let us know if you were able to do so.  It's useful to know whether the bug
    only happened once and you couldn't get it to happen again or happens every
    time or happens sometimes but not others.
  </para>
</formalpara>

<formalpara><title>Include specific steps</title>
  <para>
    This is a bad bug report: <quote>I entered a transaction, and &kmymoney;
    crashed.</quote> A much better bug report is: <quote>Using the transaction
    form, I entered a new transaction in my Credit Card account.  I selected the
    Transfer tab, entered in an amount, then changed to the Deposit tab, and
    back to the Transfer tab.  When I returned to the Transfer tab, &kmymoney;
    crashed.  This bug is fully reproducible for me.</quote>
  </para>
</formalpara>

<formalpara><title>Tell us what you expected to happen</title>
  <para>
    In some cases, this is obvious, but in more subtle bugs, sometimes you'll
    see a bug report where it is not obvious what the reporter expected to
    happen.  Always tell us what you think should have happened.
  </para>
</formalpara>

<formalpara><title>Consider running with debugging enabled</title>
  <para>
    By compiling a version configured with --enable-debug=full you can ensure
    that the best possible backtraces are generated.  If you encounter a crash,
    run &kmymoney; again from within gdb, and reproduce the crash.  When it
    crashes, type <quote>bt</quote> to generate a backtrace.
  </para>
</formalpara>

<para>
  Running this way is a bit more difficult, so we don't expect all users to do
  this.  However, if you're interested in helping &kmymoney; become as stable as
  possible, this is the best way to do it short of finding the bug in the code
  and sending in a patch.
</para>
</sect3>
</sect2>
</sect1>
</chapter>