Skip to main content
Solved

Export Scenario with Incremental - All Records not exporting all newly created and modified records

  • September 7, 2024
  • 3 replies
  • 133 views

Forum|alt.badge.img

I have an export scenario to export payments from the Payments and Applications screen.  Most of the time it works as intended but sometimes it just skips payments that have been made since it was last ran. We run this once a day exporting on average of 700 - 800 payments.  AR created a large CC payment the other day and applied it to several invoices and then released it. So the payment was created, modifed released and closed all between running the export one day and running it the next day. Several other payments created and closed the same day were also skipped.

These payments that are skipped aren’t prepared so they aren’t exported and so no errors.  The majority of payments that are missed are CC payments that are entered like this, created, applied, released and closed all at once but we have also had the issue with cash payments.

My export scenario uses a sql provider and exports directly to a table created specifically for this purpose.

I have checked the ARRegister table and ARAdjust table to see if there is any pattern to the payments that get left out and nothing caught my eye. Last modified screen varies between SO303000 and AR302000 as do the payments that export as they should.

Any ideas on what else to check or where else to look will be appreciated.

 

Best answer by kmckenzie

I was exporting from the Payments and Applications screen.  See attached image for source restrictions.  Pretty limited.  We are in the process of moving a new company onto Acumatica and are parallel processing so just starting to do data entry in Acumatica.  The majority of the exports were entered into the other system, imported in Acumatica and then exported into a table so that a program that relevant data from Acumatica can be imported into legacy ERP.  All of the data  from the legacy system imports in and exports out fine .   Data entered directly into Acumatica is spotty and random on exports even when we lock out the system. 

I guess that “Incremental - All Records” doesn’t mean what I thought that it should and there is very little info on Export Scenarios out there and even less when using SQL server providers.

So I did resort to creating a GI and exporting from there.  My numbers going out now are exactly as expected and if something messes up I can Prepare that data at anytime and Export again.  Using the Incremental - All Records functionality you pretty much get just once chance because after it has been run whatever time stamp is being used is, well ...used, and no records are returned.

So this post now is for information purposes in case anyone else has the same issues.

Another tip, if you are importing from SQL server you can use the functionality of some of the formulas but the best thing to do is create a view in SQL server and get your data in the form that Acumatica wants it and import from the views.  Exporting to and from SQL server is extremely quick and you don’t have the limitations that are present in Excel and using the API.  Don’t forget to use parallel processing!!

 

 

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

3 replies

chameera71
Varsity I
Forum|alt.badge.img+2
  • Varsity I
  • 56 replies
  • September 11, 2024

It sounds like the issue you're experiencing with missed payments during export could be related to timing, data locking, or system state inconsistencies in Acumatica. Since you’re using a SQL provider and exporting directly to a table, there are several things to check and consider to identify why these payments are skipped. Here are some areas to focus on:

1. Export Scenario Filtering Logic

Ensure the filtering logic in your export scenario is not inadvertently excluding certain records. Since payments created, applied, released, and closed all within a short period are being skipped, it could be that these records are in a state where they don't meet your filtering criteria at the moment the export runs.

  • Check if the filters used in your export scenario are too restrictive.
  • Pay special attention to how you're filtering based on status, last modified date, or any other fields used to determine which payments to export. For example, if you’re filtering based on LastModifiedDateTime, there could be a gap in the timestamp where certain payments are missed.
  • Ensure that you’re capturing payments in both open and closed states, especially for payments that go through multiple status changes rapidly.

2. Timing/Concurrency Issues

Since payments can be created, modified, released, and closed in a short time frame, it’s possible that the export runs at a point where the payment is not yet fully processed, which may cause it to be skipped.

  • Concurrency Issues: If the payment is still being processed (i.e., status changes are ongoing or data is still being written to the database), it might not yet meet the criteria for export, resulting in the export skipping it.
  • Consider adding a buffer period or using a timestamp cutoff in your export scenario to account for payments that were recently modified but not yet exported.
  • Check the timing of your export scenario. You may want to run the export after a set period once all relevant processes (payment release, closing, etc.) are fully completed.

3. Check Batch Jobs/Processing Times

