Skip to main content
Solved

Reconciling Received Not Invoiced Report to GL


Forum|alt.badge.img+8
  • Sidekick (Partner)
  • 32 replies

Hi Guys,

I having a trouble with reconciling  Received Not Invoiced Report to GL.

Does any of you know exactly which Posting Types should be considered  when matching Received Not Invoiced Report.

With some investigation I understand that M10, M14 and M18 should be considered. There are other types of postings like M189 and M196 posted to similar account. But I do not see these amounts related to Arrival charges in Received Not Invoiced Report.

 

Thanks

Best answer by LahiruD

Hi,

The query is attached here.

Still I am working on one scenario, where Purchase Order Direct receipt are shown with the Customer Order reference in Inventory transactions history. There fore those transactions are not grouped correctly as Man Supp Postings has PO reference.

Cheers

Lahiru

View original
Did this topic help you find an answer to your question?

16 replies

Forum|alt.badge.img+16
  • Hero (Customer)
  • 677 replies
  • May 12, 2020

I was struggling with reconciliation of this report multiple times, but I did not get satisfactory results for accounting services. Major issue was that Received Not Invoiced Report does not have cut-off date parameter, so it cannot produce picture at the end of accounting period - it shows current view instead, including not transferred transactions and preliminary posted invoices.

Finally, I prepared sql query comparing distribution accounting postings (only transferred to GL and with voucher date prior to cut-off date parameter) with invoice postings (taken from MAN_SUPP_INVOICE_POSTINGS, because only there I can find reference to purchase order receipt/stage payment/subcontract etc.). With this report I managed to provide “accurate” list of not invoiced receipts at period end, at least justifying accounting balance.

Detailed list of posting types to be included in such report depends on the scope of processes active (in mpccom_accounting look for M10/M14/M189 in case of inventory, M91 in case of non-inventory purchase, M200 for stage payments, from invoice postings take M18 and M91). And subcontracts are additional level of problem - SCV4 postings are tricky to get from subcontract module.

SQL query I prepared finally was too long to store as permanent quick report, I can share it as an example, but without any responsibility taken. I am rather sharing an idea here.


william.klotz
Superhero (Customer)
Forum|alt.badge.img+21
  • Superhero (Customer)
  • 479 replies
  • May 12, 2020

Hi Adam,

 

I would love to see your SQL query as we’ve struggled too with reconciling  Received Not Invoiced Report to GL.  I’ve created my own version of Received Not Invoiced Report to help accounting but maybe your SQL query could provide them a better solution.

 

Thank you,

William Klotz


Forum|alt.badge.img+16
  • Hero (Customer)
  • 677 replies
  • May 12, 2020

Hello,

File attached (*BCC) is sql query I created to reconcile with GL non-inventory purchase (company I am working for uses IFS version 7.5 still, and creates postings for non-inventory procurement).

In case of inventory purchase, M91/M200 posting controls should be replaced/extended by  M10, M14 and M189 (if arrival charges are used). You may in fact check in GL balance analysis, what posting types are directed to account you want to analyse, and on which voucher function group.

And of course, in case any code part value is used on GRNI account (like project or cost center) you may add it to grouping and to subquery columns. 

Report simply groups records from union of procurement and invoice postings and lists all non-zero cases. It relies on posted vouchers only and uses voucher date as criteria, in my case it perfectly matches GL balance. I hope you will find it useful, as a basis for further development. 

Please note subcontracts are not covered here.


william.klotz
Superhero (Customer)
Forum|alt.badge.img+21
  • Superhero (Customer)
  • 479 replies
  • May 12, 2020

Thank you,  I’ll review the query and see if it will help us.  William


Forum|alt.badge.img+8
  • Author
  • Sidekick (Partner)
  • 32 replies
  • May 13, 2020

Hi Adam,

Thanks for you quick response and the query.:relaxed:

I am also struggling with a Apps 7.5 customer.

By the way I checked in Apps 10, to get an understating of the standard report. As I understood, we can provide a date as a parameter and it works ok, even with the transactions with Date Applied modified.

Only issue I saw was, Arrival charges are not included in the  standard report.

 

Cheers

Lahiru


Forum|alt.badge.img+8
  • Author
  • Sidekick (Partner)
  • 32 replies
  • May 19, 2020

Hi Adam,

 

I was able to reconcile after few attempts. I did small changes in the query as some methods did not exists.

Thanks for you support

 

Cheers

Lahiru

 

 


Forum|alt.badge.img+16
  • Hero (Customer)
  • 677 replies
  • May 19, 2020

Hi, Lahiru,

You are welcome. 

You may want to share updated query here for others to use. 

I hope I could help. 

 


