From version 40.1
edited by David Persson
on 2023/08/25 09:37
To version 41.1
edited by David Persson
on 2023/08/25 09:38
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -1,1 +1,177 @@
1 -f
1 += Introduction =
2 +
3 +
4 +(% class="jumbotron" %)
5 +(((
6 +
7 +
8 +(% class="container" %)
9 +(((
10 + This is a general step-for-step implementations guide that guide you through the creation of the CUSIN file that contains your invoice information.
11 +)))
12 +)))
13 +
14 +
15 +== Prerequisites ==
16 +
17 +
18 + Before you start implementing PayEx Invoice Service the following is required:
19 +
20 +
21 +* A sFTP Client
22 +* An agreement that includes PayEx Invoice Service (CUSIN)
23 +* Obtained credentials from PayEx
24 +* A basic understanding of [[file name convention and file format limitations>>doc:Main.Invoicing.invoice-service.Implementation guide.Technical reference.Cusin.WebHome||anchor="HNameconvention"]]
25 +\\ Pease contact us if you have any questions on how to get started.
26 +
27 +
28 +== Overview ==
29 +
30 +
31 + Before getting started, have a look at the high level sequence diagram below, which will help you getting a better understanding of the whole process and the components necessary to implement Invoice Service.
32 +\\{{plantuml}} @startuml
33 + skinparam sequence{
34 + ArrowColor #2DA944
35 + ActorFontColor #333333
36 + ActorFontStyle bold
37 + ActorFontSize 15
38 + ActorBackgroundColor #fefefe
39 + ActorBorderColor #2DA944
40 + LifeLineBorderColor #999999
41 + LifeLineBackgroundColor #dddddd
42 + ParticipantBorderColor #2DA944
43 + ParticipantBackgroundColor #ffffff
44 + ParticipantFontColor #333333
45 + ParticipantFontStyle bold
46 + }
47 + skinparam Roundcorner 10
48 + skinparam Shadowing false
49 + skinparam ActivityBorderColor #123123
50 + skinparam NoteBackgroundColor white
51 + skinparam NoteBorderColor #999999
52 + skinparam NoteFontColor #333333
53 + skinparam sequenceDividerBackgroundColor white
54 + skinparam sequenceDividerBorderColor #999999
55 + skinparam sequenceDividerFontStyle bold
56 + skinparam sequenceDividerFontSize 15
57 + '//Sequence start//'
58 + |||
59 + Customer->Company: Purchase information processed via Company's ERP
60 + |||
61 + Activate Customer
62 + ==[[/xwiki/wiki/developer/view/Main/Invoicing/invoice-service/Implementation%20guide/#HInvoicing Invoicing]]==
63 + Activate Company
64 + Activate PayEx
65 + Company->PayEx: Create <Cusin>
66 + PayEx->Company: Receive <Receipt>
67 + PayEx->Company: Receive <Errorlog>
68 + Deactivate Company
69 + PayEx->Customer: Distribute <Invoice>]
70 + |||
71 + Deactivate Customer
72 + hnote over Company: Invoice gets payed/closed or continues in claim process
73 + |||
74 + ==[[/xwiki/wiki/developer/view/Main/Invoicing/invoice-service/Implementation%20guide/#HReportsandAccounting Reports and Accounting]]==
75 + PayEx->Company: Receive <Bill Journal>
76 + Activate Company
77 + PayEx->Company: Receive <Customer Journal>
78 + PayEx->Company: Receive <Accounting Detail>
79 + PayEx->Company: Receive <SIE4>]
80 + PayEx->Company: Receive <Balance Report>
81 + PayEx->Company: Receive <ARAccounting (Billing only)>
82 + Deactivate PayEx
83 + Deactivate Company
84 + |||
85 + '//Sequence end//'
86 + @enduml
87 + {{/plantuml}}
88 +\\\\(% class="wikigeneratedid" id="HWhatyoushoulddo2Cstepbystep." %) All main steps of the invoice process are described below. **Please note** that all XML examples below are here primarily for display purposes, to help you get an understanding of the CUSIN file format and to aid you in the implementation.
89 +\\ If you encounter any problem during implementation, don't hesitate to [[contact us>>mailto:invoice.client@payex.com]].
90 +
91 +
92 +== Invoicing ==
93 +
94 +
95 + The initial step is to create your [[CUSIN >>doc:Main.Invoicing.invoice-service.Implementation guide.Technical reference.Cusin.WebHome]]file.
96 +
97 +
98 +=== Cusin ===
99 +
100 +
101 + The first thing you need to do is to create a CUSIN file with extension .XML and UTF-8 encoding. Name it according to the filename convention.
102 +\\ Head over to our [[technical reference section>>doc:Main.Invoicing.invoice-service.Implementation guide.Technical reference.Cusin.WebHome]] for a more extensive description of the file format, where you find more information of each element in the XML schema and CUSIN example file.
103 +\\ To learn more of how to edit invoice column length and use summary rows, visit the [[Invoice columns section>>url:https://developer.payex.com/xwiki/wiki/developer/view/Main/Invoicing/invoice-service/Invoice%20columns/]].
104 +\\\\(% class="wikigeneratedid" id="HTransferringfilestoPayEx" %) When you have a complete and validated CUSIN file, you are ready to transfer it to PayEx via sFTP.
105 +\\ (%%)
106 +(% class="wikigeneratedid" %) Upon reception PayEx will process the file and send you a receipt in return. If something went wrong, you will also receive an error log.
107 +
108 +
109 +=== Receipt ===
110 +
111 +
112 + When the CUSIN file, containing one or more activities - is processed a receipt will be created showing numbers of processed customers, numbers of processed invoices and total amount.
113 +\\ Each activity has their own set of result parameters
114 +\\ You can view the XSD and a detailed description [[here>>doc:Main.Invoicing.invoice-service.Implementation guide.Technical reference.Receipt.WebHome]].
115 +
116 +
117 +=== Error log ===
118 +
119 +
120 + If errors are encountered during file processing an errorlog will be created. Errors may refer to insufficient customer information, invoice information or format errors.
121 +\\ The first part displays the processed item itself.
122 +\\ The second part of the error log displays the response item message element that gives reference back to the processed file.
123 +\\ You can view the XSD and a detailed description [[here>>doc:Main.Invoicing.invoice-service.Implementation guide.Technical reference.Errorlog.WebHome]].
124 +
125 +
126 +=== (% style="color:inherit; font-family:inherit; font-size:23px" %)Invoice generation(%%) ===
127 +
128 +
129 + When you have transfered your CUSIN file to PayEx and it has been processed successfully the end result will look similar to the invoice example below.
130 +\\**Click on the invoice image to download the full PDF invoice example.** If you want to learn more about customizing your invoice, head over to our section that cover [[additional features and functions>>doc:Main.Invoicing.invoice-service.Implementation guide.Supplementary features.WebHome]].
131 +
132 +
133 +== [[[[image:invoice-example.PNG]]>>attach:invoice-example.PNG]] ==
134 +
135 +
136 +== Reports and Accounting ==
137 +
138 +
139 + You get response files from PayEx in the from of Bill and Customer Journal.
140 +
141 +
142 +=== Bill Journal ===
143 +
144 +
145 + Bill Journal is the format used to notify changes in invoice status. Entries could relate to events such as a new claim process level, invoices getting closed and newly registered complaints and respites.
146 +\\ You find the Bill Journal technical reference [[here>>doc:Main.Invoicing.invoice-service.Implementation guide.Technical reference.BillJournal.WebHome||anchor="HBillJournal"]].
147 +
148 +
149 +=== Customer Journal ===
150 +
151 +
152 + Customer Journal is the format used to notify changes in customer information. Entries could relate to events such as a new legal address, activation/cancellation of consent and customer status changes due to decease.
153 +\\ You find the Customer Journal technical reference [[here>>doc:Main.Invoicing.invoice-service.Implementation guide.Technical reference.CustomerJournal.WebHome||anchor="HCustomerJournal"]].
154 +
155 +
156 +=== Accounting Detail ===
157 +
158 +
159 + Bookkeeping data is produced on two levels. You get accounting records on the transactional level as well as aggretated in the standardised SIE format type 4.
160 +\\ Files are exported from PayEx on a daily schedule.
161 +\\\\**The Accounting Detai**l file describes the accounting records on the transaction level and Includes invoice number, book account, amount, value date, etc.
162 +\\ You find the Accounting Detail technical reference [[here>>doc:Main.Invoicing.invoice-service.Implementation guide.Technical reference.6\. ARAccountingDetail.WebHome||anchor="HAccountingDetail" style="background-color: rgb(255, 255, 255);"]].
163 +\\\\**The SIE4** **file **describes the accounting records on an aggregated level, that includes total amounts per book account.
164 +\\ You find the SIE4 technical reference [[here>>doc:Main.Invoicing.invoice-service.Implementation guide.Technical reference.SIE4.WebHome||anchor="HSIE4" style="background-color: rgb(255, 255, 255);"]].
165 +\\
166 +
167 +=== Balance Report ===
168 +
169 +
170 + The [[Balance Report (Client Asset Disbursement)>>doc:Main.Invoicing.invoice-service.Implementation guide.Technical reference.BalanceReport.WebHome||anchor="HBalanceReport"]] includes:
171 +
172 +
173 +* **A payment summary** of amount sold, fees and, VAT and specification of total amount to be paid out.
174 +* **A sales specification**. Each record of "Client asset disbursement" listed is equal to the full Accounting Detail for the specified period.
175 +* (((
176 +**A Fees specification.** Depending on setup, fees are either deducted from the amount to be paid out, or (when applicable) to be invoiced separatly.Each fees row specify Quantity (sales), Amount (sales), Unit price, Provision and fee Amount.
177 +)))