Since you mentioned that the issue occurs more often with credit card payments, this could be related to how Acumatica processes credit card payments, which involve multiple steps (authorization, capture, etc.). Payments that go through rapid transitions from created to applied to released may not be fully processed in time for the export.

  • Ensure that background processing or batch jobs that finalize payments (like credit card processing) are fully completed before running the export.
  • Investigate if there’s any lag time between when a payment is marked as released/closed and when it becomes eligible for export.

4. Check Database Triggers or Workflows

Since you're exporting data directly into a table, ensure that there are no workflows or processes that update the ARRegister, ARAdjust, or related tables after the payment has been processed.

  • Check if triggers or scheduled workflows might be modifying the payment records post-processing, leading to some payments being skipped in the export run.

5. Revisit the SQL Query

Since your export scenario is using a SQL provider, double-check the SQL query that pulls the payments. Make sure the logic accounts for payments that go through fast transitions (e.g., created, modified, applied, released, closed) and doesn’t skip them unintentionally.

  • Check for transaction locking: If multiple processes are accessing the payment records simultaneously, there could be transaction locking in the database that causes the export scenario to skip certain records that are locked or being modified at the time.
  • Ensure that the SQL query isn't excluding records based on complex status changes or rapid state transitions.

6. Check Acumatica Event Logging

Enable Acumatica trace logging to see if there are any relevant system logs for skipped payments during the time the export runs. This might give you more insight into whether the payments were skipped due to system delays, locks, or some other issue.

7. Consider Transactional States and Logs

In scenarios where payments are processed quickly (like credit card payments), the transactional state might not be final when the export runs, especially if these payments are processed via an external payment gateway or batch job.

  • Investigate if there are any deferred processing states or pending statuses that might cause these payments to be skipped during export.
  • Consider adding a check in your SQL query to handle payments that may have rapid transitions between statuses.

8. Re-run the Export

If you're able to identify missed payments manually after the export runs, consider re-running the export with a different time range to catch any payments that were missed. This would help in cases where payments are processed after the export runs but before the next scheduled export.

Suggestions for Improvement:

  1. Extend the Time Window for Data Retrieval: Adjust the filter criteria in your export scenario to ensure that records created or modified just before the export runs are not missed. This could include setting a wider time window or ensuring that payments with a Closed status are included.

  2. Use Batch Processing or Scheduled Exports: If you are already running the export scenario manually, consider automating it with scheduled batch jobs, so it runs after business hours when all payments are processed.

  3. Add a Custom Status/Flag: If necessary, you can implement a custom flag or status field on payments to indicate that they’ve been successfully exported. This way, you can ensure that every payment gets exported once and only once.

By checking the timing, filtering logic, and ensuring that your SQL query accounts for different payment states, you should be able to identify and resolve why certain payments are being skipped.


Forum|alt.badge.img
  • Author
  • Jr Varsity III
  • 38 replies
  • Answer
  • September 11, 2024

I was exporting from the Payments and Applications screen.  See attached image for source restrictions.  Pretty limited.  We are in the process of moving a new company onto Acumatica and are parallel processing so just starting to do data entry in Acumatica.  The majority of the exports were entered into the other system, imported in Acumatica and then exported into a table so that a program that relevant data from Acumatica can be imported into legacy ERP.  All of the data  from the legacy system imports in and exports out fine .   Data entered directly into Acumatica is spotty and random on exports even when we lock out the system. 

I guess that “Incremental - All Records” doesn’t mean what I thought that it should and there is very little info on Export Scenarios out there and even less when using SQL server providers.

So I did resort to creating a GI and exporting from there.  My numbers going out now are exactly as expected and if something messes up I can Prepare that data at anytime and Export again.  Using the Incremental - All Records functionality you pretty much get just once chance because after it has been run whatever time stamp is being used is, well ...used, and no records are returned.

So this post now is for information purposes in case anyone else has the same issues.

Another tip, if you are importing from SQL server you can use the functionality of some of the formulas but the best thing to do is create a view in SQL server and get your data in the form that Acumatica wants it and import from the views.  Exporting to and from SQL server is extremely quick and you don’t have the limitations that are present in Excel and using the API.  Don’t forget to use parallel processing!!

 

 


Chris Hackett
Community Manager
Forum|alt.badge.img
  • Acumatica Community Manager
  • 2757 replies
  • September 11, 2024

Thank you for sharing your solution with the community @kmckenzie!


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