Postings open within the BAS Date range

Modified on Thu, 26 Feb at 4:59 AM

Affects

Clients attempting to create a BAS posting. 

Error

Warning: There are still postings open that are dated within the BAS date range. Any BAS applicable journals that these postings have created WILL be processed. 

 

image.png

Resolution

This message is purely a warning and you can continue to process the BAS with the postings open however you may wish to close off any postings. 

To stop this warning from appearing the first thing to do it check all areas of the system where there may be an open posting this includes but is not limited to

  • Debtors
  • Creditors
  • General Ledger Journals
  • Payroll 

If once you have checked all of these and can not see any postings open please create a Service Desk ticket and we can help to identify the posting/s in question. 

Considerations

Before closing open postings you may need to consider if it is appropriate for them to be closed. As mentioned above you do NOT need to close the postings in order to complete the BAS.

 

Advanced Notes:

Script to check for open postings

SELECT * FROM finance.GeneralLedgerPostingControl glpc WHERE glpc.PostingDate BETWEEN 'YYY-MM-DD' AND 'YYYY-MM-DD' AND  (  glpc.PostingCompleteFlag = 0  OR glpc.PostingModifiedFlag <> 0 ) AND glpc.PostingDeletedFlag = 0

 

Bug prior to V69.18 that may be relevant if posting is a PayUpdate see DSY-14509

Advanced script (do not run without 100% knowledge of what you are doing) to update posting completed flag

Begin tran          Update finance.GeneralLedgerPostingControl set PostingCompleteFlag = 1 Where PostingNumber = XXXX              Rollback 
Select * from finance.GeneralLedgerPostingControl where PostingNumber = XXXX

 

Was this article helpful?

That’s Great!

Thank you for your feedback

Sorry! We couldn't be helpful

Thank you for your feedback

Let us know how can we improve this article!

Select at least one of the reasons
CAPTCHA verification is required.

Feedback sent

We appreciate your effort and will try to fix the article