Hi,
Same solution provided by Epicor
2024-09-30 22:36:24 -Serge Bosque
Hi Sanjeev,
These conversions are old. On my 2024.1 system, both 1350 and 1580 were last run at 10.2.300.
The message indicates that the conversions have already been run and will not run again, hence the error: Conversion program xxxxxxx has already been run.
If these conversions are preventing you from entering the ERP Main Menu ( meaning the conversion workbench keeps popping up and will not let you in all the way), you can use the following script in SQL to mark the conversions as Complete.
- Open MSSQL Man Studio
- Open a New Query window and paste the update script below.
This is set for conversion 1350. So you’ll also need to do it for 1580.
update ice.CnvProgs set ProgStatus='COMPLETE',ProgressPercent=100 where RunSequence=1350
update ice.CnvProgs set autorun = '0' where RunSequence = 1350
- Ensure you select the appropriate database from the DB name drop-down to the left of the [! Execute button].
- Execute the script by pressing the [! Execute button].
- If you have multiple conversions that were not completed, repeat using the script with other numbers as necessary.
- Once complete, open IIS Manager Console and Recycle the App Pool for the database appserver being worked with.
- Log back in
- If the Conversion Workbench reappears after the scripting was used while looking at the Conversion Workbench screen
- Go to the top menu and Select Actions> Run Pending conversions.
- Close and reopen your Client session.
- The ERP Main Menu should appear after that.