Forum|alt.badge.img+8
  • Author
  • Sidekick (Partner)
  • 32 replies
  • Answer
  • May 20, 2020

Hi,

The query is attached here.

Still I am working on one scenario, where Purchase Order Direct receipt are shown with the Customer Order reference in Inventory transactions history. There fore those transactions are not grouped correctly as Man Supp Postings has PO reference.

Cheers

Lahiru


Forum|alt.badge.img+9
  • Sidekick (Partner)
  • 87 replies
  • October 18, 2021
Adam Bereda wrote:

I was struggling with reconciliation of this report multiple times, but I did not get satisfactory results for accounting services. Major issue was that Received Not Invoiced Report does not have cut-off date parameter, so it cannot produce picture at the end of accounting period - it shows current view instead, including not transferred transactions and preliminary posted invoices.

Finally, I prepared sql query comparing distribution accounting postings (only transferred to GL and with voucher date prior to cut-off date parameter) with invoice postings (taken from MAN_SUPP_INVOICE_POSTINGS, because only there I can find reference to purchase order receipt/stage payment/subcontract etc.). With this report I managed to provide “accurate” list of not invoiced receipts at period end, at least justifying accounting balance.

Detailed list of posting types to be included in such report depends on the scope of processes active (in mpccom_accounting look for M10/M14/M189 in case of inventory, M91 in case of non-inventory purchase, M200 for stage payments, from invoice postings take M18 and M91). And subcontracts are additional level of problem - SCV4 postings are tricky to get from subcontract module.

SQL query I prepared finally was too long to store as permanent quick report, I can share it as an example, but without any responsibility taken. I am rather sharing an idea here.

@Adam Bereda , Could you kindly let me know Posting type M187 too consider to Received not yet invoiced report comparison  ?


Forum|alt.badge.img+16
  • Hero (Customer)
  • 677 replies
  • October 18, 2021

Hi, Theja

Yes: M10 from MPCCOM_Accounting is closed by M18 on the invoice, similarly M189 is closed by M187.

In general, idea is to fetch from  MPCCOM_Accounting and inv_accounting_row transactions on specific accounts, build a common reference for them (PO,  line, release, receipt) and list references with non-zero balances.


Forum|alt.badge.img+16
  • Hero (Customer)
  • 677 replies
  • October 18, 2021

And LahiruD shared the query in previous post, I think it’s working


Forum|alt.badge.img+9
  • Sidekick (Partner)
  • 87 replies
  • October 18, 2021

@Adam Bereda , Thanks a lot for the quick response.


DMTCCAN
Sidekick (Customer)
Forum|alt.badge.img+6
  • Sidekick (Customer)
  • 14 replies
  • April 4, 2025

Hello,

 

We have the type of issue with IFS Cloud, have you got an SQL script for cloud.

The one we picked from the conversationis not working.

 

Thak you

 

Christophe


Forum|alt.badge.img+16
  • Hero (Customer)
  • 677 replies
  • April 4, 2025
DMTCCAN wrote:

Hello,

 

We have the type of issue with IFS Cloud, have you got an SQL script for cloud.

The one we picked from the conversationis not working.

 

Thak you

 

Christophe

Hello,
Even in Cloud the design of accounting entries for procurement did not change significantly. 
If the query from Lahiru do not work, what is the issue? 

Can you tell me what are you buying, inventory parts or non-inventory items? 
How are your parts valuated? 


DMTCCAN
Sidekick (Customer)
Forum|alt.badge.img+6
  • Sidekick (Customer)
  • 14 replies
  • April 7, 2025

Hi Thank you for your reply !

I got the message “SQL Expression is wrong” when I am trying to save the quick report with the query from Lahiru.

Kind regards.

 

Christophe.

 

 

 


Forum|alt.badge.img+6
  • Hero (Partner)
  • 40 replies
  • April 7, 2025
DMTCCAN wrote:

Hi Thank you for your reply !

I got the message “SQL Expression is wrong” when I am trying to save the quick report with the query from Lahiru.

Kind regards.

 

Christophe.

 

 

 

I think query from ​@LahiruD does not specify application owner as prefix for table name:
e.g instead of MAN_SUPP_INVOICE_POSTINGS we should use IFSAPP.MAN_SUPP_INVOICE_POSTINGS, if IFSAPP is userid of installation owner.

similarly, appowner should be prefix of api function calls like  purchase_order_api..get_vendor_no.

Assuming that IFSAPP is an owner, attached is the updated SQL

 


Reply


Cookie policy

We use cookies to enhance and personalize your experience. If you accept you agree to our full cookie policy. Learn more about our cookies.

 
Cookie settings