Hi, superbruger
You mean it always happens to every customer, don't you?
If it does then you shoud debug thoroughly and find mistake in C/AL or in setting. If it's only one case then someone inserted wrong information (you should find him and teach hardly ).
If I correctly understand you it isn't very difficult to make by yourself.
GLE record G/L Entry
CustLE record Cust. Ledger Entry
GLE.SETRANGE("G/L Account No.",AccountNo);
//AcountNo - G/L Account you need
IF GLE.FIND('-') THEN
REPEAT
CustLE.RESET;
CustLE.SETRANGE("Document No.",GLE."Document No.");
IF CustLE.COUNT = 0 THEN
//print this document no. and what you need from GLE or CustLE
// cicle you can make on CustLE also
// and seek record in GLE
Message('This document was not found %1',GLE."Document No.")
UNTIL GLE.NEXT = 0;
Also you can make report instead of cicle in CU and print result there.
Thank you for trying, but I dont think you understand my problem.
Invoices / CreditMemos are easy to pinpoint to each customer.
But when I have made Currency adjustment on currencies other than DKK, that is postet as one amount in the G/L but on many customers.
That is one possible error-source, that I cant see to find a soloution to.
Comments
You mean it always happens to every customer, don't you?
If it does then you shoud debug thoroughly and find mistake in C/AL or in setting. If it's only one case then someone inserted wrong information (you should find him and teach hardly ).
Answer depends on question.
When I run a report, e.g. "Customer - Balance to Date" it sums up to a total, lets say 10.000.
When I look in the G/L Trial Balance it shows 10.080.
There is no direct posting on the G/L account.
Report ID 4 (at least in my localisation) :roll:
I need a report, which can tell me how much this custoner no. has "posted" on the G/L Receivables accont and compare it to the cust. ledger entry.
It was a hope, that someone had an idea of how to find the link, specially about the currency adjustments made.
Also you can make report instead of cicle in CU and print result there.
Invoices / CreditMemos are easy to pinpoint to each customer.
But when I have made Currency adjustment on currencies other than DKK, that is postet as one amount in the G/L but on many customers.
That is one possible error-source, that I cant see to find a soloution to.
I am facing the same problem .. did you find any solution regarding this issue? ..
Thanks in advance