You are on page 1of 165

Release Notes 10.1.

500
Epicor 10.1.400 to 10.1.500
Disclaimer
This document is for informational purposes only and is subject to change without notice. This document and its
contents, including the viewpoints, dates and functional content expressed herein are believed to be accurate as of its
date of publication. However, Epicor Software Corporation makes no guarantee, representations or warranties with
regard to the enclosed information and specifically disclaims any applicable implied warranties, such as fitness for a
particular purpose, merchantability, satisfactory quality or reasonable skill and care. As each user of Epicor software is
likely to be unique in their requirements in the use of such software and their business processes, users of this document
are always advised to discuss the content of this document with their Epicor account manager. All information contained
herein is subject to change without notice and changes to this document since printing and other important information
about the software product are made or published in release notes, and you are urged to obtain the current release
notes for the software product. We welcome user comments and reserve the right to revise this publication and/or
make improvements or changes to the products or programs described in this publication at any time, without notice.
The usage of any Epicor software shall be pursuant to an Epicor end user license agreement and the performance of
any consulting services by Epicor personnel shall be pursuant to Epicor's standard services terms and conditions. Usage
of the solution(s) described in this document with other Epicor software or third party products may require the purchase
of licenses for such other products. Where any software is expressed to be compliant with local laws or requirements
in this document, such compliance is not a warranty and is based solely on Epicor's current understanding of such laws
and requirements. All laws and requirements are subject to varying interpretations as well as to change and accordingly
Epicor cannot guarantee that the software will be compliant and up to date with such changes. All statements of
platform and product compatibility in this document shall be considered individually in relation to the products referred
to in the relevant statement, i.e., where any Epicor software is stated to be compatible with one product and also
stated to be compatible with another product, it should not be interpreted that such Epicor software is compatible
with both of the products running at the same time on the same platform or environment. Additionally platform or
product compatibility may require the application of Epicor or third-party updates, patches and/or service packs and
Epicor has no responsibility for compatibility issues which may be caused by updates, patches and/or service packs
released by third parties after the date of publication of this document. Epicor® is a registered trademark and/or
trademark of Epicor Software Corporation in the United States, certain other countries and/or the EU. All other
trademarks mentioned are the property of their respective owners. Copyright © Epicor Software Corporation 2016.
All rights reserved. No part of this publication may be reproduced in any form without the prior written consent of
Epicor Software Corporation.

Epicor 10.1.400 to 10.1.500


Revision: November 14, 2016 12:04 p.m.
Total pages: 14
sys.ditaval
Release Notes 10.1.500 Contents

Contents
Software Interface Changes..................................................................................................4
Public Method Changes - 10.1.400.0 to 10.1.400.1.........................................................................................4
User Interface (EpiGuid) - 10.1.400.10 to 10.1.400.11.....................................................................................5
User Interface (EpiGuid) - 10.1.400.14 to 10.1.400.15.....................................................................................6
Posting Rule Changes.............................................................................................................7
Standard and Extended - 10.1.400 to 10.1.500...............................................................................................7
AP Invoice.................................................................................................................................................7
AP Payment..............................................................................................................................................7
AP Void Payment......................................................................................................................................7
Apply Credit Memo..................................................................................................................................8
AR PI Payment..........................................................................................................................................8
AR PI Void................................................................................................................................................8
Bank Reconciliation...................................................................................................................................8
COS and WIP............................................................................................................................................8
Reverse Cash Receipt................................................................................................................................9
Void Payroll Check....................................................................................................................................9
CSF - 10.1.400 to 10.1.500.............................................................................................................................9
China - AP Payment..................................................................................................................................9
Germany - Reverse Cash Receipt...............................................................................................................9
Peru - AP Payment, AR PI Payment..........................................................................................................10
Change List by Release.........................................................................................................11
Change List - Excel Spreadsheet.....................................................................................................................11
Change List - PDF File.....................................................................................................................................13

Epicor 10.1.400 to 10.1.500 3


Software Interface Changes Release Notes 10.1.500

Software Interface Changes

Use this section to review any software interface changes that occurred between the Epicor ERP 10.1.400 to
10.1.500 application releases. Software interface changes can include the following types: User Interface (EpiGuid),
Public Method, Schema.
The changes listed below are listed by release version. Use the Release Upgrade Guide (10.1.500) for instructions
on how to perform any necessary updates to your Epicor ERP application.

Public Method Changes - 10.1.400.0 to 10.1.400.1

Use this section to review the updates to public method changes that occurred from Epicor ERP 10.1.400 to
10.1.400.1 These changes are important if you have custom code for BPM method directives, customizations
linked to public method signatures, or other integrations.
• BankBatchTableset (assembly Erp.Contracts.BO.BankBatch.dll) now has two additional tables which makes
it possible to separate documents included in a batch from other documents.
Removed objects are italic, new objects are bold.

GetRows

Old BankBatchTableset GetRows(string whereClauseBankBatch, int pageSize, int absolutePage, out bool
morePages)
New BankBatchTableset GetRows(string whereClauseBankBatch, string whereClauseCashHeadSel,
string whereClauseCheckHedSel, int pageSize, int absolutePage, out bool morePages)

Two "where clause" parameters were added to the new tableset tables. In most cases these parameters are left
blank since the application loads documents from the batch to the corresponding table automatically.

RemovePaymentsFromBatch

Old void RemovePaymentsFromBatch(string bankAcctID, Guid bankBatchSysRowID, ref


CheckHedSelTableset ds)
New void RemovePaymentsFromBatch(string bankAcctID, Guid bankBatchSysRowID, ref
BankBatchTableset ds)

Since all documents included into the batch are now available in separate tables inside BankBatchTableset, the
updated method now accepts specific BankBatchTableset object with documents from the batch instead of
CheckHedSelTableset object.

RemoveReceiptsFromBatch

Old void RemoveReceiptsFromBatch(string bankAcctID, Guid bankBatchSysRowID, ref CashHeadSelTableset


ds)
New void RemoveReceiptsFromBatch(string bankAcctID, Guid bankBatchSysRowID, ref BankBatchTableset
ds)

4 Epicor 10.1.400 to 10.1.500


Release Notes 10.1.500 Software Interface Changes

Since all documents included into the batch are now available in separate tables inside BankBatchTableset, the
updated method now accepts specific BankBatchTableset object with documents from the batch instead of
CashHeadSelTableset object.

MovePaymentsToAnotherBatch

Old void MovePaymentsToAnotherBatch(string bankAcctID, Guid oldBankBatchSysRowID, Guid


newBankBatchSysRowID, ref CheckHedSelTableset ds, string programName)
New void MovePaymentsToAnotherBatch(string bankAcctID, Guid oldBankBatchSysRowID, Guid
newBankBatchSysRowID, ref BankBatchTableset ds, string programName)

Since all documents included into the batch are now available in separate tables inside BankBatchTableset, the
updated method now accepts specific BankBatchTableset object with documents from the batch instead of
CheckHedSelTableset object.

MoveReceiptsToAnotherBatch

Old void MoveReceiptsToAnotherBatch(string bankAcctID, Guid oldBankBatchSysRowID, Guid


newBankBatchSysRowID, ref CashHeadSelTableset ds, string ipProgramName
New void MoveReceiptsToAnotherBatch(string bankAcctID, Guid oldBankBatchSysRowID, Guid
newBankBatchSysRowID, ref BankBatchTableset ds, string ipProgramName)

Since all documents included into the batch are now available in separate tables inside BankBatchTableset, the
updated method now accepts specific BankBatchTableset object with documents from the batch instead of
CashHeadSelTableset object.

User Interface (EpiGuid) - 10.1.400.10 to 10.1.400.11

Use this section to review the User Interface (EpiGuid) Changes to Bank Statement Processing that occurred from
Epicor ERP 10.1.400.10 to 10.1.400.11.
Changes include:
• EpiNumericEditor controls (Holding Bank Amount, Amount, Unallocated Amount) on Statement Workbench
> Detail tab changed for EpiCurrencyEditor controls to make the Amounts display the correct number of
decimals.
• GetExtendedProperties method added to make EpiUltraGrid controls take into account Currency decimals.
StatementLineDetail panel control substitutes:

Old New
EpiNumericEditor neAmount EpiCurrencyEditor ceAmount
EpiNumericEditor neUnAllocAmt EpiCurrencyEditor ceUnAllocAmt
EpiNumericEditor txtTotalCharges EpiCurrencyEditor ceTotalCharges
EpiNumericEditor txtOrigAmt EpiCurrencyEditor ceOrigAmt

TransactionsMatchPanel panel control substitute:

Old New
EpiNumericEditor neVariance EpiCurrencyEditor ceVariance

Epicor 10.1.400 to 10.1.500 5


Software Interface Changes Release Notes 10.1.500

TransactionsMatchManualPanel panel control substitute:

Old New
EpiNumericEditor neVariance EpiCurrencyEditor ceVariance

User Interface (EpiGuid) - 10.1.400.14 to 10.1.400.15

The following user interface (EpiGuid) change to CSF Mexico occurred from Epicor ERP 10.1.400.14 to 10.1.400.15.
This change only applies if you have CSF Mexico installed and Payment Method Entry customized.
Changes include:
• On Payment Method Entry form, the EpiTextBox control "txtMXSATCode" is replaced with the EpiCombo
control "cboSATCode" to support AR Electronic Invoice changes for SAT catalog.

6 Epicor 10.1.400 to 10.1.500


Release Notes 10.1.500 Posting Rule Changes

Posting Rule Changes

Use this section to review the posting rule changes that occurred between the Epicor ERP 10.1.400 to 10.1.500
application releases. These changes are important if you have customized your Standard or Extended posting
rules, or if you use Country Specific Functionality (CSF) and have customized your posting rules.
The posting rule changes are listed by transaction type and include the impact (Rule, Function, Virtual Business
Document (VBD) structure), Change Description, and SCR (Software Change Request) number.

Standard and Extended - 10.1.400 to 10.1.500

If you have customized your Standard or Extended posting rules, review the following posting rule changes that
were made from Epicor ERP 10.1.400 to 10.1.500. Based on the changes, make any required updates to your
customized posting rules.

AP Invoice
Rule, Function or VBD Impact Change Description SCR
Rule 'Post Tax Amount to AP/AR Tax Accrual Fixed to post Debit to AP Tax Contra and Credit to AP 184771
Account' Tax Accrual for Self-assessment taxes.

AP Payment
Rule, Function or VBD Impact Change Description SCR
Rule 'Post Invoice Tax Discount Adjustment Fixed Discount Tax Adjustment Account determination 178679
Amount to Tax Account' for Withholding taxes
Rule 'Post Payment Taxes' Fixed to post Debit to AP Tax Contra and Credit to AP 184771
Tax Accrual for Self-assessment taxes.

AP Void Payment
Rule, Function or VBD Impact Change Description SCR
Added new codes to VBD structure: Bank Added to support correct voiding of payments, which 174417
Account Currency, and Payment Total and had rounding due to currency conversion between
Rounding Amounts payment and bank currency
Rule 'Post Check Amount to Bank Cash/Pending Rule is renamed to 'Post Payment Total to Bank 174417
Account' Cash/Pending Account' and now supports correct
voiding of payment total in all reporting currencies for
case when payment currency and bank currency are
different
Rule 'Post Rounding Amount' Reverses Rounding which had rounding due to currency 174417
conversion between payment and bank currency

Epicor 10.1.400 to 10.1.500 7


Posting Rule Changes Release Notes 10.1.500

Rule, Function or VBD Impact Change Description SCR


Rule 'Post Payment Total to Bank Cash/Pending Fixed AP Void Payment posting rule for void payments 175918
Account' created in Bank Statement Processing.

Apply Credit Memo


Rule, Function or VBD Impact Change Description SCR
Rule 'Book Invoice Tax' Handling amount signs when posting Self-assessment 182514
taxes in Apply Credit Memo transaction is corrected.

AR PI Payment
Rule, Function or VBD Impact Change Description SCR
Rule 'Book Unapplied PI Total' Set Reference GL Control Outgoing type = AR Invoice, 179786
Credit Context = Receivables to support reversal of
partially paid PI on account

AR PI Void
Rule, Function or VBD Impact Change Description SCR
Rule 'Reverse Unapplied PI' Fixed Debit Account to come from AR 179786
Invoice.Receivables to support reversal of partially paid
PI on account

Bank Reconciliation
Rule, Function or VBD Impact Change Description SCR
Rule 'AR PI - Book Unapplied Cash' Rule is removed since it is obsolete 179786
Rule 'Statement Line - Book Currency Gain/Loss' Default value for Validation Rule 'Amount is negative 184227
(not for red storno)'set to "Autocorrect with warning"
to support matching of Bank statement and cash
receipt are in different currencies with Gain/Loss
Rule 'Statement Line - Post Variance Amount' Default value for Validation Rule 'Amount is negative 184227
(not for red storno)'set to "Autocorrect with warning"
to support matching of Bank statement and cash
receipt are in different currencies with Gain/Loss

COS and WIP


Rule, Function or VBD Impact Change Description SCR
Rule 'ADJ-CST: Post Extended Cost to Purchase Account hierarchy is restored, ADJ-CST transaction is 177381
Variance and Inventory Accounts' posting to inventory adjustment account
Rule 'DMR-SUB: Post Extended Cost to WIP and 181069
Retrieving WIP Subcontract account is fixed for
DMR Accounts'
DMR-SUB transactions.

8 Epicor 10.1.400 to 10.1.500


Release Notes 10.1.500 Posting Rule Changes

Rule, Function or VBD Impact Change Description SCR


The rule that moves Extended Cost from DMR to
Subcontract operation (DMR-SUB transaction) will now
post the cost amount to WIP Subcontract account
(instead of incorrectly used WIP Material account).

Reverse Cash Receipt


Rule, Function or VBD Impact Change Description SCR
All posting rules 181157
Added logic to take amounts from VBD in case when
no amounts are found in Reference GL controls.
This change is required to correctly process the data
converted from pre-E9 versions.

Void Payroll Check


Rule, Function or VBD Impact Change Description SCR
Added new codes to VBD structure: Payroll Void date is added to the structure 178549
Check--Details--Voided Date
Rule 'Setup GL Journal properties' Now the void date is considered and saved in the 178549
journal at the time of voiding a check

CSF - 10.1.400 to 10.1.500

If you have customized your CSF posting rules, review the following posting rule changes that were made from
Epicor ERP 10.1.400 to 10.1.500. Based on the changes, make any required updates to your customized posting
rules.

China - AP Payment
Rule, Function or VBD Impact Change Description SCR
Rule 'Post Invoice Tax Discount Adjustment Fixed Discount Tax Adjustment Account determination 180518
Amount to Tax Account' for Withholding taxes

Germany - Reverse Cash Receipt


Rule, Function or VBD Impact Change Description SCR
Rule 'Reverse Currency Gain' Set validation 'Transaction amount is zero for currency 174605
account' to "ignore" to allow for correct voiding of
gain/loss.

Epicor 10.1.400 to 10.1.500 9


Posting Rule Changes Release Notes 10.1.500

Rule, Function or VBD Impact Change Description SCR


Rule 'Reverse Currency Loss' Set validation 'Transaction amount is zero for currency 174605
account' to "ignore" to allow for correct voiding of
gain/loss.
Rule 'Reverse Unapplied Cash' Added support of reversals of newly created cash 174606
receipt with on account amount.

Peru - AP Payment, AR PI Payment


Rule, Function or VBD Impact Change Description SCR
Rule 'Post Invoice Tax Discount Adjustment Fixed Discount Tax Adjustment Account determination 180511
Amount to Tax Account' for Withholding taxes

10 Epicor 10.1.400 to 10.1.500


Release Notes 10.1.500 Change List by Release

Change List by Release

Use this section to review the resolved issues and enhancements that occurred since the last Epicor ERP 10.1.500
application release. Each Epicor ERP application update is cumulative. For example, the Epicor 10.1.500.7 update
includes resolved issues and enhancements from versions 10.1.500 to 10.1.500.7.
The change list records are sorted by Update (500.x), Functional Area, Module, and Software Change Request
(SCR) number. Each record includes a type and summary description.
Note As of 10.1.500, the change list is available in two formats:
• Excel spreadsheet: An attached file can be selected and opened in Microsoft Excel. The spreadsheet
is divided into three tabs: Resolved Issues, Application Enhancements, and Performance Enhancements.
You can filter, sort and format the spreadsheet.
• PDF File: An embedded PDF file of the Excel spreadsheet can be viewed and printed. For improved
viewing, the PDF file is displayed in a landscape layout.

Use the steps below to open the Change List as an Excel spreadsheet or PDF File.

Change List - Excel Spreadsheet


To open the spreadsheet file, select the Attachments (paperclip) icon. Your Attachments icon may look similar
to one of the following:

The change list file attachment is listed. You can double-click on the file to open it in Microsoft Excel or you can
right-click on the file and select to Save it to a folder on your local machine.
After opening the spreadsheet file, you can filter, sort, or format the list using standard Microsoft Excel functionality.
Below are a few examples for filtering and sorting the list.

Epicor 10.1.400 to 10.1.500 11


Change List by Release Release Notes 10.1.500

Filter the List. For example, if you want to filter the list for only 10.1.500.7, select the drop-down arrow next
to the Update column header and select the 10.1.500.7 version. Your dialog may look similar to the following:

Sort the List. For example, if you want to sort the list by a series of specific columns, click the Sort button and
enter your sorting criteria. Your dialog may look similar to the following:

12 Epicor 10.1.400 to 10.1.500


Release Notes 10.1.500 Change List by Release

Change List - PDF File


To view the change list as a separate PDF file, scroll to the next pages. For improved viewing, the PDF file is
displayed in a landscape layout.

Epicor 10.1.400 to 10.1.500 13


Epicor ERP 10.1 ‐ Change List
10.1.400 to 10.1.500

Disclaimer
This document is for informational purposes only and is subject to change without notice. This document and its
contents, including the viewpoints, dates and functional content expressed herein are believed to be accurate as of its
date of publication. However, Epicor Software Corporation makes no guarantee, representations or warranties with
regard to the enclosed information and specifically disclaims any applicable implied warranties, such as fitness for a
particular purpose, merchantability, satisfactory quality or reasonable skill and care. As each user of Epicor software is
likely to be unique in their requirements in the use of such software and their business processes, users of this document
are always advised to discuss the content of this document with their Epicor account manager. All information contained
herein is subject to change without notice and changes to this document since printing and other important information
about the software product are made or published in release notes, and you are urged to obtain the current release
notes for the software product. We welcome user comments and reserve the right to revise this publication and/or
make improvements or changes to the products or programs described in this publication at any time, without notice.
The usage of any Epicor software shall be pursuant to an Epicor end user license agreement and the performance of
any consulting services by Epicor personnel shall be pursuant to Epicor's standard services terms and conditions. Usage
of the solution(s) described in this document with other Epicor software or third party products may require the purchase
of licenses for such other products. Where any software is expressed to be compliant with local laws or requirements
in this document, such compliance is not a warranty and is based solely on Epicor's current understanding of such laws
and requirements. All laws and requirements are subject to varying interpretations as well as to change and accordingly
Epicor cannot guarantee that the software will be compliant and up to date with such changes. All statements of
platform and product compatibility in this document shall be considered individually in relation to the products referred
to in the relevant statement, i.e., where any Epicor software is stated to be compatible with one product and also
stated to be compatible with another product, it should not be interpreted that such Epicor software is compatible
with both of the products running at the same time on the same platform or environment. Additionally platform or
product compatibility may require the application of Epicor or third‐party updates, patches and/or service packs and
Epicor has no responsibility for compatibility issues which may be caused by updates, patches and/or service packs
released by third parties after the date of publication of this document. Epicor® is a registered trademark and/or
trademark of Epicor Software Corporation in the United States, certain other countries and/or the EU. All other
trademarks mentioned are the property of their respective owners. Copyright © Epicor Software Corporation 2016.
All rights reserved. No part of this publication may be reproduced in any form without the prior written consent of
Epicor Software Corporation.
Epicor 10.1.500
Revision: November 2016
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Sales Order Shipment Status ‐ Incorrect ShipTo is displayed when not using default 
10.1.500 Executive Management Executive Dashboard 71101 Application ShipTo
10.1.500 Executive Management Executive Dashboard 83286 Application Part Where Used ‐ Reference designators are not filtered correctly
Plant Performance ‐ zSVPlantPerformance BAQ displays error because format for 
10.1.500 Executive Management Executive Dashboard 169973 Application calculated field "EffPerc" is insufficient
10.1.500 Executive Management Executive Dashboard 178239 Application Sales Order Backlog Status ‐ Open Value is not calculated properly
Sales Order Backlog Status ‐ OpenQty value displayed without applying UOM 
10.1.500 Executive Management Executive Dashboard 178663 Application Conversion
Invoice Tracker AP ‐ Invoice Tracker is not refreshed when new record is selected in 
10.1.500 Financial Management Accounts Payable 84072 Application Supplier Tracker
10.1.500 Financial Management Accounts Payable 91735 Application Aged Payables ‐ PO reference is not displayed for DMR debit memos
Invoice Entry AP ‐ Group > Detail displays amounts without sign or conversion to the 
10.1.500 Financial Management Accounts Payable 93049 Application base currency
10.1.500 Financial Management Accounts Payable 103436 Application Logged invoice Entry ‐ Cannot delete group if GroupID was used before
10.1.500 Financial Management Accounts Payable 106524 Application Invoice Entry AP ‐ Central Payment check box is not selected for DMR debit memo
Payment Entry ‐ Total AP Amount difference of 0.01 after changing payment 
10.1.500 Financial Management Accounts Payable 124032 Application exchange rate (Also fixed in 10.1.400.x)
10.1.500 Financial Management Accounts Payable 124947 Application Payment Instrument Status ‐ Validation error is displayed when Status is changed
Void Payment Entry ‐ Legal Number not voided after Cancelling Transaction in 
10.1.500 Financial Management Accounts Payable 134641 Application Review Journal
Customer Tracker ‐ Unknown is displayed as description and the amount is with a 
10.1.500 Financial Management Accounts Payable 153775 Application negative symbol, when the transaction is an adjustment (Also fixed in 10.1.400.x)
10.1.500 Financial Management Accounts Payable 159051 Application Electronic Interface ‐ EWA ‐ The program is not available in EWA
10.1.500 Financial Management Accounts Payable 159056 Application AP Letter of Credit Closing Process (EWA) ‐ Supplier button triggers no action in EWA
10.1.500 Financial Management Accounts Payable 161468 Application Payment Instrument Payable ‐ Multiple interface issues
10.1.500 Financial Management Accounts Payable 161473 Application Payment Instrument Status ‐ Multiple interface issues
10.1.500 Financial Management Accounts Payable 161494 Application Payment Instrument Tracker AP ‐ Multiple interface issues
Invoice Entry AP ‐ Transaction does not balance for Intercompany Tax, due to an 
10.1.500 Financial Management Accounts Payable 165780 Application incorrect update of non‐deductible tax
Payment Instrument Receivable ‐ (EWA) Cannot generate or void Legal Numbers, 
10.1.500 Financial Management Accounts Payable 170901 Application option is not active
Payment Instrument Payable ‐ Balance field displays New balance instead of original 
10.1.500 Financial Management Accounts Payable 172393 Application Balance
Payment Instrument Write Off ‐ It is possible to move PI to Settled stage, even when 
10.1.500 Financial Management Accounts Payable 172452 Application previous stage was not posted
10.1.500 Financial Management Accounts Payable 173340 Application Adjustment AP ‐ Unable to do an adjustment to a Debit Memo, error is displayed
10.1.500 Financial Management Accounts Payable 173415 Application Payment Tracker ‐ Bank/Remit To information is not displayed
Electronic Interface ‐ When using the List tab to create a new record, an error 
10.1.500 Financial Management Accounts Payable 174062 Application message is displayed

Page 2
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Payment Entry ‐ Incorrect tax calculation for manual negative taxes when doing 
10.1.500 Financial Management Accounts Payable 174445 Application partial payment
Financial Management Accounts Payable 174942 Application Payment Entry ‐ Payment Amount does not revert to system amount when Enter 
10.1.500 Payment Total is unchecked
Invoice Entry AP ‐ ADJ‐CST Transaction is calculating incorrect amount causing 
10.1.500 Financial Management Accounts Payable 175420 Application incorrect inventory acct balance
10.1.500 Financial Management Accounts Payable 175431 Application Payment Entry ‐ Invoice payment tax generates an out of balance transaction
10.1.500 Financial Management Accounts Payable 175452 Application Payment Instrument Payable ‐ Transaction Dates on Group and PI can be blank
Invoice Entry AP ‐ ADJ‐MTL transaction is not created after performing late cost in 
10.1.500 Financial Management Accounts Payable 176539 Application Job material for fully issued transaction
Invoice Entry AP ‐ Duplicate void logged invoice transactions posted when posting an 
10.1.500 Financial Management Accounts Payable 178266 Application overridden logged invoice with issues (Also fixed in 10.1.400.x)
Payment Instrument Update ‐ Using 2 PI with same ID makes 1 non‐selectable (Also 
10.1.500 Financial Management Accounts Payable 178323 Application fixed in 10.1.400.x)
Tax Results ‐ When Sales Tax is marked as Round Down, the manual Tax records 
10.1.500 Financial Management Accounts Payable 178324 Application results are not rounded correctly
10.1.500 Financial Management Accounts Payable 178530 Application Tax Box Report ‐ When Summary Only is selected, report ignores the currency
Invoice Entry AP ‐ Attachments added at Logged Invoice Entry do not display in AP 
10.1.500 Financial Management Accounts Payable 178630 Application Invoice entry or tracker
10.1.500 Financial Management Accounts Payable 178810 Application Payment Entry ‐ Checks are generate by invoices instead of supplier
10.1.500 Financial Management Accounts Payable 179015 Application Invoice Entry AP ‐ Bank Remit Info displays incorrectly on AP Invoice Header
Invoice Entry AP ‐ Tax line auto‐populated even though invoice date is entered 
10.1.500 Financial Management Accounts Payable 179113 Application earlier than tax rate effective date
Tax Box Report ‐ Summary report does not print Module when Amount Type is Tax 
10.1.500 Financial Management Accounts Payable 179467 Application Amount and Box Sign is +
AP Invoice Edit List ‐ Self Assed Tax amount is not printed for invoice currency <> 
10.1.500 Financial Management Accounts Payable 179885 Application base currency
Invoice Entry AP ‐ Incorrect Rate Type used when set differently from Purchase and 
10.1.500 Financial Management Accounts Payable 180199 Application Expenditure in Company Config
Payment Entry ‐ Fixed discount without discount date does not bring the discount 
10.1.500 Financial Management Accounts Payable 180535 Application when paying
Payment Entry ‐ AP process Payments form ‐ Bank export file path gets removed 
10.1.500 Financial Management Accounts Payable 181245 Application once you change the name of the file
Payment Entry ‐ Selection window not calculating the candidates and the remaining 
10.1.500 Financial Management Accounts Payable 182044 Application amount
Payment Instrument Payable ‐ System displays an error when trying to calculate 
10.1.500 Financial Management Accounts Payable 182110 Application more than 1 AP invoices to same Payment Instrument (Also fixed in 10.1.400.x)
10.1.500 Financial Management Accounts Payable 182345 Application Payment Instrument Payable ‐ Tree view collapses when deleting allocated invoices

Page 3
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Purchase List Report ‐ Unable to launch form; Epicor 10 stops working with the 
10.1.500 Financial Management Accounts Payable 182350 Application message: Epicor has stopped working
AP Letter Of Credit Report ‐ Filter Supplier list row is disabled on New Toolbar 
10.1.500 Financial Management Accounts Payable 182632 Application button click
Invoice Entry AP ‐ Expense Invoice amounts are generated with the exchange rate 
10.1.500 Financial Management Accounts Payable 183023 Application from the Expense Date
Payment Entry ‐ Error message when overriding check number after system 
10.1.500 Financial Management Accounts Payable 183209 Application considering payments not in the check
AP Invoice Balance Report ‐ Incorrectly calculating Closing Credit and take as Debit 
10.1.500 Financial Management Accounts Payable 183440 Application the Revaluation amounts
AP Invoice Balance Report ‐ Calculates incorrectly the Closing Credit and take as 
10.1.500 Financial Management Accounts Payable 183440 Application Debit the Revaluation amounts
Invoice Entry AP ‐ Due Date not set on AP Invoice Header save according to Terms 
10.1.500 Financial Management Accounts Payable 184010 Application Due Number of Days
10.1.500 Financial Management Accounts Payable 184420 Application Payment Entry ‐ Edit list prints blank pages when selecting A4 page
Financial Management Accounts Payable 184498 Application Payment InstrumentStatus ‐ Impossible to change status if legal number is assigned 
10.1.500 to PI Payables
10.1.500 Financial Management Accounts Payable 184629 Application Open Invoice Load AP ‐ Having blank terms code, system allows saving the invoice
AP Invoice Balance Report  ‐ Report does not work when there is a debit memo 
10.1.500 Financial Management Accounts Payable 184703 Application involved
Invoice Entry AP ‐ Invoice with self‐assessment tax is debiting Accrual and crediting 
10.1.500 Financial Management Accounts Payable 184771 Application Contra
Payment Instrument Write Off ‐ Unnecessary UR is created for On‐Account Payment 
10.1.500 Financial Management Accounts Payable 185165 Application Instruments (Also fixed in 10.1.400.x)
Payment Entry ‐ AP Payment Entry does not reduce the invoice balance of an 
10.1.500 Financial Management Accounts Payable 185341 Application overflowed check run
Received but not Invoiced ‐ The Report is not grouping the PO from the same 
10.1.500 Financial Management Accounts Payable 185569 Application Supplier
1099 Processing ‐ Conversion Program cvap0042 (9010) runs for all companies with 
10.1.500 Financial Management Accounts Payable 186239 Application CSF US
Invoice Entry AP ‐ Incorrect Unit Cost for Drop Shipment receipt line when using a 
10.1.500 Financial Management Accounts Payable 186423 Application Cost Per different than /1
Payment Tracker ‐ Cleared Date shows Bank Statement Processing Apply Date 
10.1.500 Financial Management Accounts Payable 187616 Application instead of the Clear Date assigned to the line
Tax Reconciliation Report ‐ Incorrect reference on Legal/Doc Number for Invoice 
10.1.500 Financial Management Accounts Payable 188617 Application Payment and Apply Debit Memo transactions
Payment Entry ‐ Unable to enter bank account details in Payment Entry for 
10.1.500 Financial Management Accounts Payable 189390 Application electronic payment in Bank/Remit tab
10.1.500 Financial Management Accounts Receivable 64802 Application Invoice Entry AR ‐ Packing Slip Browse displays bill‐to customer in Sold To column

Page 4
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Payment Instrument Receivable ‐ Unable to update Header detail with Unapplied 
10.1.500 Financial Management Accounts Receivable 145595 Application amount of zero
AR Invoice Form ‐ Discount amount is printed as positive amount and discount label 
10.1.500 Financial Management Accounts Receivable 150817 Application has % sign
10.1.500 Financial Management Accounts Receivable 153879 Application Invoice Entry AR ‐ Edit list does not process a zero value invoice
Payment Instrument Status Change ‐ Application Error message is displayed when 
10.1.500 Financial Management Accounts Receivable 155425 Application Bank Account is changed
Payment Instrument Status Change ‐ No post process is made if after select the PI 
10.1.500 Financial Management Accounts Receivable 156760 Application the target status is changed
Payment Instrument Tracker AR ‐ GL Transaction description is displayed empty for a 
10.1.500 Financial Management Accounts Receivable 156820 Application Cancellation of a PI
Financial Management Accounts Receivable 157463 Application Cash Receipt Entry ‐ Invoice balance becomes negative in base currency when it is 
10.1.500 positive in doc currency
AR Letter of Credit Closing Process (EWA) ‐ Customer button triggers no action in 
10.1.500 Financial Management Accounts Receivable 158978 Application EWA
10.1.500 Financial Management Accounts Receivable 160594 Application Payment Instrument Receivable (EWA) ‐ Payment instrument Type is not filtered
10.1.500 Financial Management Accounts Receivable 161463 Application Payment Instrument Receivable ‐ Multiple interface issues
10.1.500 Financial Management Accounts Receivable 161483 Application Payment Instrument Update ‐ Multiple interface issues
Payment Instrument Status Change ‐ Error message appears when selecting 
10.1.500 Financial Management Accounts Receivable 162734 Application Payment Instrument: A valid group is required
Financial Management Accounts Receivable 165285 Application AR Invoice Balance Report ‐ When filter is made by PI Option then only UR (PI) 
10.1.500 displays but not PI and PI applied to invoice
Financial Management Accounts Receivable 165676 Application Invoice Entry AR ‐ Tax value is added to remaining deposit amount in shipment 
10.1.500 invoice when using Tax Shipment Net movement
Sales Analysis ‐ The Inv Date column is not large enough to accommodate a date in 
10.1.500 Financial Management Accounts Receivable 165708 Application the dd/mm/yyyy format
Payment Instrument Status Change ‐ Saving after trying to delete line using 
10.1.500 Financial Management Accounts Receivable 167074 Application keyboard displays an error
Intrastat ‐ Remove 'Block Zero Weight" from Company Configuration, and use only 
10.1.500 Financial Management Accounts Receivable 168417 Application "Weight Required" in HS Commodity code to validate weight
Process Finance/Late Charge ‐ Unable to run two process at the same time, error 
10.1.500 Financial Management Accounts Receivable 170625 Application validation is displayed
10.1.500 Financial Management Accounts Receivable 171002 Application Payment Instrument Status Change ‐ Several Issues changing the Status
Payment Instrument Status Change ‐ Legal Numbers are not voided after not posting 
10.1.500 Financial Management Accounts Receivable 172116 Application the status change
Payment Instrument Receivable ‐ Group should not be deleted, if there are 
10.1.500 Financial Management Accounts Receivable 172519 Application unposted payment instruments
Payment Instrument Status Change ‐ When canceling, the header of the ARPI is not 
10.1.500 Financial Management Accounts Receivable 172524 Application updated to cancel

Page 5
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Payment Instrument Status Change ‐ Voiding ARPI with on Account Balance is sent 
10.1.500 Financial Management Accounts Receivable 172547 Application to Review Journal
Cash Receipt Entry ‐ Misc Payment does not recalculate Taxes for the Tax Liability 
10.1.500 Financial Management Accounts Receivable 173675 Application selected
10.1.500 Financial Management Accounts Receivable 173808 Application Payment Instrument Receivable ‐ Several issues found
Sales List Report ‐ Ribbon Menu interface is not displayed correct for Print Sales List 
10.1.500 Financial Management Accounts Receivable 174577 Application form
Invoice Entry AR ‐ Credit Memo Line with Product Tax Category, errors when clicking 
10.1.500 Financial Management Accounts Receivable 174662 Application Get Default button
10.1.500 Financial Management Accounts Receivable 174797 Application Cash Receipt Entry ‐ Combined fix for general performance of PE and Cash Receipt
10.1.500 Financial Management Accounts Receivable 174888 Application Invoice Entry AR ‐ When posting Payment Instrument, PI Type is changed
Cash Receipt Entry ‐ The Exchange Rate field is disabled when modifying Rate or 
10.1.500 Financial Management Accounts Receivable 174962 Application change tab
10.1.500 Financial Management Accounts Receivable 175174 Application Payment Instrument Receivable ‐ Legal numbers options disabled when PI is loaded
Payment Instrument Status Change ‐ Unnecessary GL Journals are generated for PI 
10.1.500 Financial Management Accounts Receivable 175408 Application Receivable Accounts when a reverse of status is made
Conversion Workbench ‐ GLConvertCurrencyRevalueAcctFormat does not update 
10.1.500 Financial Management Accounts Receivable 175435 Application the % complete in the Conversion Workbench (Also fixed in 10.1.400.x)
10.1.500 Financial Management Accounts Receivable 175655 Application Invoice Entry AR ‐ Clicking Refresh resets selected line back to line 1
Invoice Entry AR ‐ Cancellation and Correction invoice does not use the new Invoice 
10.1.500 Financial Management Accounts Receivable 175663 Application date
Aged Receivables ‐ On Account Payment Instrument value is doubled when changing 
10.1.500 Financial Management Accounts Receivable 175694 Application status
Payment Instrument Receivable ‐ Payment Instrument AR cannot post multiple PI to 
10.1.500 Financial Management Accounts Receivable 175701 Application Portfolio when First GL is Bank
AR Invoice Balance Report ‐ Invalid Customer Balance in AR Invoice Balance Report 
10.1.500 Financial Management Accounts Receivable 176014 Application after PI Approval
Process Finance/Late Charge ‐ Does not add rows on filter tabs when clicking the 
10.1.500 Financial Management Accounts Receivable 176575 Application New button
Cash Receipt Entry ‐ Unnecessary Rounding removed from Unapplied Cash Receipt, 
10.1.500 Financial Management Accounts Receivable 176665 Application but is not applied in CM (Also fixed in 10.1.400.x)
Payment Instrument Status Change ‐ Cannot Cancel PI after revaluation (Also fixed 
10.1.500 Financial Management Accounts Receivable 176865 Application in 10.1.400.x)
Cash Receipt Entry ‐ TranGLC for credit memo is not generated for main book with 
10.1.500 Financial Management Accounts Receivable 176937 Application mapped revision using manually review
AR Invoice Balance Report ‐ Debit notes applied to invoices are not taken in 
10.1.500 Financial Management Accounts Receivable 177262 Application consideration for B/F
Payment Instrument Update ‐ Using 2 PI with same ID makes 1 non‐selectable (Also 
10.1.500 Financial Management Accounts Receivable 177555 Application fixed in 10.1.400.x)

Page 6
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


10.1.500 Financial Management Accounts Receivable 177596 Application Invoice Entry AR ‐ Payment Method field 2 issues
10.1.500 Financial Management Accounts Receivable 177626 Application Invoice Tracker AR ‐ Order Numbers not displayed in Summary / Header tab
Payment Instrument Receivable ‐ Unable to create a new group with the same ID as 
10.1.500 Financial Management Accounts Receivable 177905 Application an another one posted before
AR Invoice Form ‐ Get Rebates with LSkip check box displaying "Input string was not 
10.1.500 Financial Management Accounts Receivable 178353 Application in a correct format" error
Financial Management Accounts Receivable 178507 Application Invoice Entry AR ‐ Unable to print Invoice forms with "Pre‐numbered formats" in 
10.1.500 legal number
Cash Receipt Entry ‐ Unnecessary Rounding removed from Unapplied Cash Receipt, 
10.1.500 Financial Management Accounts Receivable 178651 Application but is not applied in CM (Also fixed in 10.1.400.x)
Payment Instrument Receivable window is not closed when save confirmation 
10.1.500 Financial Management Accounts Receivable 178795 Application message is NO
Invoice Entry AR ‐ Tax is not recalculated when deleting the discount amount and % 
10.1.500 Financial Management Accounts Receivable 179014 Application with certain conditions
10.1.500 Financial Management Accounts Receivable 179195 Application G/L Distribution Report ‐ Object Error when running by fiscal period
AR Invoice Form ‐ Get Rebates form returns more rebate contracts than selected 
10.1.500 Financial Management Accounts Receivable 179241 Application (Also fixed in 10.1.400.x)
Apply Credit Memo ‐ UR Payment Instrument cannot be applied (Also fixed in 
10.1.500 Financial Management Accounts Receivable 179786 Application 10.1.400.x)
10.1.500 Financial Management Accounts Receivable 179880 Application Cash Receipts Edit List ‐ Incorrect bank fee account in Edit list
PERU Cash Receipt Entry ‐ Should calculate WH tax on Invoice total inclusive of taxes 
10.1.500 Financial Management Accounts Receivable 179991 Application (Also fixed in 10.1.400.x)
Financial Management Accounts Receivable 179996 Application Payment Instrument Receivable ‐ Unable to change AR PI status to Apply to Bank if 
10.1.500 both Company and PI Type have First GL Update Stage = Apply to Bank
10.1.500 Financial Management Accounts Receivable 180288 Application Payment Instrument Receivable ‐ Unable to enter book and account for bank fee
10.1.500 Financial Management Accounts Receivable 180467 Application Invoice Entry AR ‐ RMA not displaying cost, when the Unit Price is zero
Invoice Tracker AR ‐ In Epicor 10.1, the Personalization Tools do not work in AR Invc 
10.1.500 Financial Management Accounts Receivable 180545 Application Tracker, Header > Payments tab
Payment Instrument Receivable ‐ When Retrieving AR generated PI, there is no 
10.1.500 Financial Management Accounts Receivable 180705 Application allocated Invoice
Payment Instrument Receivable ‐ On account option is set to true when form is 
10.1.500 Financial Management Accounts Receivable 180850 Application refreshed
10.1.500 Financial Management Accounts Receivable 180919 Application Intrastat ‐ Intrastat button is disabled in AP Invoice Entry
Invoice Entry AR ‐ Unit Cost values are missing in the InvcDtl table for a cancellation 
10.1.500 Financial Management Accounts Receivable 181482 Application invoice with more than 2 parts
10.1.500 Financial Management Accounts Receivable 181691 Application AR Invoice Balance Report ‐ Debit and Closing Balance are incorrectly calculated
Invoice Tracker AR ‐ Not displaying correct decimals set on company configuration 
10.1.500 Financial Management Accounts Receivable 182003 Application until selecting a record
10.1.500 Financial Management Accounts Receivable 182333 Application Invoice Entry AR ‐ Cancellation invoices ignore invoices date set up

Page 7
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Apply Credit Memo ‐ Balance is not updated when applying a CM with Withholding 
10.1.500 Financial Management Accounts Receivable 182489 Application Tax to an invoice
Payment Instrument Receivable ‐ After changing the Tran amount of an Invoice it 
10.1.500 Financial Management Accounts Receivable 182519 Application does not reflect the correct amount until refreshing
10.1.500 Financial Management Accounts Receivable 182926 Application Invoice Tracker AR ‐ ProjectID should be added to Header > Detail
10.1.500 Financial Management Accounts Receivable 182955 Application Cash Receipt Entry ‐ Search sorts in descending order
10.1.500 Financial Management Accounts Receivable 183088 Application AR Invoice Form ‐ Additional blank page is printed
10.1.500 Financial Management Accounts Receivable 183203 Application AR Invoice Form ‐ Print Invoice prints SO line instead of Invoice line
InvoiceTrackerAR ‐ Invoice Number is not retrieved and 0 is displayed if there is no 
10.1.500 Financial Management Accounts Receivable 183342 Application lines
Electronic Interface - Incorrect selection of company specific or default
10.1.500 Financial Management Accounts Receivable 183455 Application interface occurs
10.1.500 Financial Management Accounts Receivable 183467 Application Invoice Tracker AR ‐ Differences for Euro Currency are displayed due Rounding
Payment Instrument Status Change ‐ Incorrect invoice balance after On‐Acccount PI 
10.1.500 Financial Management Accounts Receivable 183498 Application Status Change from portfolio to unapproved
Invoice Entry AR ‐ Invoiced Status for Renewal Contract is removed after erasing 
10.1.500 Financial Management Accounts Receivable 183581 Application Cancellation Invoice
10.1.500 Financial Management Accounts Receivable 183676 Application Invoice Entry AR ‐ Unable to create a Cancellation Invoice due to UOM Conversion
Payment Instrument Status Change ‐ Cannot Cancel PI after revaluation (Also fixed 
10.1.500 Financial Management Accounts Receivable 183847 Application in 10.1.400.x)
Financial Management Accounts Receivable 184133 Application Adjustment AR ‐ Invoice Balance is calculated incorrectly using multibook and cross 
10.1.500 rate
Cash Receipts Edit List ‐ AR Cash Receipts Edit List ‐ GL Account Description printed 
10.1.500 Financial Management Accounts Receivable 184179 Application the description which belongs to other COA
Cash Receipt Entry‐ Base amount in cash receipt entry is not updated when the 
10.1.500 Financial Management Accounts Receivable 184245 Application exchange rate is updated
Payment Instrument Receivable ‐ Payment Instrument has unapplied amount, blank 
10.1.500 Financial Management Accounts Receivable 184431 Application errors on Bank Fee delete
Payment Instrument Receivable - Payment Instrument has unapplied amount,
184431
10.1.500 Financial Management Accounts Receivable Application blank errors on Bank Fee delete
Cash Receipt Entry ‐ Variances are generated due to Base Curreny being updated 
10.1.500 Financial Management Accounts Receivable 184508 Application when changing the settlement amount
10.1.500 Financial Management Accounts Receivable 184724 Application Invoice Entry AR ‐ Rounding is not calculated at invoice level
Invoice Entry AR ‐ Error occurs when getting a shipment that has a lock rate in Sales 
10.1.500 Financial Management Accounts Receivable 184750 Application Order
Cash Receipt Entry ‐ AR Summary amount of Debit not equal summary of AR amount 
10.1.500 Financial Management Accounts Receivable 185271 Application in Detail
Reverse Cash Receipt ‐ The same cash receipt can be reversed multiple times by 
10.1.500 Financial Management Accounts Receivable 185354 Application different users

Page 8
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


VAT Tax Journal Report ‐  Report does not show invoice number but it shows 
10.1.500 Financial Management Accounts Receivable 186304 Application number sequence
Payment Instrument Receivable ‐ Search Form allows selection of a PI Generated on 
10.1.500 Financial Management Accounts Receivable 186575 Application AR Invoice that it was not posted
10.1.500 Financial Management Accounts Receivable 186971 Application Payment Instrument Receivable ‐ Payment Instrument cannot be created in EWA
Invoice Entry AR ‐ Related PCID records should not be deleted or moved in history 
10.1.500 Financial Management Accounts Receivable 187001 Application until the invoice is posted
Cash Receipt Entry ‐ Error makes it unable to reverse a deposit payment that has not 
10.1.500 Financial Management Accounts Receivable 187096 Application been applied yet
10.1.500 Financial Management Accounts Receivable 187116 Application Invoice Entry AR ‐ Intrastat ‐ Incorrect handling of Sales Kits and weight
Payment Instrument Status Change ‐ Changing between status with same GL Control 
10.1.500 Financial Management Accounts Receivable 187243 Application does not update the APPI Header Status
10.1.500 Financial Management Accounts Receivable 187279 Application Cash Receipt Entry ‐ Invoice Unposted balanced is not being calculated correctly
Payment Instrument Receivable ‐Invoices assigned to Generated PIs are not 
10.1.500 Financial Management Accounts Receivable 187381 Application displayed for new Pis
Cash Receipt Entry  ‐ Invoice selection tab shows the sold to invoices instead of the 
10.1.500 Financial Management Accounts Receivable 187430 Application bill to invoices
Invoice Entry AR ‐ Payment instrument is deleted when several invoices are created 
10.1.500 Financial Management Accounts Receivable 187454 Application with Payment Method Generate PI at invoice entry
AR Invoice Balance Report ‐ Payment created when applied the debit note; an 
10.1.500 Financial Management Accounts Receivable 187547 Application invoice is not being displayed on the report
AR Invoice Balance Report ‐ Credit Memo shows as a Credit Amount for the cash 
10.1.500 Financial Management Accounts Receivable 187880 Application transaction on the report
10.1.500 Financial Management Cash Management 148140 Application Bank Statement Processing ‐ CSV format could not import zero opening balance
10.1.500 Financial Management Cash Management 157600 Application Recalculate Bank Balances ‐ Add New and delete icons for Bank Accounts Filter
10.1.500 Financial Management Cash Management 166470 Application Petty Cash Entry ‐ EWA ‐ Tree view does not display documents
Petty Cash Entry ‐ Becomes obsolete when changing Apply Date and unchecking 
10.1.500 Financial Management Cash Management 168641 Application Draft
Bank Adjustment Entry ‐ The Book is only displayed in the page where the Recap is 
10.1.500 Financial Management Cash Management 170963 Application printed
10.1.500 Financial Management Cash Management 172540 Application Bank Account ‐ Bank Account Currency can be inactive, and cannot be changed
10.1.500 Financial Management Cash Management 172892 Application Petty Cash Entry ‐ Unexpected error messages changing the focus in the Tree view
Bank Adjustment Entry ‐ Bank Balance is updated in the period of the Group 
10.1.500 Financial Management Cash Management 173948 Application Transaction Apply Date
Petty Cash Entry ‐ General Framework ‐ In Petty Cash entry UI option "Reset Layouts 
10.1.500 Financial Management Cash Management 174857 Application to Base" in tools menu displays an error
Bank Statement Processing ‐ Clear date for manual statement line creation should 
10.1.500 Financial Management Cash Management 174878 Application default to bank statement Apply Date (instead of Opening Date)

Page 9
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Bank Adjustment Entry ‐ Bank Balance is not updated in the period of Adjustment 
10.1.500 Financial Management Cash Management 174943 Application Apply Date
Financial Management Cash Management 175074 Application Petty Cash ‐ Operations A/P Debit Note Receipt, A/P Misc Cash Return have 
10.1.500 unnecessary Rounding amount
10.1.500 Financial Management Cash Management 175662 Application Petty Cash Entry ‐ Unable to update the Reason
Bank Statement Processing ‐ Cash Receipt/AP Payment Batch trackers and 
Maintenance do not function and the out‐of‐memory error occurs if number of 
10.1.500 Financial Management Cash Management 177193 Application individual cash receipts/AP payments exceeds 6000 (Also fixed in 10.1.400.x)
Bank Statement Processing ‐ When posting does not function in BSP allocated to 
10.1.500 Financial Management Cash Management 177194 Application cash receipt invoices may be updated incorrectly (Also fixed in 10.1.400.x)
Petty Cash Entry ‐ Application stops working when user uses Paste insert 
10.1.500 Financial Management Cash Management 178612 Application functionality
Bank Account ‐ Task Agent Extension does not update bank balance (Also fixed in 
10.1.500 Financial Management Cash Management 178891 Application 10.1.400.x)
Update Bank Balances ‐ Process consumes very high CPU utilization until it stops 
10.1.500 Financial Management Cash Management 178978 DB Specific working (Also fixed in 10.1.400.x)
Bank Statement Processing ‐ Unable to create statement line when having an AR 
Payment Method in batch mode (Statement Grouping = Grouped) and entering a 
10.1.500 Financial Management Cash Management 178998 Application Cash Receipt with a non‐numeric Group ID
Bank Statement Processing ‐ Error displayed when printing Edit List for posted 
10.1.500 Financial Management Cash Management 179329 Application reconciliations (Also fixed in 10.1.400.x)

Bank Statement Processing ‐ Bank Statement Conversion incorrectly processes cash 
10.1.500 Financial Management Cash Management 179806 Application receipt records attached to CRPay line as bank adjustments (Also fixed in 10.1.400.x)
Bank Account Tracker ‐ Opening Bank Balances are not correctly retrieved for 
10.1.500 Financial Management Cash Management 179992 Application update current period bank balances, and in tracker (Also fixed in 10.1.400.x)
Bank Account Tracker ‐ BankBalDeferred records are created incorrectly for opening 
10.1.500 Financial Management Cash Management 180214 Application balance updates (Also fixed in 10.1.400.x)
Bank Adjustment Entry ‐ When canceling transactions in Review Journal and then 
10.1.500 Financial Management Cash Management 180695 Application posting them again, Bank Balance is not updated
Bank Account Tracker ‐ Adjustment are not reflected for the year posted in Balance 
10.1.500 Financial Management Cash Management 181436 Application only for the Current date
Bank Statement Processing ‐ Selecting main account and creating a line takes 45‐75 
10.1.500 Financial Management Cash Management 183680 DB Specific minutes for each to complete (Also fixed in 10.1.400.x)
Petty Cash Entry (EWA) ‐ Error during entering Petty Cash document in Petty Cash 
10.1.500 Financial Management Cash Management 183770 Application Entry via EWA
10.1.500 Financial Management Cash Management 184295 Application Payment Method ‐ Unable to select a path for output file in EWA
Bank Statement Processing ‐ Unallocated variance causes being unable to post, 
10.1.500 Financial Management Cash Management 184742 Application when using 3 decimals on the Payment (Also fixed in 10.1.400.x)

Page 10
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


10.1.500 Financial Management Cash Management 184870 Application Bank Statement Processing ‐ Not clearing the zero dollar AP payments
Bank Account ‐ PatchFld BankAcct.State is not migrated to the physical field (Also 
10.1.500 Financial Management Cash Management 184986 Application fixed in 10.1.400.x)
10.1.500 Financial Management Cash Management 186394 Application BankAccountTracker ‐ Reverse amount is not reflected on the Bank Balance
Bank Statement Processing ‐ Bank amount gets recalculated when changing 
10.1.500 Financial Management Cash Management 186631 Application exchange rate for foreign currency
Bank Statement Processing ‐ Bank statement manual unmatching for AR Receipts 
10.1.500 Financial Management Cash Management 188029 Application takes a long time when there are many open receipts
Bank Adjustment Entry  ‐ GL Account control works incorrectly if there are mapped 
10.1.500 Financial Management Cash Management 188476 Application books in Transaction Type
Bank Statement Processing ‐ Fix balance update for AR/AP reversals when mode 
10.1.500 Financial Management Cash Management 188724 Application Bank Exchange Rate is used When Clearing
PettyCash ‐ Mismatch of Apply Date and Fiscal Period while making Patty Cash 
10.1.500 Financial Management Cash Management 189006 Application entries
CSF Singapore ‐ Data Export ‐ Error on trying to generate files when there is no GL 
10.1.500 Financial Management CSF All 176668 Application records in the current period
10.1.500 Financial Management CSF All 176669 Application Top and Left form's properties should be removed for Localization forms
10.1.500 Financial Management CSF All 177298 Application Company exists on a table but is not used in the query
CSF Colombia ‐ Impossible to launch Cash receipt report, the following error 
10.1.500 Financial Management CSF All 179564 Application appears: Cannot remove unique constraint 'CashHeadListBatchNum'
10.1.500 Financial Management CSF All 179572 Application CSF Base Extension was added incorrectly
Bank Reference Number ‐ Is not included in SEPA payment file; if payment reference 
10.1.500 Financial Management CSF All 187777 Application is missing on invoice
10.1.500 Financial Management CSF Argentina 179989 Application Currency Master ‐ Argentina tab was lost
File export via Belgium electronic interfaces cannot create files locally, only on the 
10.1.500 Financial Management CSF Belgium 175130 Application server
10.1.500 Financial Management CSF China 173157 Application GTI Status Tracker ‐ Merged invoices are not retrieved
Financial Data Export CN ‐ Incorrect Year and Period for Income Statement 
10.1.500 Financial Management CSF China 176823 Application document (Also fixed in 10.1.400.x)
Packing Slips consolidation does not work if Customer and Order Tax Liabilities are 
10.1.500 Financial Management CSF China 178093 Application not matched (Also fixed in 10.1.400.x)
10.1.500 Financial Management CSF China 179382 Application Invoice Entry ‐ Consolidation PS ‐ System updates invoices in Review
Balance Sheet CN ‐ FiscalYearSuffix should be removed from query to eliminate 
10.1.500 Financial Management CSF China 179665 Application report generation issues
CSF China/CSF Taiwan ‐ Get Shipments action returns object error in case packing 
10.1.500 Financial Management CSF China 181614 Application slip consolidation
10.1.500 Financial Management CSF China 183475 Application Added COACode to GLAcctDisp search for transactional reports
10.1.500 Financial Management CSF China 184071 Application GTI Export: previously selected for export invoices are not visible in the grid

Page 11
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


IM Kardex report missing parts when the exclude parts with zero on‐hand balance is 
10.1.500 Financial Management CSF Colombia 174608 Application selected
COSAndWIP posting rule ‐ Tercero is lost in AGJ‐PUR and PUR‐STK in case of using 
10.1.500 Financial Management CSF Colombia 176090 Application Clearing account
10.1.500 Financial Management CSF Colombia 176092 Application COSAndWIP posting rule ‐ Tercero is lost in STK‐CUS in case Inventory account 
10.1.500 Financial Management CSF Colombia 176108 Application COSAndWIP posting rule ‐ Tercero is lost in PUR‐MTL
10.1.500 Financial Management CSF Colombia 176234 Application Void payment ‐ Incorrect Tercero for Post Bank Fee Tax Amount
10.1.500 Financial Management CSF Colombia 177614 Application System does not take GL account entered on the form for AR write‐off transaction
AP PI status change returns error ‐ Object reference not set to an instance of an 
10.1.500 Financial Management CSF Colombia 180280 Application object
10.1.500 Financial Management CSF Colombia 181512 Application Revelation Entry and Report issues
10.1.500 Financial Management CSF Colombia 182160 Application IFRS inventory report ‐ Cost is calculated ignoring Unit Material Burden
IFRS inventory report ‐ Quantity is incorrect when PO receipt date = current and As 
10.1.500 Financial Management CSF Colombia 182161 Application of date = current
10.1.500 Financial Management CSF Colombia 182162 Application IFRS inventory report‐report is incorrect in case of two filters
Revelations Entry CO menu item should be placed among Entries, not Processes; 
10.1.500 Financial Management CSF Colombia 182249 Application certain post‐peer issues
10.1.500 Financial Management CSF Colombia 182978 Application IFRS inventory report ‐ Incorrect cost and material burden in case cost adjustment
10.1.500 Financial Management CSF Colombia 183903 Application Revelation report ‐ Error during printing report parameters
GL Journal Receipt report ‐ Journal Code and Journal Num filters cannot be entered 
10.1.500 Financial Management CSF Colombia 184849 Application together
10.1.500 Financial Management CSF Colombia 189650 Application General Ledger Report ‐ Filter functionality not working on General Ledger Report
10.1.500 Financial Management CSF European Union 173542 Application CSF Germany ‐ DE Intrastat EI Month property documented incorrectly
10.1.500 Financial Management CSF European Union 176918 Application SEPA DD "Customer Type" field in Customer Maintenance should be renamed
10.1.500 Financial Management CSF European Union 177965 Application Intrastat ‐ Intrastat button disabled in AR Invoice Entry
SEPA AP Payments ‐ Creating SEPA AP Payment file should be limited, if neither IBAN 
10.1.500 Financial Management CSF European Union 179009 Application nor Checking Account are entered for Company Bank Account
10.1.500 Financial Management CSF European Union 182149 Application SEPA payment does not work for non EU‐supplier (Also fixed in 10.1.400.x)
Bank Reference Number is not included in SEPA payment file (pain.001.001.03) (Also 
10.1.500 Financial Management CSF European Union 183055 Application fixed in 10.1.400.x)
Payment Number is not included in SEPA payment file (pain.001.001.03) for pre‐
10.1.500 Financial Management CSF European Union 183063 Application payments (Also fixed in 10.1.400.x)
10.1.500 Financial Management CSF European Union 183347 Application SEPA ‐ Incorrect parameter UseBatchBooking
10.1.500 Financial Management CSF European Union 186433 Application Semi‐colon cannot always be used for SEPA remittance information
Update EI for GL FR ‐ Journal Export according to the new legal requirements (Also 
10.1.500 Financial Management CSF France 182389 Application fixed in 10.1.400.x)
Conversion Program GLControlsForE10 from Conversion Workbench does not create 
10.1.500 Financial Management CSF Germany 172627 Application Source Value Fields and Target Value Fields for CSF Germany Lookup Tables
10.1.500 Financial Management CSF Mexico 175241 Application Electronic Accounting ‐ Credit amounts should be displayed as positive amounts 

Page 12
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


It is necessary to check and correct read‐only property of BankTran.MXRecDate field 
10.1.500 Financial Management CSF Mexico 175904 Application in the grid
10.1.500 Financial Management CSF Mexico 176448 Application Tax Regime field (Company Configuration) is short (16 characters)
10.1.500 Financial Management CSF Mexico 177453 Application Separate routine should be created for Tax Regime maintenance
Impossible to print Mexico VAT report because of the following error: Year, Month, 
10.1.500 Financial Management CSF Mexico 178849 Application and Day parameters describe an un‐representable DateTime
10.1.500 Financial Management CSF Mexico 178853 Application MX SAT AR Invoice report prints incorrect tax descriptions
"Cannot find column TaxRegime" error message during Tax Regime selection on AR 
10.1.500 Financial Management CSF Mexico 178854 Application Invoice > Header > Mexico
Warning message "Level of printed account must be greater or equal to 1" should be 
10.1.500 Financial Management CSF Mexico 178863 Application changed to "Level of printed accounts must be greater than or equal to 1"
10.1.500 Financial Management CSF Mexico 179986 Application MX Electronic Accounting and VATDIOT ‐ Update and add Auto‐scripts to Portal
10.1.500 Financial Management CSF Mexico 180131 Application Account Auxiliary checked on GL Journals causes report to stop working
10.1.500 Financial Management CSF Mexico 180793 Application Asset Mexico Tab ‐ empty Tax Type drop‐down, value can only be set through Search
10.1.500 Financial Management CSF Mexico 181390 Application Receive Method drop‐down values contain invalid characters
Asset Mexico tab ‐ Form is saved with no warning with the incorrect Tax Rate for 
10.1.500 Financial Management CSF Mexico 181507 Application selected Tax Type
10.1.500 Financial Management CSF Mexico 181508 Application Asset Mexico Tab ‐ Tax Rate field should be cleared after changing Tax Type
10.1.500 Financial Management CSF Mexico 181730 Application Enhancement of VAT/DIOT ATE scripts
AR Invoice based on Get > Shipment > Manual Selection does not set the Form of 
10.1.500 Financial Management CSF Mexico 182910 Application Payment to Customer
10.1.500 Financial Management CSF Mexico 183844 Application Account Num is not taken from referenced AR Invoice
10.1.500 Financial Management CSF Mexico 184235 Application Impossible to save invoice with Multiple payment method
10.1.500 Financial Management CSF Mexico 184848 Application Partial Payment ‐ MXFolio field should be displayed as Original Folio
10.1.500 Financial Management CSF Mexico 185036 Application Import certificate with only .cer file displays an error
10.1.500 Financial Management CSF Mexico 185518 Application Error after CFD invoice generation
MX Partial Payment ‐ Partial Payment Credit Memo group cannot be saved due to 
10.1.500 Financial Management CSF Mexico 185663 Application an error
10.1.500 Financial Management CSF Mexico 186379 Application AR SAT Report ignores withholding tax on invoice
10.1.500 Financial Management CSF Mexico 187860 Application Cancellation of AR Invoice with Misc.Charges stops the application
CSF New Zealand ‐ BNZ DD Payment ‐ From Name exceeds maximum number of 
10.1.500 Financial Management CSF New Zealand 180920 Application characters
10.1.500 Financial Management CSF Norway 182887 Application AP Bank File Import creates new AP Payment Group with incorrect payment method
10.1.500 Financial Management CSF Norway 182890 Application Attached xml file cannot be opened after E‐Invoice generation
10.1.500 Financial Management CSF Norway 183064 Application E‐Invoice Time Stamp field should display time in 24‐hour clock format
EWA ‐ There are partially visible fields on Electronic Interface window when 
10.1.500 Financial Management CSF Norway 183344 Application submitting E‐Invoice
E‐Invoice document type should be selected in Deposit Invoice for E‐Invoice 
10.1.500 Financial Management CSF Norway 184089 Application customer instead of one from Company setup
10.1.500 Financial Management CSF Norway 185453 Application Available Document Type List does not refresh correctly for E‐Invoice process

Page 13
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


AP bank file import workbench generates payment matching after which the 
10.1.500 Financial Management CSF Norway 188270 Application payment date is incorrect
10.1.500 Financial Management CSF Peru 177610 Application AR BoE posting rule must pick up correct account context for Invoices in Collections
Merge changes in posting rule AP Payment made in base under SCR 178679 
10.1.500 Financial Management CSF Peru 180511 Rule regarding Tax Discount Adjustment for Withholding Invoicing Tax
10.1.500 Financial Management CSF Peru 180523 Application Update  CSF PE rule AR PI Payment according to changes made in SCR 179786
10.1.500 Financial Management CSF Peru 180735 Application Modify 3.3 AR Balance Invoice report PE layout
When using application in Spanish, no options available for selection with Bill of 
10.1.500 Financial Management CSF Peru 182731 Application Exchange Status Changed (Also fixed in 10.1.400.x)
10.1.500 Financial Management CSF Sweden 185157 Application EU Sales list has incorrect format for Sweden
10.1.500 Financial Management CSF Sweden 186434 Application GL Export Process ‐ Issues with export file extension and file format
CSF China ‐ Packing Slips consolidation does not work if Customer and Order Tax 
10.1.500 Financial Management CSF Taiwan 177801 Application Liabilities are not matched (Also fixed in 10.1.400.x)
Error occurs when trying to attach a document type to supplier (Also fixed in 
10.1.500 Financial Management CSF Taiwan 182970 Application 10.1.400.x)
10.1.500 Financial Management CSF Taiwan 187805 Application Invoice Entry AP ‐ GUI Tax Type cannot be assigned for DMR Debit Memo
Invoice Entry AP ‐ Context menu search should be added for GUI Tax Type Code and 
10.1.500 Financial Management CSF Taiwan 188187 Application GUI Deduction Code
Legal Number ‐ Is not assigned automatically for Debit Memo if 'Default AP Invoice 
10.1.500 Financial Management CSF Taiwan 189019 Application Number' is selected as source
10.1.500 Financial Management CSF Thailand 182464 Application Incorrect Cost in the stock report (Also fixed in 10.1.400.x)
10.1.500 Financial Management CSF Turkey 179170 Application Renumber Journals ‐ Process stops with an Exception in System Monitor
Set Reporting Currency process  ‐ Does not zero Asset Cost Summary Opening Depn 
10.1.500 Financial Management Currency Management 162838 Application and Grant Depn for Disposed Asset
Currency Revaluation Process ‐ Application does not respond with Currency 
10.1.500 Financial Management Currency Management 171418 Application Revaluation Process as active task
Rate Type ‐ After unlinking a global rate type and trying to link for a new one, two 
10.1.500 Financial Management Currency Management 171922 Application errors displayed
Currency Revaluation Process ‐ The Report is printed for a date where is no balance 
10.1.500 Financial Management Currency Management 174811 Application movement
Currency Revaluation Process ‐ In immediate reverse mode resets AP invoice header 
10.1.500 Financial Management Currency Management 175911 Application with revaluation rate
Currency Revaluation Process ‐ In immediate reverse mode resets AR invoice header 
10.1.500 Financial Management Currency Management 176034 Application with revaluation rate
10.1.500 Financial Management Currency Management 176258 Application ReportingCurrencyProcess does not validate SysTaskParams
10.1.500 Financial Management Currency Management 176603 Application ReportingCurrencyProcess does not validate TaxTran Table
Currency Master ‐ Created Currency sent out for multi‐company processing even 
10.1.500 Financial Management Currency Management 176733 Application when it is not marked as global

Page 14
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Currency Master ‐ Issues linking currencies with different Currency Code and 
10.1.500 Financial Management Currency Management 176734 Application Currency ID
Currency Revaluation Process ‐ Bank Accounts issues when the date defaults with 
10.1.500 Financial Management Currency Management 177051 Application the last day of month
Currency Master ‐ An error message is displayed when creating a currency with no 
10.1.500 Financial Management Currency Management 178622 Application Currency ID
10.1.500 Financial Management Currency Management 179107 Application Currency Master ‐ Unable to delete the GL Control of the base currency
10.1.500 Financial Management Currency Management 179216 Application Rate Type ‐ Linking Rate Type logic to be modified
10.1.500 Financial Management Currency Management 179230 Application Currency Master ‐ Incorrect behavior when unlinking a global currency
Financial Management Currency Management 180121 Application Currency Master ‐ Not possible to change Currency ID after it is linked to global 
10.1.500 Currency
Rate Group ‐ Rate Type cannot be linked when trying to link to ones that do not 
10.1.500 Financial Management Currency Management 181782 Application have Rules defined
Rate Group ‐ Rate Type can't be linked when linking to one that doesn't have Rules 
10.1.500 Financial Management Currency Management 181782 Application defined
10.1.500 Financial Management Currency Management 182405 Application Currency Master ‐ It is possible to unlink currency after Rate Type is linked
10.1.500 Financial Management Currency Management 182565 Application Rate Type ‐ Label for Link Status is incorrectly descripted
Currency Revaluation Process ‐ AP Invoice Revaluation in immediate reverse mode ‐ 
10.1.500 Financial Management Currency Management 185337 Application GL transaction is doubled instead of reversing
Currency Revaluation Process ‐ AP Invoice Revaluation in immediate reverse mode ‐ 
10.1.500 Financial Management Currency Management 185432 Application Following revaluations for the same date are incorrect
Currency Revaluation Process ‐ AP Invoice Revaluation in immediate reverse mode ‐ 
10.1.500 Financial Management Currency Management 186112 Application GL transaction is doubled instead of reversing
Currency Revaluation Process ‐ AP Invoice Revaluation in immediate reverse mode ‐ 
10.1.500 Financial Management Currency Management 186116 Application Following revaluations for the same date are incorrect
10.1.500 Financial Management Fixed Assets 148560 Application Asset Addition Entry ‐ Change error message should be user‐friendly
Asset Overview ‐ Group Description and Asset Description is not fully displayed, field 
10.1.500 Financial Management Fixed Assets 151549 Application length too short
10.1.500 Financial Management Fixed Assets 160041 Application Asset Addition Entry ‐ Supplier Description field should be disabled
10.1.500 Financial Management Fixed Assets 169093 Application Asset Posting Process ‐ Process takes days on Customer DB having 18000 Assets
10.1.500 Financial Management Fixed Assets 171694 Application Asset ‐ Addition for second register is not imported if addition have inter group
10.1.500 Financial Management Fixed Assets 174566 Application Spread Code, not able to import a previously exported file
10.1.500 Financial Management Fixed Assets 177290 Application Asset Addition Entry ‐ Prohibit Inter‐Group Additions in future years
Asset Disposal Entry ‐ Error occur when disposing of assets in two registers when the 
10.1.500 Financial Management Fixed Assets 178941 Application main book is fully depreciated (Also fixed in 10.1.400.x)
10.1.500 Financial Management Fixed Assets 179820 Application Asset Edit List ‐ Cannot print edit list for a specific period
Asset Revaluation Entry ‐ Incorrect current depreciation and current book value in 
10.1.500 Financial Management Fixed Assets 180544 Application new reporting currency

Page 15
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Asset Disposal Entry ‐ Cannot dispose an Asset due to the following error: BV cannot 
10.1.500 Financial Management Fixed Assets 180682 Application be negative
10.1.500 Financial Management Fixed Assets 181383 Application Asset Annual Schedule Report ‐ Report skips catch‐up depreciation transactions
Asset Addition Entry ‐ Incorrect book value in asset tracker when clicking the Save 
10.1.500 Financial Management Fixed Assets 181820 Application button before entering grant amount
10.1.500 Financial Management Fixed Assets 182838 Application Asset Edit List creates Disposal Adjustment Rvlock which is not released
Help ‐ Link from Asset Depreciation report opens Selected Fields for Asset 
10.1.500 Financial Management Fixed Assets 187863 Application Depreciation Calculation incorrectly
Several cost‐affecting transactions posted simultaneously do not appear in the same 
10.1.500 Financial Management Fixed Assets 189389 Application RJ; locking is incorrect
Process Set Maintenance ‐ Adjust UI Reports and Process to use all 4 parameters: 
10.1.500 Financial Management General 163230 Application company, systemcode, processID, taskNum
10.1.500 Financial Management General 178994 Application Process Set Maintenance ‐ Adjust UI Reports and Process to support Process Set
Account Segment ‐ System allows account segment value to include character which 
10.1.500 Financial Management General Ledger 114551 Application matches the separator character in COA setup
Journal Entry ‐ Journal Totals are zeroed out after changing Apply Date in Journal 
10.1.500 Financial Management General Ledger 117904 Application Header
10.1.500 Financial Management General Ledger 140340 Application Journal Entry ‐ Menu caption has additional space between icon and name
General Ledger Report ‐ Journal Number with length greater than 3 digits is 
10.1.500 Financial Management General Ledger 141560 Application displayed with comma
Journal Tracker ‐ Journal and TranGLC Details are not cleared when record from 
10.1.500 Financial Management General Ledger 143151 Application different journal is selected
10.1.500 Financial Management General Ledger 143156 Application Journal Tracker ‐ Clear button affect grids but does not clear buffers
10.1.500 Financial Management General Ledger 143320 Application Update error message when incorrect segment was entered manually
Automatic Transaction Reversal ‐ Fiscal Period incorrect for MultiBook Transaction 
10.1.500 Financial Management General Ledger 149756 Application updating apply date
General Ledger Import ‐ If Post option is not marked then System Monitor does not 
10.1.500 Financial Management General Ledger 152192 Application show Finish messages
Journal Tracker ‐ Journal Code Columns Allow Statistical Journals, MXPolicy, 
10.1.500 Financial Management General Ledger 152685 Application OkChgAllowStatJrnl should be hidden
10.1.500 Financial Management General Ledger 152690 Application Book ‐ New Link To Source Book ‐ UI issues
Book ‐ Warning message displays when the RE Account is been masked for the self 
10.1.500 Financial Management General Ledger 154979 Application balancing segment
10.1.500 Financial Management General Ledger 155469 Application Book ‐ Items in Validations tab having different sorting order for different books
Book ‐ RE Account Description is unexpectedly changed to Masked Account if 
10.1.500 Financial Management General Ledger 159480 Application Dynamic segment is used
10.1.500 Financial Management General Ledger 160029 Application Book ‐ When type book ID, the previous book is active in a Tree view
10.1.500 Financial Management General Ledger 161644 Application GL Transaction Type ‐ Timeout error on first lauch after server reinstall

Page 16
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


General Ledger Import ‐ EWA ‐ Selected import file is not loaded into Import 
10.1.500 Financial Management General Ledger 162412 Application Filename path field
10.1.500 Financial Management General Ledger 162737 Application Chart/Journal Tracker ‐ Extra Context Menu "fred" displays for Journal Number
Legal Number ‐ EWA ‐ When the second alternate prefix is created, all fields are 
10.1.500 Financial Management General Ledger 163776 Tools disabled and cannot be edited
Transfer Opening Balances To Next Year ‐ Error prevents process from running on 
10.1.500 Financial Management General Ledger 165067 Application first logon; "Log file path is incorrect"
Automatic Transaction Reversal ‐ Incorrect totals are displayed when select\unselect 
10.1.500 Financial Management General Ledger 166144 Application lines
10.1.500 Financial Management General Ledger 170034 Application Posting Engine ‐ Cannot post Summarized transaction
10.1.500 Financial Management General Ledger 171124 Application Book ‐ Warning message should be updated or check box disabled
Chart Tracker ‐ Auto Retrieve is not working for Total tab when switchin between 
10.1.500 Financial Management General Ledger 171484 Application accounts
Posting Engine ‐ Validation displays errors not for all lines in Review Journal Error 
10.1.500 Financial Management General Ledger 171487 Application Log
Journal Entry ‐ EWA ‐ GL Tax lines, lines with Reference Type accounts masks and 
10.1.500 Financial Management General Ledger 172057 Application from Allocation Template cannot be saved
10.1.500 Financial Management General Ledger 172791 Application Segment filter tab should be redesigned
Trial Balance report ‐ Daily Balances option ignores masks and shows no records 
10.1.500 Financial Management General Ledger 173083 Application selected for mask '%'
Journal Tracker ‐ ATE script Asset Revaluation shows differences in Transaction grid 
10.1.500 Financial Management General Ledger 173544 Application records sorting
ATE ‐ Diference found by AssetRevaluation script in Journal/Seq field in Asset Annual 
10.1.500 Financial Management General Ledger 173702 Application Schedule Report
Global BAQ ‐ Has different rule of search, changed in last framework, must be 
10.1.500 Financial Management General Ledger 173715 Application corrected in posting
General Ledger Report  ‐ Opening Balance not included in Ending Balance at Line 
10.1.500 Financial Management General Ledger 173798 Application level Detail
Posting Engine ‐ If group posting was launched in edit list mode, GLControlCodes are 
not calculated/found and correct accounts/amounts could not be obtained from 
10.1.500 Financial Management General Ledger 173910 Application previous posting in group
10.1.500 Financial Management General Ledger 173911 Application Book ‐ Two Validation Rules should be removed from UI as obsolete
GL Transaction Type ‐ Import on 'Update Mode' Ignores Lower Case to Uppercase 
10.1.500 Financial Management General Ledger 173969 Application changes in posting rules
10.1.500 Financial Management General Ledger 174410 Application Verify Balances ‐ Performance is not good
Posting Engine ‐ When using Summarization and Red Storno, not all transactions are 
10.1.500 Financial Management General Ledger 174845 Application posted as negative
10.1.500 Financial Management General Ledger 175127 Application (EWA) Chart of Accounts Listing Report ‐ error when selecting COA in EWA
10.1.500 Financial Management General Ledger 175640 Application GL Segment Report ‐ Slow Performance takes 1 hour to print 5 pages

Page 17
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Update GL Controls conversion is not updating the % complete in the Conversion 
10.1.500 Financial Management General Ledger 175845 Application Workbench
Import GL Transaction Types conversion is not updating the % complete in the 
10.1.500 Financial Management General Ledger 175846 Application Conversion Workbench
Chart Tracker ‐ Part Cost Transaction credit amounts have incorrect sign causing 
10.1.500 Financial Management General Ledger 175948 Application wrong summarization
TD: Erp.Internal.PE.ValidationRule does not validate parameters being executed in a 
10.1.500 Financial Management General Ledger 176280 Application SQL Statement
10.1.500 Financial Management General Ledger 176304 Application TD: Erp.Internal.XA.DBPurgeLogic Does not validate SysTaskParams
GL Transaction Type ‐ Variables of type Account are not loaded when corresponding 
10.1.500 Financial Management General Ledger 176473 DB Specific COA contains spaces in COA Code
Review Journal ‐  Review Journal Report does not print the error message of " 
10.1.500 Financial Management General Ledger 176486 Application commodity code is required "
Transfer Opening Balances To Next Year ‐ Violation of PRIMARY KEY constraint 
10.1.500 Financial Management General Ledger 176896 Application 'PK_GLPeriodBal'
GL Trans Type form ‐ Fix several obsolete or misleading labels on GL Tran Type 
10.1.500 Financial Management General Ledger 176917 Application Import form
Trial Balance report ‐ Unable to change both fiscal year and suffix ‐ cannot run 
10.1.500 Financial Management General Ledger 176935 Application report for other than what defaults in
Journal Detail Tracker ‐ Chart Tracker and GL reports are incorrect due to 
10.1.500 Financial Management General Ledger 177018 Application GLJrnlDtl.BookID being case sensitive (Also fixed in 10.1.400.x)
10.1.500 Financial Management General Ledger 177096 Application General ‐ Company exists on a table but is not used in the query where clause
10.1.500 Financial Management General Ledger 177195 Application Trial Balance report ‐ Fiscal year suffix is not printed in the Header
10.1.500 Financial Management General Ledger 177198 Application GL Transaction Type ‐ Remove ACTType usage in GL Transaction Type routine
Deadlock for abtWork when AP and AR work using several application servers and 
10.1.500 Financial Management General Ledger 177199 Application processed at the same time
Posting Engine ‐ ADJ‐CST transactions posting to variance account and not Inv adj 
10.1.500 Financial Management General Ledger 177381 Application account
10.1.500 Financial Management General Ledger 177416 Application Allocation Template  ‐ New allocation line has GL Account disabled for editing
10.1.500 Financial Management General Ledger 177462 Application Trial Balance report ‐ GL accounts not printing in order
Web Forms ‐ After selection of GL Account, message displays "Unable to get 
10.1.500 Financial Management General Ledger 177879 Application property 'Location' of underfined or null reference"
10.1.500 Financial Management General Ledger 177895 Application Posting Engine ‐ Book Mapping does not work for Stat Only lines
Posting Engine ‐ Auto‐update of RE account balance does not work if a COA has 
10.1.500 Financial Management General Ledger 177897 Application mandatory dynamic segments (Also fixed in 10.1.400.x)
Posting Engine ‐ Mapping does not work if in setup of mapping Source Segment 
10.1.500 Financial Management General Ledger 177963 Application Num is different from Target Segment Num

Page 18
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


GL Transaction Type‐ Import GL Transaction Type ‐ If path for posting rule xml is 
entered manually and “Import All” check box is activated 'Import VDB' & 'Import 
10.1.500 Financial Management General Ledger 178091 Application Posting rules' columns are unchecked & disabled
GL Transaction Type ‐ MainPanel title and Tree view node should be changed to GL 
10.1.500 Financial Management General Ledger 178212 Application Transaction Type
Trial Balance report ‐ Transactions from only one book are included in the report 
10.1.500 Financial Management General Ledger 178222 Application when select two book for printing
Review Journal ‐ Several Validations are shown only for Line1 in Review Journal Error 
10.1.500 Financial Management General Ledger 178223 Application Log and report
Posting Engine ‐ RE account has incorrect validation when updating balance for 
10.1.500 Financial Management General Ledger 178226 Application future years (Also fixed in 10.1.400.x)
COA Import ‐ GL Account Validation is incorrect if there are Dynamic Mandatory 
10.1.500 Financial Management General Ledger 178254 Application segments
General Ledger Import ‐ Cannot import data after Extended DateTime and Date UD 
10.1.500 Financial Management General Ledger 178318 Application Field Created
Close Fiscal Period / Year ‐ Start Dates of periods overlap with the end date of 
10.1.500 Financial Management General Ledger 178521 Application previous periods
10.1.500 Financial Management General Ledger 178767 Application Posting Engine ‐ Does not ignore case of the BookID in GL Control tables
Journal Entry ‐ Changing Group mode from Single to MultiBook does not load 
10.1.500 Financial Management General Ledger 178783 Application Master COA GL Account structure on lines
Allocation Template ‐ Lines with empty GLAcctDisp is created if use allocation 
10.1.500 Financial Management General Ledger 178861 Application template with dynamic segment in journal entry
10.1.500 Financial Management General Ledger 178865 Application Posting Engine ‐ Error on posting if Mandatory Dynamic RE Account is masked
Verify Balances fails with an error if RE Account has masked mandatory dynamic 
10.1.500 Financial Management General Ledger 178872 Application segment
Structured Trial Balance report ‐ Move latest changes completed for Trial Balance 
10.1.500 Financial Management General Ledger 179041 Application Report
Journal Entry‐ GL Account validation does not work on GL Account if selected using 
10.1.500 Financial Management General Ledger 179045 Application GL Account Button
Review Journal ‐ Action 'Release Locked Documents' removes correct locking causing 
10.1.500 Financial Management General Ledger 179085 Application several issues for COS and WIP posting
Posting Engine ‐ GL Accounts in Self‐Balancing lines is not validated during Single GL 
10.1.500 Financial Management General Ledger 179095 Application is posted
Asset Depreciation Report ‐ Should print period number instead of internal 
10.1.500 Financial Management General Ledger 179134 Application sequence number
10.1.500 Financial Management General Ledger 179257 Application Posting Engine  ‐ Performance Improvements
10.1.500 Financial Management General Ledger 179264 Application Review Journal ‐ Async confirmation fails with exception for first time running
GL Transaction Type ‐ Importing rules with segment "Location" comments all the 
10.1.500 Financial Management General Ledger 179352 Application segments

Page 19
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Inventory / WIP Reconciliation Report does not bring record for Transaction System 
10.1.500 Financial Management General Ledger 179568 Application Date option
Posting Engine ‐ Incorrect Validation error is shown for Statistical Only accounts in 
10.1.500 Financial Management General Ledger 179655 Application Review Jounal
Book ‐ Clearing/Changing/Loading of RE account causes error if COA has Dynamic 
10.1.500 Financial Management General Ledger 179664 Application segment
General Ledger Report ‐ Previewing takes more than 10 hours to complete when 
10.1.500 Financial Management General Ledger 179894 Application select single fiscal period
Structured Trial Balance report ‐ Cannot change Year in UI if Suffix is used (missing 
10.1.500 Financial Management General Ledger 179904 Application 177234)
10.1.500 Financial Management General Ledger 180167 Application GL Account Summary Report Segment Filter error
10.1.500 Financial Management General Ledger 180616 Application Edit List ‐ Unable to post or print Edit List after upgrading from 10.1.301 to 10.1.400
10.1.500 Financial Management General Ledger 180621 Application General Ledger Report ‐ Restore original control names and EpiGuids
GL Account Summary Report [EWA] ‐ Error is displayed when clicking Segment 
10.1.500 Financial Management General Ledger 180737 Application Search button
General Ledger Report ‐ Open With>Account Segment Values Entry opens empty 
10.1.500 Financial Management General Ledger 180782 Application form for selected segment
10.1.500 Financial Management General Ledger 180986 Application Journal Entry ‐ GLJrnDTL.createdate and GLJrnDtlMnl.createdate are not populated
10.1.500 Financial Management General Ledger 181110 Application General Ledger Import ‐ Incorrect Validation message is shown in log 
Posting Engine ‐ "Segment is defined as 'not used'" does not work correctly for 
10.1.500 Financial Management General Ledger 181298 Application dynamic segments
Posting Engine ‐ Enhance log writing to be parse‐friendly by external programs, i.e. 
10.1.500 Financial Management General Ledger 181306 Application PDT libraries
Journal Entry ‐ Error when posting edit list for multi‐book journal (Also fixed in 
10.1.500 Financial Management General Ledger 181467 Application 10.1.400.x)
Conversion Workbench ‐  Migration from 10.0 to 10.1 failed on conversion 230 with 
10.1.500 Financial Management General Ledger 181468 Application completed with errors
COA Import ‐ Get error "GLAccount ‐1100 cannot be imported: Object reference not 
10.1.500 Financial Management General Ledger 181901 Application set to an instance of an object." 
Review Journal ‐ Review journal for Bank Reconciliation posting available before 
10.1.500 Financial Management General Ledger 181911 Application posting process completed
General Ledger Account ‐ Accounts cannot be created using the List tab (Also fixed in 
10.1.500 Financial Management General Ledger 181937 Application 10.1.400.x)
Account Budget ‐ Copy Budgets (Actuals) hangs the application and does not 
10.1.500 Financial Management General Ledger 181941 Application complete
10.1.500 Financial Management General Ledger 182134 Application Journal Entry ‐ Trace Recording and PDT for GLJournalEntry Scenario
Journal Entry ‐ Records in TranGLC are not deleted in case multi‐book edit list is 
10.1.500 Financial Management General Ledger 182229 Application printed

Page 20
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Posting Engine ‐ Deadlock of GLJrndtlMnl table, single and multiBook, found on Titan 
10.1.500 Financial Management General Ledger 182356 Application environment (Also fixed in 10.1.400.x)
Using GLJrnDtlMnl.UpdateExt method to insert a record through Service Connect 
10.1.500 Financial Management General Ledger 182473 Application generates error
COA Export/Import ‐ Statistical UOMs and GL COA Reference Types are not handled 
10.1.500 Financial Management General Ledger 182774 Application correctly
Posting Engine ‐ Transaction Type compilation causes deadlock if several postings 
10.1.500 Financial Management General Ledger 182834 Application run after update
Journal Detail Tracker ‐ System takes more than 100 seconds to retrieve 100 records 
10.1.500 Financial Management General Ledger 182960 Application in Journal Number Search
10.1.500 Financial Management General Ledger 183060 Application Cannot print Asset Edit list if Asset Revaluation is added in two different cases
COA Import ‐ Cannot update COA info like GL Reference masks, Currency setup, etc., 
10.1.500 Financial Management General Ledger 183202 Application if file has partial Segment Setup and no account codes
Financial Reports ‐ Not arranged by Department when using customization (Also 
10.1.500 Financial Management General Ledger 183219 Application fixed in 10.1.400.x)
10.1.500 Financial Management General Ledger 183351 Application Synchronous GL posting of several groups causes an error on Balances Update
Inventory / WIP Reconciliation Report ‐ Part Class Inspection account setup does not 
10.1.500 Financial Management General Ledger 183416 Application affect INS‐MTL and PUR‐INS transactions
Generic Import Process ‐ GL Control calculation affects the performance for bigger 
10.1.500 Financial Management General Ledger 183552 Application groups
10.1.500 Financial Management General Ledger 183764 Application PE Log Viewer ‐ Does not work when there is an ampersand (&) in any field
GL Batch Balances ‐ Process never finishes processing in Active task tab; memory 
10.1.500 Financial Management General Ledger 184104 DB Specific Leak
10.1.500 Financial Management General Ledger 184166 Application Self Balancing Segment ‐ Statistical amount should not be copied from original line
COA Import ‐ F1 does not load correct link to description of Update Existing COA 
10.1.500 Financial Management General Ledger 184470 Application Mode options
10.1.500 Financial Management General Ledger 184487 Application Allocation Template: need to remove changes for SCR 178861
Financial Reports ‐ Report not changing categories for account between credit and 
10.1.500 Financial Management General Ledger 184614 Application debit, if balance is different from main account balance
Journal Entry ‐ Performance decrease in GLBook::GetByID()  and 
10.1.500 Financial Management General Ledger 184633 Application GLJournalEntry::Update()
Posting Engine ‐ Update Balances does not function when posting GL Allocations 
10.1.500 Financial Management General Ledger 185623 Application (Also fixed in 10.1.400.x)
10.1.500 Financial Management General Ledger 185787 Application CosAndWip can post parttran twice in the same posting
Payment Entry ‐ Select Invoices generates only one payment when selecting invoices 
10.1.500 Financial Management General Ledger 186324 Application with different bank
Cash Receipt Entry ‐ Unallocating credit memo and clicking Refresh triggers currency 
10.1.500 Financial Management General Ledger 186840 Application exchange error

Page 21
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Generate Rebate Transactions ‐ Incorrect AR Invoice creation after dummy schedule 
10.1.500 Financial Management General Ledger 187053 Application is executed
AR Invoice Balance Report ‐ Doc Opening Balance Total is added on every Total For 
10.1.500 Financial Management General Ledger 187074 Application Currency line
10.1.500 Financial Management General Ledger 187277 Application Journal Entry ‐ Unable to Post MultiCompany Journals
AR Invoice Balance Report ‐ Incorrect closing balance, payment are not being 
10.1.500 Financial Management General Ledger 187496 Application applied
Chart of Accounts  ‐ Segments are not renumbered if one was deleted; causes 
10.1.500 Financial Management General Ledger 188726 Application posting errors
Review Journal ‐ Error returned for Journal Entry Cancellation of Void AP Payment 
10.1.500 Financial Management General Ledger 188944 Application entry
10.1.500 Financial Management Inventory Management 174119 Application Part Transaction History Tracker ‐ Incorrect Running Total for STK‐AST PartTrans
10.1.500 Financial Management Job Management 176582 Application Capture COS / WIP Activity ‐ TranGLC duplicate when UK is configured
Capture COS / WIP Activity ‐ Last Run Starting/Ending date is displayed in US Date 
10.1.500 Financial Management Management Reporter 182740 Application format regardless of regional settings (Also fixed in 10.1.400.x)
10.1.500 Financial Management Multi‐Site Management 89137 Application Consolidation Definition ‐ New submenu item is misspelled
SSRS Consolidation Report ‐ Report displays additional records when using data from 
10.1.500 Financial Management Multi‐Site Management 159336 Application a converted Epicor 9 DB
Multi‐Company Direct Server Process ‐ EWA ‐ Multi‐Company Direct Server Process 
10.1.500 Financial Management Multi‐Site Management 163205 Application does not execute any process
Consolidate to Parent ‐ Using Fiscal Year Suffixes the user is able to select a previous 
10.1.500 Financial Management Multi‐Site Management 164785 Application Fiscal Year and Fiscal year suffix of a consolidation
10.1.500 Financial Management Multi‐Site Management 172121 Application Consolidate to Parent ‐ Source Control epishape not displaying correct status
Financial Management Multi‐Site Management 174060 Application Consolidate to Parent ‐ Consolidation is slow in Delta mode comparing to override 
10.1.500 mode (Posting)
Multi‐Company Direct Server Process ‐ Unable to create a Consolidated PO in 
10.1.500 Financial Management Multi‐Site Management 174090 Application External Site
Multi‐Company Direct Server Process ‐ Error Message is displayed in the Multi‐
Company Log File "Error: Unexpected XML declaration. The XML declaration must be 
the first node in the document, and no white space characters are allowed to appear 
10.1.500 Financial Management Multi‐Site Management 175048 Application before it. Line 2, position 3"
Financial Management Multi‐Site Management 175072 Application Consolidate to Parent ‐ Consolidation is slow in Delta mode comparing to override 
10.1.500 mode (Report)
Financial Management Multi‐Site Management 175073 Application Consolidate to Parent ‐ Consolidation is slow in Delta mode comparing to override 
10.1.500 mode (Transfer process)
10.1.500 Financial Management Multi‐Site Management 175245 Application Consolidate to Parent ‐ Need an option to prevent logging to increase performance
Consolidation Monitor ‐ Consolidation Monitor display the incorrect state of 
10.1.500 Financial Management Multi‐Site Management 175462 Application consolidation

Page 22
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Multi‐Company Direct Server Process ‐ Unable to Share a Global Part with the same 
10.1.500 Financial Management Multi‐Site Management 175638 Application ID
Consolidate to Parent ‐ When posting, error occurs: Cannot determine previous 
10.1.500 Financial Management Multi‐Site Management 175750 Application exchange rate (Also fixed in 10.1.400.x)
Multi‐Company Direct Server Process ‐ Error occurs without processing records from 
10.1.500 Financial Management Multi‐Site Management 176016 Application IntQueOut table (Also fixed in 10.1.400.x)
10.1.500 Financial Management Multi‐Site Management 176461 Application Consolidate to Parent ‐ Deadlock when running concurrent transfer processes
10.1.500 Financial Management Multi‐Site Management 177946 DB Specific Consolidate to Parent ‐ Errors when running simultaneous transfers
Multi‐Company Direct Server Process ‐ Object reference error when running the 
10.1.500 Financial Management Multi‐Site Management 178949 Application process
10.1.500 Financial Management Multi‐Site Management 179063 Application Consolidate to Parent ‐ Selecting Retrieve All causes business logic error 
10.1.500 Financial Management Multi‐Site Management 179394 Application Consolidate to Parent ‐ Posting options not working properly
Consolidation Definition ‐ Target Company DDL should only display local company 
10.1.500 Financial Management Multi‐Site Management 180250 Application and companies configured as external in local company
Consolidate to Parent ‐ Default periods not retrieved correctly when selecting fiscal 
10.1.500 Financial Management Multi‐Site Management 180375 Application year suffix
Generic Integration Server Process ‐ Process stops with error "Transaction has 
10.1.500 Financial Management Multi‐Site Management 180895 Application aborted"
Multi‐Company Direct Server Process ‐ InvalidOperationException error generated 
10.1.500 Financial Management Multi‐Site Management 182806 Application after Consolidated PO is received
Consolidate to Parent ‐ When posting a retro consolidation, the exchange rates are 
10.1.500 Financial Management Multi‐Site Management 182862 Application retrieved incorrectly (Also fixed in 10.1.400.x)
Integrated Table Workbench ‐ Validate option is not displaying information (error 
10.1.500 Financial Management Multi‐Site Management 183366 Application count) in error list field
Consolidate to Parent ‐ When posting a retro consolidation, the exchange rates are 
10.1.500 Financial Management Multi‐Site Management 183466 Application retrieved incorrectly (Also fixed in 10.1.400.x)
Multi‐Company Direct Server Process ‐ Error "Process already running" displays 
10.1.500 Financial Management Multi‐Site Management 184620 Application when submitting two different companies (Also fixed in 10.1.400.x)
Consolidate to Parent ‐ New year consolidation does not make necessary 
10.1.500 Financial Management Multi‐Site Management 187081 Application revaluation of previous year
Consolidate to Parent ‐ Not all consolidation posts are transferred to Target Book in 
10.1.500 Financial Management Multi‐Site Management 187750 Application Override Mode
Consolidate to Parent ‐ For exchange rate changes, the accounts are not being 
10.1.500 Financial Management Multi‐Site Management 187762 Application revaluated on Override Mode
Payroll Check Entry ‐ Reprinting checks using the Last Good Check Number causes an 
10.1.500 Financial Management Payroll 176041 Application error
Deduction ‐ Adding GL Controls to new Deductions sets the new GL Control to the 
10.1.500 Financial Management Payroll 179114 Application first deduction in the list
10.1.500 Financial Management Payroll 180553 Application Void Payroll Check Entry ‐ The information on the form is not totally cleared

Page 23
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


External Payroll Integration ‐ Update menus should not be restricted to Security 
10.1.500 Financial Management Payroll 188548 Application Managers only
External Payroll Integration ‐ External Pay Type Maintenance loads all of the pay 
10.1.500 Financial Management Payroll 188860 Application types when opened from the context menu
Rebates, Promotions and 
10.1.500 Financial Management Royalties 165426 Application Rebate Contract Entry ‐ 2nd line Rebate is not processed
Rebates, Promotions and  Rebate Contract Transaction Report ‐ When trying to print preview, system monitor 
10.1.500 Financial Management Royalties 166963 Application sends an error message
Rebates, Promotions and  Generate Rebate Transactions ‐ Calculated rebate amounts are not generated as 
10.1.500 Financial Management Royalties 171313 Application expected for Rebates with Break Type = Amount
Rebates, Promotions and  Rebate Transaction Adjustment ‐ When clicking the Refresh button, the "Record not 
10.1.500 Financial Management Royalties 172036 Application found" error appears
Rebates, Promotions and 
10.1.500 Financial Management Royalties 172700 Application Rebate Transaction Adjustment ‐ Some issues using void option
Rebates, Promotions and  Rebate Contract Entry ‐ Clicking Tree view when adding a new customer causes 
10.1.500 Financial Management Royalties 176202 Application details mismatch
Rebates, Promotions and  Rebate Contract Entry ‐ Action Copy Rebate does not consider if a customer has 
10.1.500 Financial Management Royalties 176203 Application Rebate Supplier for the copy
Rebates, Promotions and  Rebate Contract Transaction Report ‐ Invoice Date range and Trans Date range are 
10.1.500 Financial Management Royalties 176299 Application empty
Rebates, Promotions and 
10.1.500 Financial Management Royalties 177140 Application Rebate Transaction Adjustment (EWA) ‐ Some issues using void option
Financial Management Rebates, Promotions and  177208 Application Rebate Contract Status ‐ Status Dashboard does not display the  Paid to date 
10.1.500 Royalties information correctly
Rebates, Promotions and  Generate Rebate Transactions ‐ Restore original Rebate calculation with applying 
10.1.500 Financial Management Royalties 178724 Application rebate percent/amount only to value over Rebate Break (Also fixed in 10.1.400.x)
Rebates, Promotions and  Generate Rebate Transactions ‐ Credit Memos are not used in generated Rebate 
10.1.500 Financial Management Royalties 181480 Application transactions; therefore do not affect rebate calculations (Also fixed in 10.1.400.x)
Rebates, Promotions and  Invoice Entry AR ‐ Get Rebates option does not work when Credit Memo and 
10.1.500 Financial Management Royalties 182520 Application Payments are mixed in contract
Rebates, Promotions and  Rebate Contract Entry ‐ Customer override does not work with Rebate Form ‘Credit 
10.1.500 Financial Management Royalties 184596 Application Memo’
HH Package Control Parent Master ‐ EDI data validation for mixed masters (Also 
10.1.500 Production Management Data Collection 172931 Application fixed in 10.1.400.x)
10.1.500 Production Management Data Collection 173986 Application HH Package Control ‐ Overlay Validate ‐ Validation problems
10.1.500 Production Management Data Collection 174268 Application HH Package Control Parent Master & Mixed ‐ Issues found for Print
10.1.500 Production Management Data Collection 175077 Application Work Queue ‐ Grid for Current Work TAB has blank EXUD field
HH Package Control Adhoc Receipt To Inventory ‐ Whse/Bin on PCID <> PartBin PCID 
10.1.500 Production Management Data Collection 175112 Application when receive staged PCID to different whse

Page 24
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


HH Package Control Adhoc Receipt To Inventory ‐ 2nd pass incorrect focus action 
10.1.500 Production Management Data Collection 175143 Application using HH menu
Start Production Activity ‐ "Operation setup is not complete" error occurs although 
10.1.500 Production Management Data Collection 175168 Application setup operation was completed previously (Also fixed in 10.1.400.x)
HH Package Control Inventory Transfer ‐ After select a Bin, it is not retrieved in the 
10.1.500 Production Management Data Collection 175271 Application screen
10.1.500 Production Management Data Collection 175294 Application Report Quantity ‐ Incorrect Part WIP for lot tracked materials
Work Queue ‐ When adding Labor Qty in a Setup Activity, this quantity is not added 
10.1.500 Production Management Data Collection 175415 Application to the Production Qty
HH Package Control Inventory Transfer ‐ PCIDs for MASTER and MIXED are 
10.1.500 Production Management Data Collection 175703 Application generating a PartBin records incorrectly
HH Package Control Inventory Transfer ‐ PCID columns are not populated in the Part 
10.1.500 Production Management Data Collection 175712 Application Transaction history tracker
HH Package Control Inventory Transfer ‐ No error is displayed when enter a PCID 
10.1.500 Production Management Data Collection 175773 Application with status EMPTY
HH Package Control Overlay PCID Label Validation ‐ If PCID Configuration does not 
10.1.500 Production Management Data Collection 175867 Application allow voids, stop the user to continue with the validate process
10.1.500 Production Management Data Collection 175869 Application HH Package Control Overlay PCID Label Validation ‐ TargetBinNum is not populated
HH Package Control Inventory Transfer ‐ Quality warehouse type rules are not 
10.1.500 Production Management Data Collection 176042 Application validated
HH Package Control Inventory Transfer ‐ Not displaying the PCID info when a PCID is 
10.1.500 Production Management Data Collection 176319 Application scanned
10.1.500 Production Management Data Collection 176613 Application An empty message is displayed when entering an invalid resource ID in MES
HH Package Control ‐ Repack Reclass By PCID ‐ Target PCID is not cleared after 
10.1.500 Production Management Data Collection 177428 Application tabbing out (Also fixed in 10.1.400.x)
HH Package Control ‐ Repack Reclass By PCID ‐ Target Warehouse & Bin are not 
10.1.500 Production Management Data Collection 177444 Application populated in the PkgControlSplitMerge table (Also fixed in 10.1.400.x)
HH Package Control Adhoc Receipt To Inventory ‐ Inventory is subtracted from 
10.1.500 Production Management Data Collection 177510 Application incorrect warehouse/bin
HH Package Control ‐ Repack Reclass By PCID should not delete zero qty 
10.1.500 Production Management Data Collection 177695 Application PkgControlItem
Handheld Package Control Tracker PCID ‐ PCID column on search grid should default 
10.1.500 Production Management Data Collection 177697 Application to be wider
Handheld Package Control Tracker PCID ‐ Returnable & extendable flags in grid 
10.1.500 Production Management Data Collection 177778 Application should map to returnable & extendable flags (Also fixed in 10.1.400.x)
HH Package Control ‐ Repack Reclass By PCID ‐ PCID generated for remaining 
10.1.500 Production Management Data Collection 177785 Application quantity should have Partial = True
Package Control ID Adhoc Job Output ‐ Transaction field set to DEFAULT when 
10.1.500 Production Management Data Collection 177991 Application screen run from main app (Also fixed in 10.1.400.x)

Page 25
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


HH Package Control ‐ Repack Reclass By PCID ‐ Incorrect error is displayed if there is 
10.1.500 Production Management Data Collection 178217 Application no printer for PKG‐RPK transaction
HH Package Control ‐ Overlay PCID and Label ‐ PCID is not generated in the PartBin 
10.1.500 Production Management Data Collection 178242 Application table
HH Package Control Overlay PCID Label Validation ‐ Redefine transaction scope to 
10.1.500 Production Management Data Collection 178286 Application avoid data corruption
HH Package Control ‐ Has Been Overlaid checkbox and Source Repack PCID are 
10.1.500 Production Management Data Collection 178739 Application populated incorrectly (Also fixed in 10.1.400.x)
HH Package Control Parent Master ‐ Unable to create a Parent Master when Master 
10.1.500 Production Management Data Collection 178830 Application Label type has no Part ID assigned
HH Package Control Job Receipt To Inventory ‐ Focus is set to the Warehouse field 
BUT needs to have focus at the PCID field (if more than 1 bin then bin will have 
10.1.500 Production Management Data Collection 178948 Application focus)
HH Package Control Adhoc Receipt To Inventory ‐ Warehouse Button is configured 
as F5, the other HH screens that have the Warehouse defined as F4; need to be 
10.1.500 Production Management Data Collection 178956 Application consistent
HH Package Control Parent Master ‐ BT file should include additional fields that need 
to be added to the Master label; need to add calculated fields (Also fixed in 
10.1.500 Production Management Data Collection 179060 Application 10.1.400.x)
10.1.500 Production Management Data Collection 179345 Application HH Package Control Parent Master ‐ Multiple issues reported
HH Package Control Parent Mixed ‐ Max Part Quantity Per Label field on Mixed 
10.1.500 Production Management Data Collection 179478 Application Master Label Types
HH Package Control Parent Mixed ‐ BT file needs to include additional fields that 
need to be added to the Mixed label; including the summarized data that must be 
10.1.500 Production Management Data Collection 179584 Application part of the required label format for  Automotive (Also fixed in 10.1.400.x)
Handheld Package Control Tracker PCID ‐ Package Control Search grid needs to get 
10.1.500 Production Management Data Collection 180302 Application cleaned up
End Activity ‐ Values not updated for the following fields: JobOper.QtyCompleted 
10.1.500 Production Management Data Collection 180352 Application and JobHead.QtyCompleted (Also fixed in 10.1.400.x)
HH Package Control Confirm Master and Mixed ‐ Incorrect error message is 
10.1.500 Production Management Data Collection 181418 Application displayed when assigning a PCID to a different Master / Mix
10.1.500 Production Management Data Collection 181874 Application End Activity ‐ Scrap Reason Codes set to False display in search
10.1.500 Production Management Data Collection 182019 Application Start Activity ‐ Invalid Resource Group error when trying to override an operation
Work Queue ‐ Records cannot be selected in the tree using the mouse cursor (Also 
10.1.500 Production Management Data Collection 182278 Application fixed in 10.1.400.x)
HH Package Control ‐ Repack Reclass By PCID ‐ Split/Merge record should be created 
10.1.500 Production Management Data Collection 183182 Application for new remaining Qty PCID
Start Activity ‐ Warning messages display even when the Operations are Start‐to‐
10.1.500 Production Management Data Collection 183445 Application Start and Finish‐To‐Finish

Page 26
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


HH Package Control Parent Master ‐ MES Error message displayed on HH package 
10.1.500 Production Management Data Collection 183569 Application Control Parent Master and Mix
10.1.500 Production Management Data Collection 184659 Application HH Package Control Overlay PCID Label Validation ‐ Needs to be specific
HH Package Control ‐ Repack Reclass By PCID ‐ Incorrect error when a 
10.1.500 Production Management Data Collection 184673 Application LabelStatus=VOID or whem the label type <> Internal or Individual
10.1.500 Production Management Data Collection 184698 Application HH Package Control Job Receipt To Inventory ‐ Scanned data cleared on error
10.1.500 Production Management Data Collection 184702 Application HH Package Control Job Receipt To Inventory
HH Package Control Inventory Transfer ‐ When pressing the ENTER key, the selected 
10.1.500 Production Management Data Collection 184711 Application record highlighted does not load 
10.1.500 Production Management Data Collection 185310 Application HH Package Control Parent Mixed ‐ Shows incomplete message
HH Package Control Adhoc Receipt To Inventory ‐ Does not consume Returnable or 
10.1.500 Production Management Data Collection 185852 Application Expendable Packages if configured to do so
HH Package Control Parent Mixed ‐ When a child label is scanned or manually typed 
in and the LPC status is either "PACK", "SHIPPED", or "INVOICED", the message 
10.1.500 Production Management Data Collection 186342 Application displayed is “Status is not STOCK”
HH Package Control Job Receipt To Inventory ‐ Incorrect error message transaction a 
10.1.500 Production Management Data Collection 187198 Application PCID from closed job
End Activity ‐ When ending an activity , WIP does not take the value of Current Field 
10.1.500 Production Management Data Collection 187591 Application if you made an Issue Material before
10.1.500 Production Management Data Collection 188017 Application Start Activity ‐ MES ‐ Starting 2nd Operation displays warning messages
HH Package Control Parent Mixed ‐ Warnings should be displayed as Exceptions to 
10.1.500 Production Management Data Collection 188124 Application fit in the HH screen size
HH Package Control Job Receipt To Inventory ‐ When scanning a PCID into inventory, 
10.1.500 Production Management Data Collection 188778 Application it overwrites the ‘Created By’ and 'Created Date' data
HH Package Control ‐ Repack Reclass By PCID ‐ Transaction type is not set when PCID 
10.1.500 Production Management Data Collection 188892 Application is generated
HH  Package Control Confirm Master and Mixed ‐Using confirm Mix/Master PCID 
10.1.500 Production Management Data Collection 189407 Application does not validate EDI Label Values for Parent PCID MASTER
Mfg Lead Time Calculation Using company calendar if no calendar on resource or 
10.1.500 Production Management Engineering 153434 Application resource group
Engineering Workbench ‐ Completing tasks in the Engineering Workbench Updated 
10.1.500 Production Management Engineering 157407 Application twice
Mfg Lead Time Calculation ‐ Mfg Lead Time is calculated incorrectly when having a 
10.1.500 Production Management Engineering 161793 Application receive time on a material and days out for a subcontract
Mfg Lead Time Calculation ‐ Lead Time for Subassembly is double‐counted in Mfg 
10.1.500 Production Management Engineering 166213 Application Lead Time
Costing Workbench ‐ Cost Roll up is not rolling costs up correctly, BOM Cost is in an 
10.1.500 Production Management Engineering 170536 Application endless loop when having circular references

Page 27
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Mfg Lead Time Calculation ‐ Incorrect Lead Times when materials are checked as Pull 
10.1.500 Production Management Engineering 171703 Application As Assembly
Method Tracker ‐ Effective Revision messages are displayed twice when method 
10.1.500 Production Management Engineering 173572 Application tracker is loaded from Part Entry
Engineering Workbench ‐ View Costs discrepancy when using Transfer Material from 
10.1.500 Production Management Engineering 173602 Application another Site
10.1.500 Production Management Engineering 174263 Application Engineering Workbench ‐ Default Next Milestone is ignored when completing a Task
BOM Listing ‐ Report is not printed correctly the Reference Designators IDs (Also 
10.1.500 Production Management Engineering 174987 Application fixed in 10.1.400.x)
10.1.500 Production Management Engineering 175169 Application Engineering Workbench ‐ Unable to edit Material and Operation Attachments
BOM Listing ‐ Report converted to WORD only displays the column Headers on the 
10.1.500 Production Management Engineering 175173 Application first page
Engineering Workbench ‐ User can enter Maintenance operations, which are invalid 
10.1.500 Production Management Engineering 175181 Application for this screen
Engineering Workbench‐Unable to Re‐sequence Operations when having 
10.1.500 Production Management Engineering 175186 Application attachments in the first operation
10.1.500 Production Management Engineering 175196 Application Engineering Workbench ‐ Unable to see Material Attachments in Tree view
Engineering Workbench ‐ Check Out Parts on Part Entry does not create its Memo 
10.1.500 Production Management Engineering 175213 Application like in Epicor 9.05.703
Method Tracker ‐ Verify the Operations for the Revision, when moving to the 
10.1.500 Production Management Engineering 175309 Application Operation tab, the System Clear the Screen
Method Tracker ‐ Quantity Factors Qty/Parent field only allows 2 digits after the 
10.1.500 Production Management Engineering 175336 Application decimal point
BOM Cost ‐ Operation Cost calculation is different when using Serial Number 
10.1.500 Production Management Engineering 175611 Application Material
Engineering Workbench Setting pull as assembly is True for materials that are 
10.1.500 Production Management Engineering 175785 Application defined as type transfer and non‐stock
Method Tracker ‐ When opened from a Context Menu, form is cleared after 
10.1.500 Production Management Engineering 176020 Application changing focus between tabs
10.1.500 Production Management Engineering 177069 Application Engineering Workbench ‐ Leaving PartRev.Plant field blank in some scenarios
Availability ‐ Report does not allow a part ID with more than 30 characters when we 
10.1.500 Production Management Engineering 177076 Application add it manually
Exclick Part Checkout ‐ Drawing revision field is not changing to the corresponding 
10.1.500 Production Management Engineering 177449 Application revision selected
BOM Listing Report ‐ The column headers are not displayed correctly and cannot be 
10.1.500 Production Management Engineering 178751 Application read
Mfg Lead Time Calculation ‐ Processes using lead time from expired Supplier Price 
10.1.500 Production Management Engineering 179049 Application List to calculate the cumulative time

Page 28
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


BOM Listing ‐ Report does not print the information in order when printed on the 
10.1.500 Production Management Engineering 179898 Application indenter level (Also fixed in 10.1.400.x)
10.1.500 Production Management Engineering 180233 Application Method Tracker ‐ View cost screen displays incorrect total for some methods
10.1.500 Production Management Engineering 180342 Application Engineering Workbench ‐ Server stops working after doing check in
Engineering Workbench ‐ Purchased part from a different site cannot be added as 
10.1.500 Production Management Engineering 180479 Application Material; object reference error is displayed
Engineering Workbench ‐ Dragged and dropped Materials do not load by default on 
10.1.500 Production Management Engineering 182523 Application Materials tab and cause an error when changing tabs (Also fixed in 10.1.400.x)
10.1.500 Production Management Engineering 182789 Application SQL Injection warning in BMM20
Engineering Workbench ‐ Not allowing to add manually operations to an alternate 
10.1.500 Production Management Engineering 183225 Application method
Engineering Workbench ‐ Application does not respond, unable to check a part (Also 
10.1.500 Production Management Engineering 183297 Application fixed in 10.1.400.x)
Engineering Workbench ‐ Tree is not correctly displaying the next milestones when 
10.1.500 Production Management Engineering 183936 Application having two milestones with same taskID
Engineering Workbench ‐ Focus of the revision is not changing when select different 
10.1.500 Production Management Engineering 184592 Application operation under the tree view (Also fixed in 10.1.400.x)
Engineering Workbench ‐ The materials that are checked out in an active revision 
10.1.500 Production Management Engineering 184705 Application assign their materials and operations to the top material
Engineering Workbench ‐ Unable to check in a copied and edited Sales kit, Business 
10.1.500 Production Management Engineering 184896 Application Layer Exception error message is displayed
10.1.500 Production Management Engineering 185829 Application Method Tracker ‐ The BOM of the subassemblies are not displayed
10.1.500 Production Management Engineering 188376 Application Mfg Lead Time Calculation ‐ Add the Top Level Time calculation info in Part Tracker
Enhanced Quality 
10.1.500 Production Management Assurance 157552 Application Inspection Results Entry ‐ EWA Search does not retrieve records + blank dialog
Enhanced Quality  Inspection Specification ‐ EWA form does not allow entering a pass list or fail list 
10.1.500 Production Management Assurance 159811 Application through EWA
Enhanced Quality  Inspection Results Entry ‐ Unable to select Serial Numbers when a Part contains 
10.1.500 Production Management Assurance 174646 Application Inspection Plans
Enhanced Quality  Inspection Results Entry ‐ Combo box values are lost when reconfiguring the 
10.1.500 Production Management Assurance 176693 Application Inspection Sample (Also fixed in 10.1.400.x)
Enhanced Quality  Inspection Plan ‐ Error when entering results to a configurator with a Radioset with 
10.1.500 Production Management Assurance 178072 Application Inspection Attributes
Enhanced Quality  Inspection Results Entry ‐ Cannot reconfigure if there is an empty Date and Decimal 
10.1.500 Production Management Assurance 178647 Application values are not kept
Enhanced Quality  Engineering Workbench ‐ Set Hours Per Mach value is not retrieved for an assembly 
10.1.500 Production Management Assurance 183329 Application operation (Also fixed in 10.1.400.x)
Enhanced Quality 
10.1.500 Production Management Assurance 187274 Application Specification ‐ Rounds automatically the Initial Decimal field

Page 29
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Expense Report ‐ Extra decimals are displayed on Standard and Optional SSRS 
10.1.500 Production Management Expense Management 158308 Application Report styles
10.1.500 Production Management Expense Management 167697 Application Expense Report ‐ Open With option is not displayed on ID field context menu
10.1.500 Production Management Expense Management 168445 Application Time and Expense Tracker ‐ EWA ‐ T&E Entry & Tracker cannot be started in EWA
10.1.500 Production Management Field Service 173818 Application Service Contract Entry ‐ Not invoiced Renewal Contracts cannot be deleted
Service Call Center ‐ Attachment cannot be deleted if Service Call has a Serial 
10.1.500 Production Management Field Service 173863 Application Number value
Service Call Center ‐ After create a new line the NavTool duplicates the value of the 
10.1.500 Production Management Field Service 175204 Application Call ID
Service Job Entry ‐ Operation search is not displaying the record for the value 
10.1.500 Production Management Field Service 175208 Application selected in search results display
Service Job Entry ‐ Cross‐reference Part is not retrieved after create a new Service 
10.1.500 Production Management Field Service 175260 Application Call Job
Service Call Center ‐ The cross‐reference part is not filled in Line tab after select a 
10.1.500 Production Management Field Service 175275 Application Part
Service Contract Entry ‐ After creating or saving a new line, the NavTool duplicates 
10.1.500 Production Management Field Service 175440 Application the value of the Contract Num
Warranty Code ‐ Trying to delete warranty code, validation messages displayed 
10.1.500 Production Management Field Service 176679 Application twice
10.1.500 Production Management Field Service 176731 Application SSRS Warranty Analysis Report ‐ Printed Parts shipped and without invoice
Service Job Entry ‐ No Unit Price value is set when Material is added from an RMA 
10.1.500 Production Management Field Service 178267 Application Disposition
Miscellaneous Shipment Entry ‐ Packing Slip report does not display decimal values 
10.1.500 Production Management Field Service 180343 Application on Quantity (Also fixed in 10.1.400.x)
Service Call Center ‐ Error message appears when adding a service contract to a 
10.1.500 Production Management Field Service 180761 Application service call with non‐USA date format used (Also fixed in 10.1.400.x)
Miscellaneous Shipment Entry ‐ Selecting a Control added to a Custom Sheet and 
10.1.500 Production Management Field Service 181324 Application bound to MscShpHd causes the application to stop working
10.1.500 Production Management Field Service 181809 Application Service Call Center ‐ Access denied error message when creating a new Memo
Miscellaneous Shipment Entry ‐ "Index was outside the bounds" error when typing 
10.1.500 Production Management Field Service 182057 Application on Country of Origin field
Service Contract Entry ‐ Problems with the Recurring Service Contract Billing process 
10.1.500 Production Management Field Service 185304 Application (Also fixed in 10.1.400.x)
Service Contract Entry ‐ Serial numbers are missing when renewing a contract that 
10.1.500 Production Management Field Service 188134 Application had lines deleted
Package Control ID ‐ Inventory Transfer not handling Master or Mixed Masters 
10.1.500 Production Management IW Content Pack 173436 Application correctly
10.1.500 Production Management Job Management 146282 Application Labor Edit ‐ Date is displayed twice on the report for each Employee
10.1.500 Production Management Job Management 150057 Application Labor Expense ‐ Service Job type is not displayed in the list

Page 30
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


10.1.500 Production Management Job Management 152803 Application Timesheet Entry ‐ Labor Rate is displayed when Advance Labor Rate is False
10.1.500 Production Management Job Management 161346 Application Serial Number Assignment ‐ EWA ‐ Error when trying to create serial numbers
Scheduling Engine ‐ The number of Scheduling Blocks is reset to 1 after saving a job 
10.1.500 Production Management Job Management 163418 Application with multiple Scheduling Blocks
Supplier ‐ Payment Method was disabled when adding a Bank/Remit in the Banks 
10.1.500 Production Management Job Management 163825 Application grid
10.1.500 Production Management Job Management 163836 Application Supplier ‐ Panels were expanded when the window was maximized
10.1.500 Production Management Job Management 163911 Application Supplier ‐ When linking global supplier, the skip option sends an error
Job Entry ‐ Error is displayed when scheduling a job to make to stock a part that is 
10.1.500 Production Management Job Management 164105 Application only setup on another site
10.1.500 Production Management Job Management 167334 Application Job Entry ‐ Error when dropping a configurable subassembly in the job tree
10.1.500 Production Management Job Management 169641 Application Shop Load ‐ The fields Capacity, Load and Overload are not calculated correctly
Work In Process ‐ EWA ‐ The search results are not displayed when the Enter key is 
10.1.500 Production Management Job Management 170169 Application Press in the filter options
Not Authorized Sites available for edit in System Setup > Company/Site Maintenance 
10.1.500 Production Management Job Management 171117 Application > Site Maintenance
Supplier ‐ Change to the documentation regarding Bank Identifier and Routing Num 
10.1.500 Production Management Job Management 171674 Application fields
Supplier ‐ Purchase Point Country and Language is overwritten when entering a 
10.1.500 Production Management Job Management 172572 Application different country for Manifest Info > General ‐ Int
10.1.500 Production Management Job Management 172741 Application Supplier ‐ zSupplierPP and zSupplierSearch BAQs display incorrect results
10.1.500 Production Management Job Management 173231 Application Package Control Maintenance PCID ‐ Search needs to be enhanced
Job Entry ‐ Get Details from Quote Template (or Order Job Wizard) applying the 
Material Burden % from Quote to sum of Mfg Elements instead of to only the Unit 
10.1.500 Production Management Job Management 173327 Application Material Cost
Job Traveler EWA ‐ When the report is printed and then filters are selected, the filter 
10.1.500 Production Management Job Management 173369 Application information is not printed
Inventory/WIP Reconciliation Report‐ Includes Invoice Transactions from Drop Ship 
10.1.500 Production Management Job Management 173385 Application when filter by Job
10.1.500 Production Management Job Management 173518 Application Production Activity Tracker ‐ Search Panel fields are unaligned
Job Entry ‐ Get details stops with errors for a job created from an order that was 
10.1.500 Production Management Job Management 173717 Application created from configured quote line
10.1.500 Production Management Job Management 173728 Application Job Entry ‐ Audit Log time column is not formatted as HH:MM:SS
Job Traveler ‐ SSRS Word Output Format Oper. Qty column field is overlapping the 
10.1.500 Production Management Job Management 173785 Application Operations divisor line
10.1.500 Production Management Job Management 173891 Application Job Entry ‐ Collapse Assembly not working for sub assemblies on the fly
Job Entry \ Quote Entry \ EWB Add new material line should NOT default quantity 
10.1.500 Production Management Job Management 174006 Application per of one
10.1.500 Production Management Job Management 174258 Application Labor Edit ‐ Report is not displaying the full Service Job Number

Page 31
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Planning Workbench ‐ Error messages displayed when using Submit Process to 
10.1.500 Production Management Job Management 174439 Application create new Job
Job Entry ‐ The Inspection Plan and Specification ID fields are cleared when any 
10.1.500 Production Management Job Management 174637 Application operation field is updated
Capture COS / WIP Activity ‐ When doing a negative Job to Job Receipt the WIP 
10.1.500 Production Management Job Management 174707 Application Balance on Parent Job is not cleared (Also fixed in 10.1.400.x)
Site (Plant) ‐ Selecting calendar from search causes the following error: Record not 
10.1.500 Production Management Job Management 174839 Application available (Also fixed in 10.1.400.x)
10.1.500 Production Management Job Management 174842 Application Site (Plant) ‐ Change Log screen does not open for newly added site
10.1.500 Production Management Job Management 174941 Application Job Entry ‐ Create one off bundle for scalability testing
10.1.500 Production Management Job Management 175017 Application Job Tracker ‐ The Type field is missing
Inventory / WIP Reconciliation Report ‐ Header displays All Sites when Current Site 
10.1.500 Production Management Job Management 175022 Application option is selected
10.1.500 Production Management Job Management 175165 Application Plant Configuration Time Zone Offset is updateable
10.1.500 Production Management Job Management 175257 Application Production Detail ‐ Job Number does not display in the bottom‐right corner
Job Entry ‐ Dragging subcontract operation onto job does not check Serial Numbers 
10.1.500 Production Management Job Management 175324 Application Required
Production Calendar ‐ Not displaying Suppliers when a calendar is selected from 
10.1.500 Production Management Job Management 175338 Application Search form
Job Entry ‐ When using a specific set of steps, it is possible add a material to a job 
10.1.500 Production Management Job Management 175401 Application and for it to be issued from stock from a site where part is not setup
10.1.500 Production Management Job Management 175608 Application Job Closing ‐ Job Closing Backflush Quantity is overstated on some materials
Kanban Receipts ‐ Message displayed on Update button click Object reference not 
10.1.500 Production Management Job Management 175643 Application set to an instance of an object
Job Entry ‐ If there is an unapproved subassembly in the BOM, get details does not 
10.1.500 Production Management Job Management 175772 Application display any error message
Planning Workbench ‐ Not all of the Job Suggestions created by MRP are displayed 
10.1.500 Production Management Job Management 175791 Application in Planning Workbench
Job Entry ‐ When an operation is completed and the Job is split, the labor 
10.1.500 Production Management Job Management 175804 Application transaction is not passed to the new Job
Job Entry ‐ Issue in Job Entry results in Time Phase including On Hand from a Remote 
10.1.500 Production Management Job Management 175972 Application Site
10.1.500 Production Management Job Management 176017 Application Project Analysis Export ‐ Actual Current Cost Labor is displayed rounded
Job Entry ‐ Second Level subassembly is not copied when drag/drop from Quote 
10.1.500 Production Management Job Management 176180 Application Methods for Part on the Fly and Part in Part Master
Quick Job Entry displays an error when clicking the Next Job button or putting 
10.1.500 Production Management Job Management 176250 Application manually a Job number ‐ only for metro style
Inventory / WIP ‐ Reconciliation Report does not display posted data filtered by 
10.1.500 Production Management Job Management 176282 Application Current Site (Also fixed in 10.1.400.x)

Page 32
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Job Entry ‐ Start and Due dates for Subassembly Operations display today's date 
10.1.500 Production Management Job Management 176412 Application before scheduling the Job
Job Entry ‐ When changing an inspection to another inspection, the new inspection 
10.1.500 Production Management Job Management 176516 Application is not displayed in the Tree view
Job Entry ‐ The JobOper.RunQty value is different than the Run Qty displayed in the 
10.1.500 Production Management Job Management 176708 Application Job Entry screen
Production Detail ‐ When Get Defaults is made using Production Detail Report form 
10.1.500 Production Management Job Management 176754 Application in Job entry, the Job is cleared
Production Detail Report displays the following error for a specific job: 
10.1.500 Production Management Job Management 176767 Application "ReportProcessingException_ComparisonError" (Also fixed in 10.1.400.x)
Work In Process ‐ When one site is selected the report has "All sites" at the header 
10.1.500 Production Management Job Management 176836 Application besides the Job number and date
Plant Configuration ‐ Package Control Time and Expense Default Employee is filtered 
10.1.500 Production Management Job Management 176841 Application by material handler (Also fixed in 10.1.400.x)
Work In Process ‐ Sites that are not selected for the employee in User Account 
10.1.500 Production Management Job Management 176846 Application Maintenance are displayed in the Site Filter tab on the Report window
10.1.500 Production Management Job Management 176866 Application Job Entry ‐ Cannot Load Jobs that comes from Quotes that requires Part on the fly
Job Entry ‐ Divide by zero error comes up when trying to Get Details for some parts 
10.1.500 Production Management Job Management 176877 Application order lines
10.1.500 Production Management Job Management 177221 Application Project Analysis Export ‐ Violation of PRIMARY KEY object 'ErpHXProject'
Shop Load ‐ Incorrect values are displayed for Load hours in Dutch format culture 
10.1.500 Production Management Job Management 177267 Application (Also fixed in 10.1.400.x)
Job Closing ‐ Job with Serial Numbers is not closed if shipping item before closing job 
10.1.500 Production Management Job Management 177278 Application (Also fixed in 10.1.400.x)
10.1.500 Production Management Job Management 177281 Application Job Entry ‐ Unable to drag/drop non‐stock parts as subassemblies in the Tree view
Implement the ability to update JobOper.PrinterID, lastPrintedDate, LastPCIDPrinted 
10.1.500 Production Management Job Management 177451 Application and CurrrentPkgCode without making Prevent Changes = false
Production Detail ‐ When more than 10 records of Service jobs are selected, the 
10.1.500 Production Management Job Management 177548 Application report is not printed
Job Status ‐ Sites that are not selected for the employee in User Account 
10.1.500 Production Management Job Management 177767 Application Maintenance, are displayed in the Site Filter Tab on the Report Window
Project Analysis Export ‐ Build Project Analysis is not finished due to timeout error 
10.1.500 Production Management Job Management 177907 Application for several projects (Also fixed in 10.1.400.x)
10.1.500 Production Management Job Management 177984 Application Capture COS / WIP Activity ‐ Cannot post MFG‐VAR, if line has 10 or more digits
10.1.500 Production Management Job Management 178187 Application Job Entry ‐ Inactive Resources can be entered in the system
10.1.500 Production Management Job Management 178327 Application Job Entry ‐ Unable to delete a Scheduling Resource added to a Job
Job Entry ‐ Subassemblies inside of a Phantom BOM are not linked to the correct 
10.1.500 Production Management Job Management 178691 Application operation when getting details (Also fixed in 10.1.400.x)

Page 33
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Job Tracker ‐ Quantity Only operations is using incorrect Production Labor Costing 
10.1.500 Production Management Job Management 178759 Application from Resource Group level

10.1.500 Production Management Job Management 178797 Application Work In Process ‐ WIP Report not displaying the totals by Product Group only by Job


Production Planner WB ‐ Production Planner Workbench Process does not complete 
10.1.500 Production Management Job Management 178912 Application when having transfer orders
Job Entry ‐ Job estimated machine setup hour is not taking into consideration the 
10.1.500 Production Management Job Management 178947 Application job operation scrap quantity
Job Entry ‐ The customized fields remain blank, the information is not retrieved for 
10.1.500 Production Management Job Management 179310 Application Subassemblies as it is with the top assembly
10.1.500 Production Management Job Management 179469 Application Job Entry ‐ Attachment is displayed twice when Get Details to a subassembly
Inventory / WIP Reconciliation Report ‐ Incorrect total is displayed and it is not 
10.1.500 Production Management Job Management 179549 Application consistent across other reports
Production Planner WB ‐ If selecting Include Released Jobs, the Consumed Quantity 
10.1.500 Production Management Job Management 179688 Application and Shortage Quantity on All Parts tab are incorrect
Master Production Schedule ‐ Hide from the List the Parent Part Number and Kit 
10.1.500 Production Management Job Management 180157 Application Type fields
Capture COS / WIP Activity ‐ Invoice transactions are not updated with job costs 
10.1.500 Production Management Job Management 180196 Application (Also fixed in 10.1.400.x)
10.1.500 Production Management Job Management 180232 Application Job Manager ‐ Invalid reference to column ERP.JMDemand.ParentRec
Capture COS / WIP Activity ‐ Invoice transactions are not updated with job costs 
10.1.500 Production Management Job Management 180359 Application (Also fixed in 10.1.400.x)
10.1.500 Production Management Job Management 180494 Application Job Entry ‐ Issued Quantity field in Job Entry against the JobMtl is an editable field
10.1.500 Production Management Job Management 180571 Application Job Entry ‐ User is able to change MTL that is linked to a purchase order
Kanban Receipts ‐ JM Kanban receipts do not backflush serialized materials in an 
10.1.500 Production Management Job Management 180622 Application Outbound serial tracked part
Job Entry ‐ Misspelled message in Job Entry when Reserve Inventory on Job Release 
10.1.500 Production Management Job Management 180712 Application is checked in Site Conf
Job Entry ‐ Issue while working with phantom parts and subassemblies (Also fixed in 
10.1.500 Production Management Job Management 180853 Application 10.1.400.x)
Job Entry ‐ Issue while working with phantom parts and subassemblies, screen 
10.1.500 Production Management Job Management 180869 Application freezes
10.1.500 Production Management Job Management 181069 Rule Job Receipt to Inventory: MFG‐STK is not costed correctly for subcontract operations
10.1.500 Production Management Job Management 181127 Application Job Entry ‐ PartWip Table has Orphaned Records from Deleted Job Operations
Job Closing ‐ Unable to close jobs for serial tracked parts with scrap rejected 
10.1.500 Production Management Job Management 181318 Application material (Also fixed in 10.1.400.x)
10.1.500 Production Management Job Management 181362 Application Job Receipt to Inventory ‐ Reverse Kanban Receipt after WIP cleared has no cost
Production Detail ‐ Actual Gross amount should be total all invoices and show all 
10.1.500 Production Management Job Management 181411 Application records on the report (Also fixed in 10.1.400.x)

Page 34
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Job Entry ‐ Available quantity field is not updated correctly under Job Entry > 
10.1.500 Production Management Job Management 181494 Application Subassemblies tab (Also fixed in 10.1.400.x)
10.1.500 Production Management Job Management 181671 Application Job Entry ‐ Material Burden Unit Cost and rate are not synchronized
10.1.500 Production Management Job Management 181711 Application Job Entry ‐ Subcontract part description is not updated when part is changed
10.1.500 Production Management Job Management 181818 Application Kanban Receipts ‐ It is allowed to use inactive parts (Also fixed in 10.1.400.x)
10.1.500 Production Management Job Management 181860 Application Alert Group ‐ Projects that still have the tag “TO_CONVERT_2012R”
Job Entry ‐ When the phantom part is collapse the material added in the ASM 0 has 
10.1.500 Production Management Job Management 181873 Application the Qty/Parent = 0
10.1.500 Production Management Job Management 181879 Application Job Entry ‐ Incorrectly displaying the customer part cross‐reference description
10.1.500 Production Management Job Management 182059 Application Subcontract Status ‐ The report changes the sort order
10.1.500 Production Management Job Management 182074 Application Job Entry ‐ Get Detail is slow for a revision with few operations and materials
10.1.500 Production Management Job Management 182133 Application Job Entry ‐ Divide by zero error when attempting to Split Job
10.1.500 Production Management Job Management 182170 Application Subcontract Status ‐ Report does not display UOM for some records
Planning Workbench ‐ Planning workbench search is not returning the results 
10.1.500 Production Management Job Management 182281 Application correctly per the Starting At field
10.1.500 Production Management Job Management 182383 Application Planning Workbench ‐ Creating jobs with inconsistent leading zeroes
Serial Number Assignment ‐ Object Reference Error when saving on Serial Number 
10.1.500 Production Management Job Management 182423 Application Assignment screen
Backflush Material ‐ Backflush for a Material in a Phantom BOM does not issue the 
10.1.500 Production Management Job Management 182526 Application scrap percentage (Also fixed in 10.1.400.x)
10.1.500 Production Management Job Management 182687 Application Job Entry ‐ Cannot enter text to Changes window when it appears at the first time
Department JC ‐ It is not allowed to create departments after creating COA 
10.1.500 Production Management Job Management 182748 Application Segments (Also fixed in 10.1.400.x)
Job Entry ‐ Save default option for Job Traveler does not work for two specific check 
10.1.500 Production Management Job Management 182823 Application boxes
10.1.500 Production Management Job Management 183136 Application Work In Process ‐ Columns are without numeric format
Work In Process ‐ How to get same results as 9.05 WIP report (Also fixed in 
10.1.500 Production Management Job Management 183238 Application 10.1.400.x)
Revision Compare ‐ Not all assemblies level operations are displayed (Also fixed in 
10.1.500 Production Management Job Management 183264 Application 10.1.400.x)
Job Entry ‐ Error displays when Get Details via Quote Entry and Operation without 
Job Management module License: "The module JobManagement is not licensed or 
10.1.500 Production Management Job Management 183459 Application enabled" (Also fixed in 10.1.400.x)
10.1.500 Production Management Job Management 183909 Application Job Entry ‐ String Format Code Issues
Inventory / WIP Reconciliation Report ‐ Not all of Phantom Purge WIP to 
10.1.500 Production Management Job Management 184277 Application transactions are displayed
Job Entry ‐ The "Synchronize Req By Date With Demand Links" option is not set for 
10.1.500 Production Management Job Management 184408 Application Unfirm Jobs
10.1.500 Production Management Job Management 184428 Application Return Assembly ‐ The Valid assembly is required error is displayed

Page 35
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


10.1.500 Production Management Job Management 184533 Application Production Calendar ‐ Cannot Delete Exceptions
Revision Compare ‐ Comparison of two Part Revisions returns incorrect results in 
10.1.500 Production Management Job Management 184770 Application Routing tab (Also fixed in 10.1.400.x)
10.1.500 Production Management Job Management 184985 Application Planning Workbench ‐ Checkbox of Ignore PO suggestion does not work as expected
Job Manager ‐ Error message: Object reference not set to an instance of an object, 
10.1.500 Production Management Job Management 185233 Application ADJ‐MTL should be created for both jobs
10.1.500 Production Management Job Management 185369 Application Job Entry ‐ Supplier Price Lists functionality does not work in Job Materials
Job Traveler ‐ Error displays System Monitor when a Job's part has Part.UserDate1 
10.1.500 Production Management Job Management 186205 Application field blank
Auto Job Firm Process ‐ Defines incorrectly Required Date for Plan as Assembly 
10.1.500 Production Management Job Management 186261 Application Demand Subassemblies
10.1.500 Production Management Job Management 186308 Application Job Entry ‐ Required Reference Designators calculation in the JobMtl displays error
Production Calendar ‐ Cannot import BO into Service Connect due to duplicate 
10.1.500 Production Management Job Management 186761 Application method names
10.1.500 Production Management Job Management 186997 Application Job Pick List ‐ Report not printed using EWA
10.1.500 Production Management Job Management 187525 Application Job Traveler ‐ Get and Set values should be replaced to avoid information leakage
Job Entry ‐ Using Backflush of labor Entry with auto receive auto creates MFG‐STK 
10.1.500 Production Management Job Management 187702 Application transaction with no costs
Job Closing ‐ Object reference error displays when backflushing materials with 
10.1.500 Production Management Job Management 188092 Application inactive bins
Job Closing ‐ Unable to close jobs for serial tracked parts with scrap rejected 
10.1.500 Production Management Job Management 188122 Application material
Job Entry ‐ Material Burden costs changes on Get Details and by updating the 
10.1.500 Production Management Job Management 188440 Application Qty/Parent
Project Analysis Export ‐ BPA executed with Regenerate = false brings incorrect 
10.1.500 Production Management Job Management 188694 Application costs, after a time detail for a job linked to the Project is modified
Supplier ‐ VendAttr and VendCnAttr records are not deleted when supplier, 
10.1.500 Production Management Job Management 188795 Application purchase point or PP contact are deleted
10.1.500 Production Management Job Management 189523 Application Job Entry ‐ Hours field does not return to 0, when setting Prod Std = 0.00 again
Material Requirements 
10.1.500 Production Management Planning 159403 Application Process Multi Level Pegging ‐ Issues reported by sales
Material Requirements  New PO Suggestions ‐ Unit Price value not updated when setting Unit Price at 
10.1.500 Production Management Planning 166856 Application Material List tab
Material Requirements  Generate Suggestions ‐ When running PO suggestions in one company, other 
10.1.500 Production Management Planning 175433 Application companies cannot run PO suggestions
Material Requirements  Process MRP ‐ Not supplying jobs for configured order lines that use part creation 
10.1.500 Production Management Planning 175594 Application set part number only
Material Requirements  New PO Suggestions ‐ "Currency list cannot be empty" error when adding to existing 
10.1.500 Production Management Planning 176341 Application PO

Page 36
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Material Requirements  New PO Suggestions ‐ It is possible to enter invalid Manufacturer and Supplier parts 
10.1.500 Production Management Planning 176349 Application via the list view
Material Requirements  Process MRP ‐ Transfer Order suggestions created by MRP are ignoring the Planning 
10.1.500 Production Management Planning 176387 Application and Short Horizon parameters
Material Requirements  New PO Suggestions ‐ Not considering inspection plan info when creating a Purchase 
10.1.500 Production Management Planning 177253 Application Order (Also fixed in 10.1.400.x)
Material Requirements  Process MRP ‐ Incorrectly processing parts with transfer orders and displays negative 
10.1.500 Production Management Planning 178985 Application values
Material Requirements  Generate Suggestions ‐ Suggestions created incorrectly using the last approved 
10.1.500 Production Management Planning 179048 Application revision instead of the most recent (Also fixed in 10.1.400.x)
Material Requirements  Process MRP ‐ It is recommended to increase qty to more than needed when the 
10.1.500 Production Management Planning 179540 Application Use Dynamic Days of supply in Lead Time checkbox is selected (Also fixed in 
Material Requirements  Process MRP ‐ High CPU utilization after MRP completes with errors (Also fixed in 
10.1.500 Production Management Planning 179662 Application 10.1.400.x)
Material Requirements 
10.1.500 Production Management Planning 179790 Application Process MRP ‐ MRP is leaving orphan data in the xfileattch  table
Material Requirements 
10.1.500 Production Management Planning 180008 Application Process MRP ‐ Unable to delete the Jobs using the Recycle MRP Jobs option
Material Requirements  Process MRP ‐ Unnecessary Unfirm Job is created when using forecasts and manual 
10.1.500 Production Management Planning 180259 Application jobs (Also fixed in 10.1.400.x)
Material Requirements  Time Phased Mtl Requirements ‐ Report displays order and MPS entries multiple 
10.1.500 Production Management Planning 181021 Application times
Material Requirements  Process MRP ‐ Configurator related errors when getting details for non‐configured 
10.1.500 Production Management Planning 181287 Application parts (Also fixed in 10.1.400.x)
Material Requirements  Process MRP ‐ Blank Cutoff Date with Schedule Start Date of 2/29/XX ‐ Leap Year ‐ 
10.1.500 Production Management Planning 181519 Application Causes Error
Material Requirements  Process MRP ‐ After running MRP, part has final balance above zero (Also fixed in 
10.1.500 Production Management Planning 181669 Application 10.1.400.x)
Material Requirements 
10.1.500 Production Management Planning 182781 Application New PO Suggestions ‐ Change labels on Actions > Generate Purchase Orders dialog
Material Requirements  Generate Suggestions ‐ Error message is displayed when re‐selecting the same site 
10.1.500 Production Management Planning 184121 Application from filter tab
Material Requirements  Generate Suggestions ‐ Taxable check box was not calculated correctly When 
10.1.500 Production Management Planning 184194 Application Supplier has a tax liability taxable
Material Requirements  New PO Suggestions ‐ Taxable check box was not calculated correctly when 
10.1.500 Production Management Planning 184201 Application change/add supplier with Tax Liability
Material Requirements  Process MRP ‐ Unfirm jobs created have zero Production Qty but in the logs the jobs 
10.1.500 Production Management Planning 185227 Application have quantities (Also fixed in 10.1.400.x)

Page 37
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Material Requirements  New PO Suggestions ‐ Object reference error generating PO from Suggestion with 
10.1.500 Production Management Planning 187212 Application regular and BTO Line
Material Requirements  Process MRP ‐ Process get stuck for make direct materials that will supply a job with 
10.1.500 Production Management Planning 187333 Application the same Part Id
Material Requirements  Process MRP ‐ No unfirm job is created for the 3rd release of an order line for a 
10.1.500 Production Management Planning 187804 Application configured part
Material Requirements  New PO Suggestions ‐ Suggestion from Sales Order with customer without Primary 
10.1.500 Production Management Planning 188434 Application Ship To Address cannot be added as a new PO Release Line
Material Requirements  Generate Suggestions ‐ Creates Suggestions asking for more than required for lock 
10.1.500 Production Management Planning 188447 Application quantitites from PO Entry
Material Requirements  Process MRP ‐ Does not use lot size setting and creates more unfirm jobs than 
10.1.500 Production Management Planning 189198 Application expected for configured parts
Preventive Maintenance  Maintenance Job Entry ‐ When the required Qty for the material is modified, the 
10.1.500 Production Management Management 176192 Application material is marked as completed
Preventive Maintenance  Maintenance Request Queue ‐ System stops working when approving a 
10.1.500 Production Management Management 178656 Application maintenance job (Also fixed in 10.1.400.x)
Preventive Maintenance  Maintenance Job Entry ‐ Warning message is displayed: "Supplier is not approved 
10.1.500 Production Management Management 180981 Application for this Operation"
Preventive Maintenance  Maintenance Plan Processor ‐ Template Job description info is not copied to new 
10.1.500 Production Management Management 183837 Application jobs created by Maintenance Plan processor (Also fixed in 10.1.400.x)
Preventive Maintenance  Maintenance Plan Processor ‐ Creating job with template from the previous 
10.1.500 Production Management Management 185441 Application equipment that does have one

10.1.500 Production Management Project Billing 177488 Application Project Invoice Preparation ‐ For Time and Material invoice errors in System Monitor


Project Cost Plus Invoice Review ‐ Does not use the newest effective dates from 
10.1.500 Production Management Project Billing 177595 Application Burden Codes
DMR Processing EWA ‐ The Serial Numbers disappear from select Serial Numbers 
10.1.500 Production Management Quality Assurance 168272 Application after they have been selected
10.1.500 Production Management Quality Assurance 168449 Application Employee Training Course Report ‐ The employees are printed twice

10.1.500 Production Management Quality Assurance 168587 Application Employee Training Course ‐ Changing course status causes a blank warning message


10.1.500 Production Management Quality Assurance 173894 Application Nonconformance ‐ Missing ToBinNumDescription Link in Nonconformance BO

10.1.500 Production Management Quality Assurance 174729 Application Inspection Processing ‐ Error is displayed when having DMR processing screen open


Inspection Pending ‐ Report displays incorrect information about periods activity 
10.1.500 Production Management Quality Assurance 174731 Application and PO inspectors
Nonconformance ‐ Bin Search not returning any results when Display All = False 
10.1.500 Production Management Quality Assurance 174740 Application because QOH not calculated correctly

Page 38
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Nonconformance ‐ The available quantity displays the qty for other plant if the bins 
10.1.500 Production Management Quality Assurance 174841 Application have the same ID
Employee Training Course ‐ When the Employee has a course, the Course Status 
10.1.500 Production Management Quality Assurance 174929 Application cannot be changed to "Attended "
Employee Training Course ‐ Course ID is deleted when the Status is changed from 
10.1.500 Production Management Quality Assurance 174932 Application firm to Request or Planned
Engineering Workbench ‐ Operation attachments added from Operation 
10.1.500 Production Management Quality Assurance 175562 Application maintenance are not displayed
Warehouse ‐ Issue on Adapter identified when installing and running Customization, 
10.1.500 Production Management Quality Assurance 175771 Application Rows Returned: 0
Inspection Processing ‐ The record is saved even if the pass qty is less than our qty 
10.1.500 Production Management Quality Assurance 175875 Application using Paste Update
Inspection Processing ‐ A blank window is displayed when entering an invalid 
10.1.500 Production Management Quality Assurance 176755 Application inspector ID
Inspection Processing ‐ Using Search > Starting at does not bring selected part to top 
10.1.500 Production Management Quality Assurance 177243 Application of the list (Also fixed in 10.1.400.x)
Inspection Processing is Adding Material Burden cost to Subcontract operation INS‐
10.1.500 Production Management Quality Assurance 179711 Application SUB Transactions (Also fixed in 10.1.400.x)
DMR Processing ‐ Debit memo request does not calculate the correct Reject 
10.1.500 Production Management Quality Assurance 180586 Application Quantity and Unit Cost price for the rejected material (Also fixed in 10.1.400.x)
Nonconformance ‐ From WHS/Bin location of Backflush Materials in not considered 
and Qty reported should not affect on WIP transactions and Materials (Also fixed in 
10.1.500 Production Management Quality Assurance 180768 Application 10.1.400.x)
10.1.500 Production Management Quality Assurance 181221 Application Inspection Processing ‐ Inspected Purchase Orders are not closed correctly
Nonconformance ‐ PartTran TranReference has the incorrect reason code desc 
10.1.500 Production Management Quality Assurance 181222 Application under some circumstances
DMR Processing ‐ PO unit price in PO entry and DMR processing is not tally (Also 
10.1.500 Production Management Quality Assurance 181913 Application fixed in 10.1.400.x)
Inspection Processing ‐ If Inspection passes, Non‐Conformance ID should be 
10.1.500 Production Management Quality Assurance 182379 Application removed from Serial Number record
Inspection Pending Report ‐ Pending operations are not displayed (Also fixed in 
10.1.500 Production Management Quality Assurance 182656 Application 10.1.400.x)
Inspection Processing ‐ Auto‐Populate Search displays Invalid OrderBy statement: by 
10.1.500 Production Management Quality Assurance 183093 Application (Also fixed in 10.1.400.x)
Inspection Processing ‐ Search Option displays an error when Maximum Rows 
10.1.500 Production Management Quality Assurance 183530 Application Returned has a value less than the max records
DMR Processing ‐ Rejection action does not convert the value to the Purchasing 
10.1.500 Production Management Quality Assurance 183657 Application UOM and round it

Page 39
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Nonconformance ‐ Reason Search from the Context menu displays an Object 
10.1.500 Production Management Quality Assurance 183738 Application Reference error message
Inspection Processing ‐ Allows saving passed inspection operations while warehouse 
10.1.500 Production Management Quality Assurance 184042 Application Bin is empty
10.1.500 Production Management Quality Assurance 184427 Application DMR Processing ‐ Not allowed to accept Job operations (Also fixed in 10.1.400.x)
DMR Processing ‐ Override Conversion from Receipt entry is not considered in DMR 
10.1.500 Production Management Quality Assurance 185417 Application Processing
Warehouse ‐ No validation between sites that indicates there is already a Stock 
10.1.500 Production Management Quality Assurance 186053 Application default warehouse
DMR Processing ‐ Transactions do not consider the primary inventory UOM for the 
10.1.500 Production Management Quality Assurance 186824 Application Mtl Bur Unit Cost calculation
Purchase Order Entry ‐ PO can be deleted after PO Line is added into a Receipt 
10.1.500 Production Management Quality Assurance 187820 Application created with no PO number
Receive Transfer Order ‐ Tab order and grids that allow entry to fields that should be 
10.1.500 Production Management Scheduling 96453 Application disabled
Job Scheduling Board ‐ Move Job Screen sporadically appears when an operation is 
10.1.500 Production Management Scheduling 145396 Application moved on the board
Scheduling Engine ‐ ATP should use the production calendar as a basis to calculate 
10.1.500 Production Management Scheduling 153600 Application the Supplier Due Date Horizon (Also fixed in 10.1.400.x)
Scheduling Engine ‐ Backwards scheduling ignoring 12:00 AM time, needed to use 
10.1.500 Production Management Scheduling 155652 Application 12:01 to make it work correctly
Scheduling Engine ‐ Job Tracker should display the Orange icon for Constrained 
10.1.500 Production Management Scheduling 156002 Application Materials
Scheduling Engine ‐ The production time start 12 secs earlier when scheduling 
10.1.500 Production Management Scheduling 156987 Application forward throughout midnight
Multi Resource Scheduling Board ‐ The schedule blocks are updated in Job Entry if 
10.1.500 Production Management Scheduling 161519 Application the value comes from the MRSB
Scheduling Engine ‐ Differences with Finite Resources and Daily Production Capacity 
10.1.500 Production Management Scheduling 168674 Application in Backward schedule
Scheduling Engine ‐ Production Calendar exceptions (working days) are ignored by 
10.1.500 Production Management Scheduling 169486 Application scheduling
Adjust Global Scheduling Order ‐ Incorrect calculated Sched sequence when 
10.1.500 Production Management Scheduling 169779 Application changing for batch jobs
10.1.500 Production Management Scheduling 171213 Application Scheduling Engine ‐ Load is removed incorrectly when deleting a MTO Demand link
Fill Shop Capacity Process ‐ Inactive resources are taken into account when 
10.1.500 Production Management Scheduling 172775 Application calculating shop capacity
Overload Informer ‐ Two error messages are displayed when opening the form (Also 
10.1.500 Production Management Scheduling 173483 Application fixed in 10.1.400.x)

Page 40
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Scheduling Engine ‐ Partial POs are considered as full supply for constrained 
10.1.500 Production Management Scheduling 174083 Application materials in Subassemblies
Scheduling Engine ‐ Minimize WIP is not applied for single Jobs if the Multi‐Job 
10.1.500 Production Management Scheduling 174545 Application option is selected
Job Scheduling Board ‐ Calculates queue time for operation only pushing the 
10.1.500 Production Management Scheduling 175078 Application operation to the future
Scheduling Engine ‐ Takes only one Resource for all Scheduling Blocks even though 
10.1.500 Production Management Scheduling 176885 Application there are more resources available (Also fixed in 10.1.400.x)
Scheduling Engine ‐ Does not use the Capability highest ResourcePriority resource 
10.1.500 Production Management Scheduling 176975 Application for Forward Scheduling (Also fixed in 10.1.400.x)
Scheduling Engine ‐ The Use Calendar for Queue Time option overlaps the finite 
10.1.500 Production Management Scheduling 177244 Application resources (Also fixed in 10.1.400.x)
Scheduling Engine ‐ Cannot find resources available when scheduling backwards in a 
10.1.500 Production Management Scheduling 177467 Application subassembly using calendars to calculate move/queue time
Schedule Impact ‐ Sites that are not selected for the employee in User Account 
10.1.500 Production Management Scheduling 177769 Application Maintenance are displayed in the Site Filter Tab on the Report window
Scheduling Engine ‐ MRP and Scheduling logging level should create individual 
10.1.500 Production Management Scheduling 178458 Application scheduling logs disregarding the checkbox in the Company (Also fixed in 10.1.400.x)
Scheduling Engine ‐ The Split Operation option is not validated if it comes from a 
10.1.500 Production Management Scheduling 178573 Application Resource
Scheduling Engine ‐ Takes only one Resource for all Scheduling Blocks even though 
10.1.500 Production Management Scheduling 178655 Application there are more resources available (Also fixed in 10.1.400.x)
Multi Resource Scheduling Board ‐ The Move option box is not displayed when 
10.1.500 Production Management Scheduling 178742 Application dragging an operation (Also fixed in 10.1.400.x)
Scheduling Engine ‐ Load is removed incorrectly when deleting multiple MTO 
10.1.500 Production Management Scheduling 179462 Application Demand links
Scheduling Engine ‐ The Calendar Exceptions are not validated if they come from the 
10.1.500 Production Management Scheduling 179466 Application Resource Group
10.1.500 Production Management Scheduling 179539 Application Resource Scheduling Board ‐ Blank revision co‐parts in job after create batch
Scheduling Engine ‐ Multi‐Job Schedule does not move the Jobs generated through 
10.1.500 Production Management Scheduling 179969 Application the Firm Job process (Also fixed in 10.1.400.x)
10.1.500 Production Management Scheduling 181230 Application Scheduling Engine ‐ Non‐stock constrained materials not treated as constrained
Scheduling Engine ‐ Add an Autoconsume Window for checking the availability of 
10.1.500 Production Management Scheduling 181794 Application the material on req. date + window (Also fixed in 10.1.400.x)
10.1.500 Production Management Scheduling 181936 Application Scheduling Engine ‐ The Finite Horizon hierarchy is aligned incorrectly
Scheduling Engine ‐ Error for infinite backward scheduling with a gap of several days 
10.1.500 Production Management Scheduling 182135 Application (Also fixed in 10.1.400.x)
Scheduling Engine ‐ Forward Schedule does not move the parent Job, if this Job 
10.1.500 Production Management Scheduling 182499 Application generated child Jobs through the Firm Process (Also fixed in 10.1.400.x)

Page 41
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Scheduling Engine ‐ Cannot move an operation by using Resource Scheduling Board 
10.1.500 Production Management Scheduling 182579 Application (Also fixed in 10.1.400.x)
Resource Schedule ‐ Load Graph is Giving incorrect Daily Capacity and What IF Hours 
10.1.500 Production Management Scheduling 182983 Application for several charts
10.1.500 Production Management Scheduling 183224 Application Scheduling Engine ‐ Not considering the Finite Horizon range for the Start Date
Container Landed Cost Entry ‐ Weight and Volume values are not retrieved when 
10.1.500 Production Management Scheduling 183337 Application Multiple Shipment Lines are added (Also fixed in 10.1.400.x)
Job Scheduling Board ‐ The Undo changes options does not erase all the what if 
10.1.500 Production Management Scheduling 184167 Application changes, if the singles jobs are scheduled using the Move option: Job ‐ All Jobs
Multi Resource Scheduling Board ‐ Does not allow to move individually scheduling 
10.1.500 Production Management Scheduling 185298 Application blocks
Scheduling Engine  ‐ Dates of future supplies are considered for Job Materials with 
10.1.500 Production Management Scheduling 187801 Application Qty/Parent = 0
10.1.500 Production Management Scheduling 189615 Application Fill Shop Capacity Process ‐ Process increases the daily capacity per day
Time Sheet Entry ‐ Rework selected check box clears scrap and non‐conform qty for 
10.1.500 Production Management Time Management 143976 Application not serial number operations
Time Sheet Entry ‐ Labor Entry sets incorrect Labor Rates for Qty Only Operations 
10.1.500 Production Management Time Management 144381 Application (Also fixed in 10.1.400.x)
10.1.500 Production Management Time Management 147206 Application Time Sheet Entry ‐ New icon on main Menu for Time Comments does not work
10.1.500 Production Management Time Management 147208 Application Time Sheet Entry ‐ New icon on main Menu for Expense Comments does not work
10.1.500 Production Management Time Management 160691 Application Time Report ‐ The Service Job is displaying incomplete for Labor Type Service
10.1.500 Production Management Time Management 165628 Application Time Sheet Entry ‐ Multiple errors after adding a new time detail
Time Sheet Entry ‐ "Object reference not set to an instance of an object" error is 
10.1.500 Production Management Time Management 167636 Application displayed when labor is entered for second time
Time Sheet Entry ‐ Unable to submit time when having two time and expenses entry 
10.1.500 Production Management Time Management 167699 Application screens open
10.1.500 Production Management Time Management 168612 Application Time Sheet Entry ‐ Non‐conformance field becomes grayed in time and expense 
Time Sheet Entry ‐ Weekly Time not updated when modifying a Time Detail, instead 
10.1.500 Production Management Time Management 168814 Application of it a new record is created
10.1.500 Production Management Time Management 172049 Application Time Sheet Entry ‐ The Efficiency % field is not updated like in Job Tracker
Time Sheet Entry ‐ Index ‐1 is either negative or above rows count using Submit 
10.1.500 Production Management Time Management 172069 Application when saving
10.1.500 Production Management Time Management 172073 Application Time Report ‐ Delete "Time Report" report and menu item
Time Sheet Entry ‐ Rework, Scrap and Non‐Conformance fields from left to right, up 
10.1.500 Production Management Time Management 172873 Application and down
Time Sheet Entry ‐ Second entry remains entered when changing the labor date and 
10.1.500 Production Management Time Management 175577 Application submit it
Time Sheet Entry ‐ Some columns on List tab should not be visible or enabled for the 
10.1.500 Production Management Time Management 175598 Application user

Page 42
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Time Sheet Entry ‐ The Rework check box erases the info entered for Scrap & Non‐
10.1.500 Production Management Time Management 176068 Application Conform
Time Sheet Entry ‐ Restrict Entry denies the access to T&E and display an additional 
10.1.500 Production Management Time Management 176262 Application object null reference error
Time Sheet Entry ‐ Copied weekly times displays an error when the last record is 
10.1.500 Production Management Time Management 176808 Application submitted
Time Sheet and Expense Approval ‐ Deadlocks on labordtl pk index (Also fixed in 
10.1.500 Production Management Time Management 177337 Application 10.1.400.x)
Time Sheet Entry ‐ Incorrectly calculating Labor and Burden Hrs when the shift is for 
10.1.500 Production Management Time Management 177450 Application 24 hrs
Time Sheet Entry ‐ System creates a separate labor detail when changing from 
10.1.500 Production Management Time Management 178179 Application Nonconformance to Scrap Qty (Also fixed in 10.1.400.x)
Time Sheet Entry ‐ Labor Cost in Cost Element column is not calculated (Also fixed in 
10.1.500 Production Management Time Management 180035 Application 10.1.400.x)
Time Sheet Entry ‐ When the shift hours are adjusted, the calculation is incorrect 
10.1.500 Production Management Time Management 180340 Application (Also fixed in 10.1.400.x)
Time Sheet Entry ‐ System allows to submit expense entry when project is inactive or 
10.1.500 Production Management Time Management 181204 Application closed

10.1.500 Production Management Time Management 181516 Application Time Sheet Entry ‐ When selecting several days in the calendar, an error is displayed


Time Sheet Entry ‐ Trans Quantity displays a negative value in the ADJ‐CST 
10.1.500 Production Management Time Management 181981 Application transaction for Quantity bearing‐backflush part (Also fixed in 10.1.400.x)
Time Sheet Entry ‐ System generates invalid ADJ‐CST transactions for non‐quantity 
10.1.500 Production Management Time Management 181997 Application bearing‐backflush part (Also fixed in 10.1.400.x)
Time Sheet Entry ‐ The Actual Costs are calculated incorrectly using Time and 
10.1.500 Production Management Time Management 182042 Application Expense
Time Sheet Entry ‐ Labor Rate is incorrect when using multiple resources on one 
10.1.500 Production Management Time Management 182086 Application operation
10.1.500 Production Management Time Management 182382 Application Time Report ‐ Production information is not aligned with the Report columns
Time Sheet Entry ‐ Not checking Yield Per field when calculating the Labor 
10.1.500 Production Management Time Management 182443 Application qty(Complete qty) on concurrent job
10.1.500 Production Management Time Management 182487 Application Time Sheet Entry ‐ Should not have to report quantity twice for co‐parts
Time Sheet Entry ‐ Reduces lunch time for labor and burden hrs every time labor 
10.1.500 Production Management Time Management 185776 Application records are created
10.1.500 Production Management Time Management 187015 Application Time Report ‐ Labor Type column label is not fully displayed in the SSRS Report
Time Sheet Entry ‐ When adding a new expense comment in T&E Entry the Expense 
10.1.500 Production Management Time Management 187416 Application Tax Amount is 0.00
Time Sheet Entry ‐ Disables the Rework Reason field when Rework Reason checkbox 
10.1.500 Production Management Time Management 187586 Application is false in company config

Page 43
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


10.1.500 Production Management Time Management 187588 Application Time Sheet Entry ‐ Does not allow the user to Save/Submit without a Scrap Reason
Time Sheet Entry ‐ Error "Labor cannot be reported to a non‐location resource." is 
10.1.500 Production Management Time Management 187997 Application displayed when adding a new weekly time
Customer Relationship 
10.1.500 Sales Management Management 76047 Application RMA Processing ‐ User is unable to select RMA Number when adding a new RMA
Customer Relationship 
10.1.500 Sales Management Management 97633 Application Customer ‐ Changing customers does not refresh Ship To menu items
Customer Relationship 
10.1.500 Sales Management Management 122864 Application RMA Processing ‐ Adding a Credit memo is not displaying the PO Number
Customer Relationship  RMA Processing ‐ Credit memo is created for Bill to Customer of the Customer of the 
10.1.500 Sales Management Management 129502 Application original Invoice
Customer Relationship  RMA Processing ‐ Discount Amount is not recalculated according to the quantity on 
10.1.500 Sales Management Management 166165 Application the Credit Memo
Customer Relationship  Case Entry ‐ Writing direction in the "Where Description Contains" section, is set 
10.1.500 Sales Management Management 170592 Tools from right to left
Customer Relationship 
10.1.500 Sales Management Management 170618 Application Case Entry ‐ EWA ‐ Upon closing a Case, the Epishape in the Status field is still Open
Customer Relationship  RMA Processing ‐ New Receipts are created with Move Request check box not 
10.1.500 Sales Management Management 171242 Application selected
Customer Relationship 
10.1.500 Sales Management Management 173482 Application RMA Processing ‐ Deleted RMA ID value is used again for next RMA ID
Customer Relationship  Customer ‐ Customer Number sent to CRM Call Log screen, instead of sending 
10.1.500 Sales Management Management 173486 Application Customer ID (Also fixed in 10.1.400.x)
Customer Relationship  Case Entry ‐ EWA ‐ When Case Entry is opened, it displays the Selection tab instead 
10.1.500 Sales Management Management 173758 Application of the Case tab (EWA)
Customer Relationship  Reason Code ‐ Reason type is not populated when opened from context menu Open 
10.1.500 Sales Management Management 174011 Application With > Reason Entry in Nonconformance
Customer Relationship  Customer ‐ Unable to handle two CRM Call Log screens at the same time; an error 
10.1.500 Sales Management Management 174627 Application displays and when saving
Customer Relationship  Reason Code ‐ Reason type is not populated when is opened from context menu 
10.1.500 Sales Management Management 174666 Application Open With > Reason Entry in Time Entry
Customer Relationship 
10.1.500 Sales Management Management 174819 Application Customer ‐ Label fields are overlapped with drop‐down list field
Customer Relationship 
10.1.500 Sales Management Management 174882 Application Customer ‐ Upper/Lower changes in address fields are not accepted
Customer Relationship  Salesperson Workbench ‐ Different errors are displayed when navigating into the 
10.1.500 Sales Management Management 174998 Application Tabs (Also fixed in 10.1.400.x)
Customer Relationship  Customer ‐ Customization with AfterAdapterMethod; does not display messages 
10.1.500 Sales Management Management 175016 Application (Also fixed in 10.1.400.x)

Page 44
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Customer Relationship 
10.1.500 Sales Management Management 175053 Application Attribute ‐ The warning message is blank when selecting the inactive check box
Customer Relationship  RMA Processing ‐ Having too long Comments, RMA Number and RMA Date values 
10.1.500 Sales Management Management 175076 Application are not printed on RMA Form
Customer Relationship 
10.1.500 Sales Management Management 175151 Application Customer ‐ Object mapping error when deleting 2nd Contact record
Customer Relationship  CRM Call Entry ‐ Error message appears when trying to save after selecting a 
10.1.500 Sales Management Management 175524 Application different call type 
Customer Relationship  CRM Call Entry ‐ Sort by "Create Date" does not work correctly after the screen is 
10.1.500 Sales Management Management 175849 Application opened
Customer Relationship  Customer ‐ Entity / Use Code value is not pulled when setting an Alternate Ship To 
10.1.500 Sales Management Management 176517 Application address
Customer Relationship 
10.1.500 Sales Management Management 176694 Application Global Alert ‐ Message Generated in AlertQue Table is incorrect
Customer Relationship  RMA Processing ‐ Incorrect cost calculation for FIFO‐costed part in case of return 
10.1.500 Sales Management Management 176880 Application material using RAM (Also fixed in 10.1.400.x)
Customer Relationship 
10.1.500 Sales Management Management 176993 Application Customer ‐ Error message appears when saving customer information
Customer Relationship  Attribute ‐ When try to select the Inactive check box, a warning message appears 
10.1.500 Sales Management Management 177232 Application without content
Customer Relationship  Customer/On Task Maintenance ‐ The Assigned To ID from the first task changes to 
10.1.500 Sales Management Management 177487 Application the value of the last task after refreshing
Customer Relationship 
10.1.500 Sales Management Management 177867 Application Case Entry ‐ EWA ‐ New Task cannot be added
Customer Relationship  Work Force ‐ Authorized Users are not inheriting the Supervisor privileges (Also fixed 
10.1.500 Sales Management Management 177919 Application in 10.1.400.x)
Customer Relationship  Salesperson Workbench ‐ Create options from the context menu from a Contact 
10.1.500 Sales Management Management 177942 Application displays string errors
Customer Relationship  Opportunity / Quote Entry ‐ Order Based Price does not get pulled into quote until 
10.1.500 Sales Management Management 178028 Application quantity is entered for line
Customer Relationship  Opportunity/Quote Markup ‐ The EstimateGUID, CreateEstimate and 
10.1.500 Sales Management Management 178063 Application EstimateUserID fields are displayed in Base Code
Customer Relationship  Customer ‐ When trying to create a call on alternate customer, the customer field 
10.1.500 Sales Management Management 178659 Application appears with original customer
Customer Relationship 
10.1.500 Sales Management Management 179303 Application Global Alert ‐ Refactor code to replace FindLast with a FindFirst
Customer Relationship 
10.1.500 Sales Management Management 179497 Application RMA Processing ‐ RMA Report incorrectly displayed in the window envelopes

Page 45
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Customer Relationship  Customer ‐ Record select control (rse) not populated when records retrieved (Also 
10.1.500 Sales Management Management 179541 Application fixed in 10.1.400.x)
Customer Relationship 
10.1.500 Sales Management Management 179901 Application Customer ‐ Moving between Ship To records is slow (Also fixed in 10.1.400.x)
Customer Relationship  Customer ‐ Customers can get DTC escalation errors when using multiple 
10.1.500 Sales Management Management 179937 Application transactions (Also fixed in 10.1.400.x)
Customer Relationship  Customer Group ‐ New discount price list displays null reference exception after 
10.1.500 Sales Management Management 179950 Application adding price list 
Customer Relationship  RMA Processing ‐ Bill to customer field is not retrieving new data when selecting an 
10.1.500 Sales Management Management 180477 Application invoice legal number
Customer Relationship  Customer ‐ Contacts are not added to Customer when Linking Customer from other 
10.1.500 Sales Management Management 180691 Application Company
Customer Relationship 
10.1.500 Sales Management Management 180767 Application Person Contact ‐ New record prompt when switching tabs
Customer Relationship  RMA Processing ‐ "Key not found " message is displayed when clicking the Update 
10.1.500 Sales Management Management 181000 Application button
Customer Relationship  RMA Processing ‐ Error when trying to create a correction invoice with a PO number 
10.1.500 Sales Management Management 181039 Application assigned
Customer Relationship  Order Tracker ‐ New pages are not displayed for reconfigured lines when using the 
10.1.500 Sales Management Management 181495 Application Trackers
Customer Relationship  CRM Call Entry ‐ Contact values displayed do not match the selected Customer and 
10.1.500 Sales Management Management 181533 Application Ship To values
Customer Relationship  Order Tracker ‐ Errors are displayed when trying to see a Configuration in Sales 
10.1.500 Sales Management Management 181547 Application Order Tracker
Customer Relationship 
10.1.500 Sales Management Management 181599 Application Task List ‐ Uncompleting a Task deletes previous and all next milestones
Customer Relationship 
10.1.500 Sales Management Management 181600 Application Task List ‐ RealtedToSysRowID column is displayed by default in List tab
Customer Relationship 
10.1.500 Sales Management Management 181788 Application Order Tracker ‐ Configuration button is disabled for Configured Orders
Customer Relationship  Salesperson Workbench ‐ Add and Update buttons are not displayed under Tasks > 
10.1.500 Sales Management Management 182169 Application By Customer tab
Customer Relationship  RMA Processing ‐ Using paper size A4 the RMA Report prints the Customer Name on 
10.1.500 Sales Management Management 182315 Application the second page
Customer Relationship 
10.1.500 Sales Management Management 182360 Application Case Entry ‐ When clicking any field on Contacts tab, the Related To tab opens
Customer Relationship 
10.1.500 Sales Management Management 182762 Application Price List ‐ When selecting several Part records on List tab, the focus is on last record

Page 46
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Customer Relationship 
10.1.500 Sales Management Management 182794 Application Customer ‐ Kit amount is subtracted twice from Order Credit
Customer Relationship  RMA Processing ‐ AR RMA Invoice Maintenance uses the currency from the bill to 
10.1.500 Sales Management Management 183359 Application instead the sold to currency
Customer Relationship 
10.1.500 Sales Management Management 184181 Application Price List ‐ Export file created with commas as thousand separator in numeric values
Customer Relationship 
10.1.500 Sales Management Management 184183 Application Person Contact ‐ Able to type in any random number on Country
Customer Relationship 
10.1.500 Sales Management Management 184552 Application Case Entry ‐ Unable to complete Tasks from a different Task Set
Customer Relationship 
10.1.500 Sales Management Management 184776 Application Case Entry ‐ Unable to change the task set once it is saved
Customer Relationship  Customer ‐ Unable to add alternate ship‐to, alternate ShipTo fields are not enabled 
10.1.500 Sales Management Management 185192 Application (Also fixed in 10.1.400.x)
Customer Relationship  Customer ‐ Customer gets On Hold after posting Deposit Billing for smaller amount 
10.1.500 Sales Management Management 187579 Application than Credit Limit
Customer Relationship 
10.1.500 Sales Management Management 187827 Application RMA Processing ‐ Change FIFO Date logic of the RMA Return FIFO enhancement
Customer Relationship  Customer Group ‐ Adding a new Discount Price List causes error ‐ A valid Price List is 
10.1.500 Sales Management Management 187835 Application required
Customer Relationship  Customer ‐ Cannot switch between open screens, once you open a screen using 
10.1.500 Sales Management Management 187972 Application Context Menu
Customer Relationship 
10.1.500 Sales Management Management 188232 Application Order Tracker ‐ Reviewing a Configuration jumps from 1st Page to last Page
Customer Relationship  Customer Tracker ‐ Info from Jobs tab does not match with Job referring to Sales 
10.1.500 Sales Management Management 188998 Application Order selected
10.1.500 Sales Management Dashboards 184976 Application HH Package Control Parent Mixed ‐ No last updated time on the HH screen
10.1.500 Sales Management Demand Management 163807 Application Enhance the application to permit the configuration of No Input Configurators
10.1.500 Sales Management Demand Management 171220 Application Demand Review Report ‐ Standard ‐ SSRS Report Style is not loaded by default
Mass Print Packing Slips ‐ The data is not sorted correctly when searching a Pack in 
10.1.500 Sales Management Demand Management 175135 Application the Pack Slips Filter
10.1.500 Sales Management Demand Management 175969 Application Demand Net Change Report ‐ Not standard tab order
Demand Processing ‐ Docking Station not copied from demand schedule to order 
10.1.500 Sales Management Demand Management 176990 Application release (Also fixed in 10.1.400.x)
Demand Mass Review ‐ Record not found error displayed when deleting a Demand 
10.1.500 Sales Management Demand Management 178817 Application Detail record
Demand Mass Review ‐ Initial navigation from Tree view does not display detail 
10.1.500 Sales Management Demand Management 179847 Application records properly
10.1.500 Sales Management Demand Management 180773 Application Demand Entry ‐ Release of Sales Order is generated with incorrect Entity / Use Code

Page 47
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Demand Entry ‐ Error is displayed when changing Demand Schedule Ship By date 
10.1.500 Sales Management Demand Management 181015 Application having a Monthly Forward Customer Periodicity
Demand Entry ‐ Sales Order Discounts not calculated if order is created from 
10.1.500 Sales Management Demand Management 181052 Application demand
Demand Workbench ‐ Object reference error on a record in the workbench with no 
10.1.500 Sales Management Demand Management 181247 Application details (Also fixed in 10.1.400.x)
Demand Entry ‐ Different Ship To between demand entry and order entry when 
10.1.500 Sales Management Demand Management 182815 Application creating demand from sales order
Demand Import Process ‐ DemandImportMiscChg sets invalid MiscChg code in 
10.1.500 Sales Management Demand Management 183009 Application DemandMiscChg
Demand Entry ‐ Processing a Demand generates Forecast records marked as Inactive 
10.1.500 Sales Management Demand Management 183103 Application (Also fixed in 10.1.400.x)
10.1.500 Sales Management Demand Management 183856 Application Demand Entry ‐ Ready to Fulfill unmarked after selected (Ready To Process)
Demand Entry ‐ Ext. Price is not calculated properly when Sales Order is generated 
10.1.500 Sales Management Demand Management 185728 Application with Tax Inclusive
10.1.500 Sales Management EDI 171804 Application EDI Inbound ‐ Locking/Blocking issues on ImportEDI ‐ Uplift changes to Epicor 10.1
EDI Outbound document ‐ Alt Trading Partner value printed on all invoices, even 
10.1.500 Sales Management EDI 175100 Application though those are not EDI invoices (Also fixed in 10.1.400.x)
EDI Inbound ‐ Unable to process EDI document with invalid UOM, ERROR status 
10.1.500 Sales Management EDI 175466 Application appears in system monitor
Package Control PCID ‐ Not allowed to use same display sequence in different sites 
10.1.500 Sales Management EDI 175885 Application (Also fixed in 10.1.400.x)
Package Control Transaction Routing ‐ Unable to enable constraints, error in all PCID 
10.1.500 Sales Management EDI 176327 Application screens for multi‐site
10.1.500 Sales Management EDI 176845 Application Package Control PCID ‐ Paste insert does not work for printers
PKG PCID HH Returnable Container Adjustment ‐ Screen should be cleared when 
10.1.500 Sales Management EDI 177703 Application clicking Save
ImportEDI Process ‐ EDI files with smart string lines for configured parts are not 
10.1.500 Sales Management EDI 178559 Application processed, an error occurs (Also fixed in 10.1.400.x)
EDI Inbound ‐ Demand imported even though it has a non‐existing Part Revision ID 
10.1.500 Sales Management EDI 180717 Application value (Also fixed in 10.1.400.x)
Package Control PCID ‐ Change the message in Transaction Routing when the 
10.1.500 Sales Management EDI 182109 Application transaction already exists
Workflow Group ‐ Unable to add a new group member to a Workflow Type = CRM 
10.1.500 Sales Management Help Desk 179196 Application (Also fixed in 10.1.400.x)
10.1.500 Sales Management Order Management 76702 Application Order Entry ‐ Customer is not placed on Credit Hold during a Copy Order
Order Entry ‐ Sales Kit components not getting stamped with ship via code of related 
10.1.500 Sales Management Order Management 154593 Application release

Page 48
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Cross Dock ‐ Crossdocks created for backflushed job materials should not be 
10.1.500 Sales Management Order Management 155643 Application released for picking
10.1.500 Sales Management Order Management 158154 Application Fulfillment Work Bench ‐ Supply tab does not display all the linked Jobs
SSRS ‐ Inventory Reports ‐ Square displays on part description using the Chinese 
10.1.500 Sales Management Order Management 162902 Application format/culture
Part ‐ It should be impossible to enter a shared warehouse as primary warehouse in 
10.1.500 Sales Management Order Management 163497 Application different Site (Also fixed in 10.1.400.x)
Part ‐ EWA ‐ Find Number field/column is not displayed on Part Where Used 
10.1.500 Sales Management Order Management 163844 Application dashboard
Fulfillment Work Bench ‐ When orders are selected at different times, only the last 
10.1.500 Sales Management Order Management 164927 Application order selected is allocated
Part ‐ Non‐Stock Item validation error appears twice on Parts update with Revision 
10.1.500 Sales Management Order Management 165136 Application Configurator ID assigned
Capable To Promise ‐ Overriding completion date in Demand CTP screen does not 
10.1.500 Sales Management Order Management 167741 Application affect dates on generated order
10.1.500 Sales Management Order Management 169137 Application Order Entry ‐ The serial number scan window does not work for counter sales
Fulfillment Work Bench ‐ Sold To ID search is made by CustNum (consecutive) 
10.1.500 Sales Management Order Management 169394 Application instead of CustID (ID)
RMA Dispositions ‐ Part ID value can be changed from an RMA Disposition linked to 
10.1.500 Sales Management Order Management 169541 Application an Invoice
Order Entry ‐ Message about reconfigure is displayed when configuring a Sales Kit 
10.1.500 Sales Management Order Management 169610 Application and Kit Details are enabled when configuring
Order Entry ‐ Book value is not updated for the rest of the lines when using Publish 
10.1.500 Sales Management Order Management 170203 Application To Document configurations
Order Entry ‐ Printing a Sales Order with Word format the result in Word document 
10.1.500 Sales Management Order Management 170319 Application using only the left half of the page
10.1.500 Sales Management Order Management 170533 Application Part ‐ UOM Class field does not display the System Default UOM Class
10.1.500 Sales Management Order Management 170626 Application Order Entry ‐ Tax of Misc Header Charge is lost if Line 1 is Closed
Order Entry ‐ EWA ‐ Upon clearing the Link to Contract check box in Line, it is not 
10.1.500 Sales Management Order Management 170909 Application cleared in the Releases tab
Order Entry ‐ Configured price is discounted twice from the price list discount (Also 
10.1.500 Sales Management Order Management 171461 Application fixed in 10.1.400.x)
Fulfillment Work Bench ‐ Ready to Fulfill enabled does not return all rows in initial 
10.1.500 Sales Management Order Management 171939 Application search
10.1.500 Sales Management Order Management 172289 Application Capable To Promise ‐ PO should be generated just for lines that are confirmed
10.1.500 Sales Management Order Management 172521 Application UOM ‐ Review logic Inactive UOM can be added in a Part
Capable To Promise ‐ Job comments added at order level are not carried over to job 
10.1.500 Sales Management Order Management 172609 Application created by CTP
10.1.500 Sales Management Order Management 173070 Application Order Entry ‐ Order Line with Part on Hold can be added by Copy Order function

Page 49
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


10.1.500 Sales Management Order Management 173397 Application Part ‐ Returning more than one part mixes up data for conversion factors ‐ BL Tester
10.1.500 Sales Management Order Management 173454 Application Capable To Promise ‐ Completion date set to a past date when ship by date in past
10.1.500 Sales Management Order Management 173524 Application Part Class ‐ Double message when invalid site is set
Fulfillment Work Bench ‐ Selected records from BAQ Search are not displayed on 
10.1.500 Sales Management Order Management 173588 Application Fulfillment Workbench grid (Also fixed in 10.1.400.x)
10.1.500 Sales Management Order Management 173657 Application Part ‐ The EAN‐8 product code field is right‐justified
Fulfillment Work Bench ‐ Object Reference error on Search with Reserved = Exclude 
10.1.500 Sales Management Order Management 173971 Application (Also fixed in 10.1.400.x)
Capable To Promise ‐ Cannot Calculate CTP with Order non‐part master line 
10.1.500 Sales Management Order Management 174000 Application generated from another Site
Order Entry ‐ Pro‐Forma Invoice report prints Unit Price with a letter in Unit Price 
10.1.500 Sales Management Order Management 174002 Application column
10.1.500 Sales Management Order Management 174453 Application Price Group ‐ Unable to remove empty line by clicking the Refresh button
Order Entry ‐ When a SO is created using Get Opportunity/Quote option the Credit 
10.1.500 Sales Management Order Management 174569 Application Card Order check box is ignored
Order Entry ‐ In Sales Order Acknowledgment, Word format only, the phrase "Sales 
10.1.500 Sales Management Order Management 174633 Application Order XXXX" is partially cut in the report
Part ‐ Supplier Search does not return\ all the records setting on the Starting At 
10.1.500 Sales Management Order Management 174652 Application value
Order Entry ‐ When the Ship To customer tax liability of a Customer is blank, it is not 
10.1.500 Sales Management Order Management 174738 Application defaulted correctly
Order Entry ‐ Adding Line of Sales Kit with no Components, warning message is 
10.1.500 Sales Management Order Management 174800 Application displayed twice
Order Entry ‐ Sales order search basic panel does not work correctly with named 
10.1.500 Sales Management Order Management 174918 Application search entry
Order Entry ‐ Object reference error when opening sales order entry for the first 
10.1.500 Sales Management Order Management 174924 DB Specific time in a new session
10.1.500 Sales Management Order Management 174925 Application Order Entry ‐ Duplicate order constraint error when using the Order Copy
Part ‐ Site Type Detail value not setting Generate PO Suggestions field/check box 
10.1.500 Sales Management Order Management 174979 Application correctly
Part ‐ System displays the following error message for Sales Kit saving: "Row has 
10.1.500 Sales Management Order Management 175036 Application been modified by another user and could not be updated"
UOM ‐ An Unknown Exception error is displayed when trying to paste a value and 
10.1.500 Sales Management Order Management 175046 Application the focus is on the Tree view area
Order Entry ‐ When a Order with Sales Kit is copied, the new order does not get the 
10.1.500 Sales Management Order Management 175058 Application components, just the empty kit
10.1.500 Sales Management Order Management 175138 Application Order Entry ‐ When an order is copied, the Sales person is not copied

Page 50
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Order Entry ‐ Sales Order created by Completing Final Task for Quote with 
configured part, displays an error when clicking on Configuration button on Line > 
10.1.500 Sales Management Order Management 175200 Application Details tab
Sales Order Pick List ‐ Info of Bins with same ID (different Warehouse) is not 
10.1.500 Sales Management Order Management 175276 Application displayed on the report (Also fixed in 10.1.400.x)
UOM ‐ Stop on UOM Rounding if No Rounding selected does not prevent save with 
10.1.500 Sales Management Order Management 175337 Application too many decimal places
Order Entry ‐ When copying an order with a close released and H.Misc Charges, 
10.1.500 Sales Management Order Management 175411 Application Discount and H.Misc Charges amount of new order are incorrect
Fulfillment Work Bench ‐ Not enough unallocated inventory to allocate; an error 
10.1.500 Sales Management Order Management 175416 Application occurs when processing Allocate by Lot / Bin (Also fixed in 10.1.400.x)
Order Entry ‐ EWA ‐ Releases/Details displays releases that are not from the selected 
10.1.500 Sales Management Order Management 175529 Application line
Order Entry ‐ EWA ‐ Line Kit Components are displayed in Line /Details and Summary 
10.1.500 Sales Management Order Management 175539 Application tab
Order Entry ‐ EWA ‐ Setting customer discount in Order Entry having order lines with 
10.1.500 Sales Management Order Management 175551 Application sales kit, confirmation message is not displayed and discount is not applied
Order Entry ‐ Kit Details check box not set to default value when switching between 
10.1.500 Sales Management Order Management 175639 Application Sales Orders
Order Entry ‐ On Pro‐Forma Invoice report, label aside of fax number is displayed as 
10.1.500 Sales Management Order Management 175702 Application "Page", instead of "Fax" (Also fixed in 10.1.400.x)
Order Entry ‐ When creating a Sales Order from Task List the Ready to Process is 
10.1.500 Sales Management Order Management 175706 Application selected
Order Entry ‐ In Counter Sale, clicking the Process Counter Sale button results in a 
10.1.500 Sales Management Order Management 175761 Application customer without credit limit to be put On Hold
Fulfillment Work Bench ‐ On Partial allocations, more quantity can be allocated, 
10.1.500 Sales Management Order Management 175778 Application than the requested
Tax Report Category ‐ Duplicate ID record warning message improved for user from 
10.1.500 Sales Management Order Management 175798 Application List grid tab
Order Entry ‐ Third Party Customer Ship To Address is not printed on Pro‐Forma 
10.1.500 Sales Management Order Management 176512 Application Invoice report (Also fixed in 10.1.400.x)
Order Entry ‐ Tax, defined to be added on the Invoice, is added on the Order when 
10.1.500 Sales Management Order Management 176840 Application the Total value is changed (Also fixed in 10.1.400.x)
10.1.500 Sales Management Order Management 176894 Application Order Entry ‐ Attachment cannot be deleted
10.1.500 Sales Management Order Management 177320 Application Capable To Promise ‐ The CTP does not link the Projects from the Sales Orders
Order Entry ‐ Counter Sales ships order without verifying if On Hand items are 
10.1.500 Sales Management Order Management 177344 Application allocated or not (Also fixed in 10.1.400.x)
Order Job Wizard ‐ Drawing number not passing through to job when the job 
10.1.500 Sales Management Order Management 177493 Application created by order job wizard from an order that is linked to a quote

Page 51
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Order Entry ‐ Tax, defined to be added on the invoice, is added if a line with serial 
10.1.500 Sales Management Order Management 177528 Application number part is deleted
10.1.500 Sales Management Order Management 177578 Application Order Entry ‐ UOM field in counter sale lines grid should be a drop‐down
Order Entry ‐ Error message is displayed after printing Sales Order 
10.1.500 Sales Management Order Management 177672 Application acknowledgement report and trying to update the SO
Sales Order Pick List ‐ Release Qty value defaults Primary Sales UOM instead of UOM 
10.1.500 Sales Management Order Management 177821 Application used in Sales Order (Also fixed in 10.1.400.x)
10.1.500 Sales Management Order Management 177844 Application Order Entry ‐ Credit Card Expiration Month is mentioned twice
10.1.500 Sales Management Order Management 177853 Application Part ‐ System allows linking the skipped parts and creates new ones in the company
Fulfillment Work Bench ‐ Quick Search Query displays an "out of the range of valid 
10.1.500 Sales Management Order Management 177971 Application values" error
10.1.500 Sales Management Order Management 177987 Application Order Entry ‐ The suppliers search brings inactive suppliers
Order Entry ‐ Order created from Quote does not set the Order Release as Buy To 
10.1.500 Sales Management Order Management 178023 Application Order
Fulfillment Work Bench ‐ Reserve is made on any Warehouse regardless if it is the 
10.1.500 Sales Management Order Management 178046 Application Demand Warehouse (Also fixed in 10.1.400.x)
10.1.500 Sales Management Order Management 178108 Application Cross Dock ‐ Search displays information about deleted Jobs
Product Group ‐ System stops working after deleting a Sales Site value (Also fixed in 
10.1.500 Sales Management Order Management 178257 Application 10.1.400.x)
Capable To Promise ‐ Customer Part Reference does not flow to the Job created 
10.1.500 Sales Management Order Management 178264 Application using Capable to Promise
10.1.500 Sales Management Order Management 178271 Application FOB ‐ On FOB Search screen, Quick Searches are not listed under the BAQ tab
Order Entry ‐ Unit Price of Sales Kit Component is displayed as Total Price, instead of 
10.1.500 Sales Management Order Management 178363 Application Sales Unit Price (Also fixed in 10.1.400.x)
Order Entry ‐ When Sales Kit is Parent Pricing, its components are receiving Price List 
10.1.500 Sales Management Order Management 178736 Application discount
10.1.500 Sales Management Order Management 178879 Application Part ‐ Error is displayed when trying to update Primary Warehouse in Details tab
10.1.500 Sales Management Order Management 178904 Application Part ‐ When we entering a part number, a different part number is retrieved
Incoming Intercompany PO Suggestions ‐ Ship To Price List is not assigned to Sales 
10.1.500 Sales Management Order Management 178940 Application Order
10.1.500 Sales Management Order Management 179005 Application Order Entry ‐ Able to create new Sales Order with inactive Currency
10.1.500 Sales Management Order Management 179030 Application Order Entry ‐ On Hand quantity value is calculated from items from all Sites
Customer Part Cross Reference ‐ Deleting a Customer Part, such Customer Part is 
10.1.500 Sales Management Order Management 179061 Application deleted on all Customers
Order Entry ‐ Locked price on kit component is changed when quantity per kit is 
10.1.500 Sales Management Order Management 179073 Application changed
Order Entry ‐ An incorrect validation is displayed when Process Counter Sale and 
10.1.500 Sales Management Order Management 179400 Application then try to close the screen

Page 52
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Order Entry ‐ Adding a new release to the order created from Quote, does not set 
10.1.500 Sales Management Order Management 179441 Application Make Direct check box correctly
Order Entry ‐ An error message is displayed when use the Quote Search from Get 
10.1.500 Sales Management Order Management 179495 Application Quote Line For Order screen
Order Entry ‐ "Object reference not set" message appears when clicking addr field 
10.1.500 Sales Management Order Management 179653 Application and then the delete button at Release/Detail tab
Order Entry ‐ Counter Sale Order not processed later if user answered No when 
10.1.500 Sales Management Order Management 179670 Application asked if the pack was ready to ship the first time
Order Entry ‐ Shipping order should not write to bookdtl table (Also fixed in 
10.1.500 Sales Management Order Management 179689 Application 10.1.400.x)
Part ‐ User that has no access to a Site, should not be able to view it in Part 
10.1.500 Sales Management Order Management 179788 Application Maintenance
10.1.500 Sales Management Order Management 179909 Application Order Entry ‐ Changing Part UOM does not changes Price List
Order Entry ‐ When Ready to Process is off, some transactions are recorded in 
10.1.500 Sales Management Order Management 179968 Application BookRel table
Order Entry ‐ On Sales Order with Inclusive Tax, Discount not applied if it is added 
10.1.500 Sales Management Order Management 180062 Application after adding Order Line
Order Entry ‐ Sales Order can be deleted leaving Credit Card transactions pending to 
10.1.500 Sales Management Order Management 180161 Application be approved (Also fixed in 10.1.400.x)
Order Entry ‐ Printing Pro‐forma for Misc Charge in foreign language do not 
10.1.500 Sales Management Order Management 180166 Application translate correctly (Also fixed in 10.1.400.x)
Order Entry ‐ Object reference error when creating an Order pulling info from a 
10.1.500 Sales Management Order Management 180289 Application Quote
Order Entry ‐ Discount continues applying to Sales Order even though Discount is set 
10.1.500 Sales Management Order Management 180296 Application to 0
Order Entry ‐ Line with configured part created from Quote, does not set the Order 
10.1.500 Sales Management Order Management 180322 Application Release as Buy To Order
Customer Part Cross Reference ‐ "Key already exists" error when expanding left side 
10.1.500 Sales Management Order Management 180463 Application Tree view
Order Entry ‐ Row modified by another user error when updating Part ID and 
10.1.500 Sales Management Order Management 180481 Application Product Group value on existing line
Fulfillment Work Bench ‐ Error and/or incorrect staging warehouse/bin when 
10.1.500 Sales Management Order Management 180715 Application releasing backflushed kits (Also fixed in 10.1.400.x)
Order Job Wizard ‐ The Order Job Wizard can be launched and generate Jobs even 
10.1.500 Sales Management Order Management 180772 Application when the Job Management license is not enabled
Part ‐ After adding a part with package control specific UOMs, an error message is 
10.1.500 Sales Management Order Management 180823 Application displayed for adding the second part
10.1.500 Sales Management Order Management 180862 Application Order Entry ‐ Copied SO not taking in account misc amount

Page 53
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Customer Part Cross Reference ‐ EWA ‐ Unable to create a new customer part cross 
10.1.500 Sales Management Order Management 180954 Application reference when there is already one created for that customer
Part ‐ “Clear this form? Your unsaved changes will be ignored” message, even 
10.1.500 Sales Management Order Management 180957 Application though no information was retrieved
RMA Dispositions ‐ Returning back a Sales Kit adds inventory to the Sales Kit Part, 
10.1.500 Sales Management Order Management 180994 Application but not to its Components (Also fixed in 10.1.400.x)
Fulfillment Work Bench ‐ Numeric fields does not work with Quantity Display 
10.1.500 Sales Management Order Management 181058 Application Decimal value specified at Company
Product Group ‐ Territory value is not saved, it does not exists in the database (Also 
10.1.500 Sales Management Order Management 181134 Application fixed in 10.1.400.x)
10.1.500 Sales Management Order Management 181138 Application Fulfillment Work Bench ‐ Pack station is required when trying to allocate jobs
10.1.500 Sales Management Order Management 181140 Application Fulfillment Work Bench ‐Wave ID is empty for job after allocate WO wave
10.1.500 Sales Management Order Management 181144 Application Order Entry ‐ Potential null reference on Sales Order Entry when using KitDetails
Order Entry ‐ Counter Sales with more than one Line is not Shipped and not Invoiced 
10.1.500 Sales Management Order Management 181267 Application when processed
Order Entry ‐ In counter Sales, when customer is on credit hold and the answer to 
the "Do you want to Ship?" question is No, the pack is shipped and invoiced 
10.1.500 Sales Management Order Management 181270 Application anyways
Order Entry ‐ Price info not displayed properly having Tax Inclusive, Discount and 
10.1.500 Sales Management Order Management 181492 Application Component Pricing Sales Kit (Also fixed in 10.1.400.x)
10.1.500 Sales Management Order Management 181535 Application Order Entry ‐ Unable to Configure Configurations On the Fly in Sales Order Entry
Sales Order Backlog Report ‐ Setting it as not Print Order Release Details, displays a 
10.1.500 Sales Management Order Management 181564 Application lot of blank space
Order Entry ‐ Taxes are calculated incorrectly when Discount is entered at Header 
10.1.500 Sales Management Order Management 181796 Application level
Part ‐ Cannot add an Alternate Part using a Supplier, Manufacturer, Customer, 
10.1.500 Sales Management Order Management 181807 Application Internal or Product Code Part
Order Entry ‐ Closing a Release of a Sales Kit Line leaves its Component Parts as 
10.1.500 Sales Management Order Management 181849 Application Open (Also fixed in 10.1.400.x)

Part ‐ Refresh Part Quantities and Allocations ‐ After running PartBin QOH From 
10.1.500 Sales Management Order Management 181914 Application PartTran process, transaction records have allocation issues (Also fixed in 10.1.400.x)
Order Entry ‐ No Warehouse value displayed when switching from an On The Fly 
10.1.500 Sales Management Order Management 181920 Application Part to an existing Part (Also fixed in 10.1.400.x)
Order Entry ‐ Not preventing to save lines of the order when credit limit actions is 
10.1.500 Sales Management Order Management 181950 Application set to stop on company conf
10.1.500 Sales Management Order Management 182020 Application Order Entry ‐ Net Sale value not updated after applying a Deposit Payment
Order Entry ‐ Configuration Button is not enabled in Sales Order for Parts tied to No 
10.1.500 Sales Management Order Management 182131 Application Inputs Configurator

Page 54
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Sales Kits ‐ No messages regarding exceeded Credit Limit are displayed for 
10.1.500 Sales Management Order Management 182175 Application Component Pricing Sales Kits
PartWhse and PartQty onhand values are out of sync with PartBin and Refresh 
10.1.500 Sales Management Order Management 182180 Application quantity and allocations do not correct the issue (Also fixed in 10.1.400.x)
10.1.500 Sales Management Order Management 182272 Application Part ‐ Supplier's Primary Purchase Point is not displayed as Purchasing Supplier
Fulfillment Work Bench ‐ Allocate by Serial Number, then Release for Picking, 
10.1.500 Sales Management Order Management 182276 Application generates a Priority = 0 transaction
10.1.500 Sales Management Order Management 182320 Application Order Entry ‐ Object Reference error displayed when Create Demand From Orders
Order Entry ‐ User is prompted to confirm saving data when closing the order entry 
10.1.500 Sales Management Order Management 182332 Application form after Sales Order Acknowledgement report is run
Wave Tracker ‐ Allocation Wave field default with 0 when screen is opened; cannot 
10.1.500 Sales Management Order Management 182563 Application move to other tabs
Order Entry ‐ Discount % Lost after saving a Price Group linked to a Product Group 
10.1.500 Sales Management Order Management 182590 Application (Also fixed in 10.1.400.x)
Fulfillment Work Bench ‐ Printing Released Items of a Copied Sales Order for the first 
10.1.500 Sales Management Order Management 182766 Application time, prints the report as **REPRINT**
Order Entry ‐ It is allowed to create a 2nd Sales Order for Customer marked as 
10.1.500 Sales Management Order Management 182768 Application "Check Dup PO"
10.1.500 Sales Management Order Management 182985 Application Order Entry ‐ Search Results give results displaying first non‐numeric values
10.1.500 Sales Management Order Management 182996 Application Order Entry ‐ Creates Demand Entry without Cross Reference value
10.1.500 Sales Management Order Management 183036 Application Order Entry ‐ Salespersons info is lost after updating Ship To value
10.1.500 Sales Management Order Management 183108 Application Cross Dock ‐ Hide priority column and documentation for column
Order Entry ‐ Extended Price, Tax and Misc changes incorrect when using Header 
10.1.500 Sales Management Order Management 183263 Application Misc Changes with Tax Inclusive Pricing
SSRS Sales Order Acknowledgment Report ‐ Price not displayed for component 
10.1.500 Sales Management Order Management 183298 Application priced kit when print components is set to False
Order Entry ‐ Unit Price is not automatically calculated after changing UOM and 
10.1.500 Sales Management Order Management 183417 Application tabbing out when using a Line‐level Discount (Also fixed in 10.1.400.x)
Part ‐ Object Reference error when updating Global Part of a Price List that is on an 
10.1.500 Sales Management Order Management 183424 Application InterCompany Customer
Order Entry ‐ Changing Line's UOM of Multi‐UOM Tracked Part, Line and Release 
10.1.500 Sales Management Order Management 183457 Application quantity values do not match (Also fixed in 10.1.400.x)
Part ‐ Costing Method is updated in the Sites Tab when answering No to the 
10.1.500 Sales Management Order Management 183503 Application confirmation message
Fulfillment Work Bench ‐ Unable to allocate by Part if Sales Order is created from 
10.1.500 Sales Management Order Management 183522 Application Opportunity/Quote Entry
Fulfillment Work Bench ‐ More serial numbers can be allocated than remain to be 
10.1.500 Sales Management Order Management 183584 Application fulfilled
10.1.500 Sales Management Order Management 183586 Application Part ‐ The PLM check box is disabled before saving a new part

Page 55
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Order Job Wizard ‐ Jobs created from Sales Order Entry, create Jobs without Draw 
10.1.500 Sales Management Order Management 184109 Application value
Order Entry ‐ Pack Slip Currency and Invoice Currency not copied with latest value 
10.1.500 Sales Management Order Management 184158 Application when copying an order
Capable To Promise ‐ Taxable check box was not calculated correctly when generate 
10.1.500 Sales Management Order Management 184192 Application PO/ PO Suggestion
Order Entry ‐ Search returns "Error accessing the database: Incorrect syntax near ')'." 
10.1.500 Sales Management Order Management 184278 Application when using Starting At and Customer filters
Incoming Intercompany PO Suggestions ‐ Error message is displayed when selecting 
10.1.500 Sales Management Order Management 184560 Application a Purchase Order record
10.1.500 Sales Management Order Management 184775 Application Fulfillment Work Bench ‐ Allocate By Part deletes MFG‐CUS transaction record
Order Entry ‐ Customer value should not be updated on shipped Sales Orders by 
10.1.500 Sales Management Order Management 184779 Application Drop Shipment
Order Entry ‐ Tax is applied to Sales Kit Components even though Tax Type = Fully 
10.1.500 Sales Management Order Management 186054 Application Exempt
SSRS Sales Order Acknowledgment Report ‐ Currency symbol on totals line is symbol 
10.1.500 Sales Management Order Management 186295 Application for base currency not order currency
10.1.500 Sales Management Order Management 186414 Application Order Entry ‐ Cannot assign the Project ID with the Sales Order
Price List Inquiry ‐ Discounts from discount pricelists are not being displayed 
10.1.500 Sales Management Order Management 186447 Application correctly
Order Entry ‐ Changing Product Group to a Product Group having no sales site 
10.1.500 Sales Management Order Management 187386 Application changes site on release to logged in site
10.1.500 Sales Management Order Management 187583 Application Fulfillment Work Bench ‐ GetWarehouseInfo method needs to be a public method
Order Entry ‐ From Warehouse value changes to Primary Warehouse value when 
10.1.500 Sales Management Order Management 188219 Application updating Sales Unit Price
10.1.500 Sales Management Order Management 188248 Application Price List Inquiry ‐ If only Part ID info is entered, pricing info is not displayed
Order Entry ‐ Changing existing Sales Order to One Time Ship To, deletes Need By 
10.1.500 Sales Management Order Management 188258 Application and Ship By values
10.1.500 Sales Management Order Management 188557 Application Fulfillment Work Bench ‐ Wave Pick Ticket does not have a Report Style defined
10.1.500 Sales Management Order Management 188604 Application Order Entry ‐ Book Details creates a non‐existent additional record
Order Entry ‐ Discount amount changes to zero when configuring a part in orders 
10.1.500 Sales Management Order Management 188875 Application but not quotes
Order Entry ‐ Unable to select the Make direct; error displays: "This property cannot 
10.1.500 Sales Management Order Management 189050 Application be set to a null value."
Order Allocation ‐ Update to PartQty needs to go through DeferredUpdate to avoid 
10.1.500 Sales Management Order Management 189072 Application deadlock
PLM Server Process ‐ BOMs from PLM to Epicor 10 ‐ Quote Entry are not created 
10.1.500 Sales Management Print Integration 157830 Application (Also fixed in 10.1.400.x)

Page 56
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Enterprise Configurator Server Process ‐ Error when using Automatically Mark 
10.1.500 Sales Management Product Configuration 145196 Application Method Material Global check box
Enterprise Configurator Server Process ‐ Materials are not excluded of component 
10.1.500 Sales Management Product Configuration 145240 Application pricing if exclude from pricing rule function is set to those materials
Enterprise Configurator Server Process ‐ Manufacturing configurators can be loaded 
10.1.500 Sales Management Product Configuration 145593 Application on User Defined Method of Sales Company
Configurator Look Up ‐ DataLookUp methods are also using a param object, they 
10.1.500 Sales Management Product Configuration 153271 Application need to be removed
10.1.500 Sales Management Product Configuration 159756 Application Resource Group ‐ Investigate the use of ResourceType field in ResourceGroup table
10.1.500 Sales Management Product Configuration 160036 Application Component pricing calculations inconsistent between Quote and Sales Order
Configurator Run Time ‐ No records are loaded in Configuration Summary Grid when 
10.1.500 Sales Management Product Configuration 160852 Application using Trackers
Configurator Code Editor ‐ PCLookup.DataColumnLookupList needs to be added to 
10.1.500 Sales Management Product Configuration 161361 Application code editor
10.1.500 Sales Management Product Configuration 161491 Application PcValue data is not always deleted when the configured part details are deleted
10.1.500 Sales Management Product Configuration 163336 Application Fix warnings from BO/ConfigurationRuntime
Configurator Entry ‐ Record Creation Options remain selected and enabled after 
10.1.500 Sales Management Product Configuration 163841 Application Create Revision option is cleared
Configurator Designer ‐ Not displaying input count in the Tree view and the Tree 
10.1.500 Sales Management Product Configuration 165466 Application options does nothing
10.1.500 Sales Management Product Configuration 165541 Application Review and update BasePartNum for RemoveLink
Configurator Rules ‐ Error message is not displayed when leaving a Keep When rule 
10.1.500 Sales Management Product Configuration 165827 Application undefined
10.1.500 Sales Management Product Configuration 165834 Application Configurator Sales Kits ‐ Error when keeping a purchase material with a revision
Configurator Rules ‐ Retain Existing Methods rule function does not work in Quote 
10.1.500 Sales Management Product Configuration 166090 Application Entry
Configurator Run Time ‐ Child Subassembly lost when it is tight to a parent sub with 
10.1.500 Sales Management Product Configuration 167257 Application Phantom BOM
Configurator Run Time ‐ Method rules are not re‐executed when removing the 
10.1.500 Sales Management Product Configuration 167689 Application elements of a Sub and getting details again
Configurator Code Editor ‐ Add References form displays index out of bounds error/ 
10.1.500 Sales Management Product Configuration 168194 Application inconsistent duplicate message
Configurator Run Time ‐ When swapping a part with another part that is a 
Configurator on the fly, the session for its sub‐configurators is not prompted (Also 
10.1.500 Sales Management Product Configuration 168265 Application fixed in 10.1.400.x)
Product Configurator ‐ Unable to process Sales Kits of type Component Pricing when 
10.1.500 Sales Management Product Configuration 168680 Application Child Item is related to a Configurator
Configurator Designer ‐ Error is displayed on RunTime event if there is a combo box 
10.1.500 Sales Management Product Configuration 169138 Application with a Global Input Variable linked (Also fixed in 10.1.400.x)

Page 57
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Configurator Run Time ‐ Alternate Methods of subassemblies are retrieved when 
10.1.500 Sales Management Product Configuration 169924 Application getting details instead of the revision
Configurator DynamicLists ‐ List Items grid does not display the proper values of the 
10.1.500 Sales Management Product Configuration 170564 Application Dynamic Lists (Also fixed in 10.1.400.x)
Configurator Part Creation ‐ Reordering a saved input values configuration does not 
10.1.500 Sales Management Product Configuration 170582 Application pull in details when not generating method
Configurator Expression Builder ‐ Method Parameters are not displayed and Method 
10.1.500 Sales Management Product Configuration 170978 Application Types are not validated
Configurator Pricing ‐ Pricing from subconfigurator not considering the qty/per of 
10.1.500 Sales Management Product Configuration 171022 Application the component
Configurator Run Time ‐ Cannot get details when getting them manually in a Job that 
10.1.500 Sales Management Product Configuration 171218 Application is linked to an Order
Configurator Entry ‐ Document variables screen does not clear entries between 
10.1.500 Sales Management Product Configuration 171577 Application configurations
Configurator Global Variables ‐ It is possible to change the Data type of a Global 
10.1.500 Sales Management Product Configuration 171655 Application Input Variable that is in use
Configurator Global Variables ‐ GIV fields are enabled when deleting Global Input 
10.1.500 Sales Management Product Configuration 171658 Application Variable that is in use
Configurator Code Editor ‐ Remove tooltip and GlobalINput from code editor field 
10.1.500 Sales Management Product Configuration 171695 Application properties for browser
Configurator Run Time ‐ Next Date inputs set as Publish To Document do not 
10.1.500 Sales Management Product Configuration 171900 Application recognize empty values
Product Configurator ‐ Error appears after saving on Order Entry for an specific SO 
10.1.500 Sales Management Product Configuration 171956 Application with a configured part
Configurator User Definable Functions ‐ Error message is displayed twice if an invalid 
10.1.500 Sales Management Product Configuration 172200 Application configurator is entered
Configurator Pricing ‐ Component Pricing incorrectly calculated in a multilevel 
10.1.500 Sales Management Product Configuration 172397 Application scenario; doubling parent materials prices
Resource Group ‐ Moving a resource to another resource group does not move the 
10.1.500 Sales Management Product Configuration 172706 Application actual load
10.1.500 Sales Management Product Configuration 172750 Application Configurator Rules ‐ Able to modify a material partnum with a null value
Order Entry ‐ System does not respond when the Customer is set on Credit Hold for 
10.1.500 Sales Management Product Configuration 172874 Application a Sales Kit Line (Also fixed in 10.1.400.x)
Configurator DynamicLists ‐ Creating a BAQ criteria without having a Input value 
10.1.500 Sales Management Product Configuration 173092 Application causes an exception
Configurator Run Time ‐ On Field Validating does not work when it is referenced to 
10.1.500 Sales Management Product Configuration 173095 Application the same input (Also fixed in 10.1.400.x)
Resource Group ‐ Generate Shop Capacity Process message displays on group Save 
10.1.500 Sales Management Product Configuration 173243 Application not on Resource save

Page 58
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Resource Group ‐ Able to maintain Resources from a group from different sites in 
10.1.500 Sales Management Product Configuration 173558 Application the same company
Configurator Part Creation ‐ Screen does not refresh when configuring a JobMtl 
10.1.500 Sales Management Product Configuration 173579 Application where the config is set to "set part num only"
Configurator Document Rules ‐ Price rule with expression it must validate to return a 
10.1.500 Sales Management Product Configuration 174063 Application value
Configurator Document Rules ‐ Error "This property cannot be set to a null value" 
10.1.500 Sales Management Product Configuration 174071 Application when saving a incomplete rule
Configurator Designer ‐ Unable to see local variables on configurator designer 
10.1.500 Sales Management Product Configuration 174342 Application tracker if configurator is approved
Configurator Code Editor ‐ Add SystemDiagnostics to restricted keyword list for multi‐
10.1.500 Sales Management Product Configuration 174814 Application tenant license
10.1.500 Sales Management Product Configuration 174951 Application Product Configurator ‐ Improperly formatted queries need to be fixed
Configurator Part Creation ‐ GetSmartString Function does not honor Space 
10.1.500 Sales Management Product Configuration 174967 Application separator (Also fixed in 10.1.400.x)
Configurator Designer ‐ Label and Rectangle inputs are displaying “Value” control on 
10.1.500 Sales Management Product Configuration 174994 Application Available Selections tree
10.1.500 Sales Management Product Configuration 175065 Application Product Configurator ‐ Improperly formatted queries need to be fixed
Configurator Entry ‐ Fix all configurator adapter projects with the correct method 
10.1.500 Sales Management Product Configuration 175071 Application structure
Configurator Designer ‐ New rows cannot be deleted in Value / Description List 
10.1.500 Sales Management Product Configuration 175091 Application Editor Form when having empty values
Configurator EWA ‐ System out of memory exception when deploying large 
10.1.500 Sales Management Product Configuration 175099 Tools configurators with many inputs to EWA 
Configurator Designer ‐ Read Only Expression Field does not behave like the other 
10.1.500 Sales Management Product Configuration 175162 Application fields for entering expressions
Configurator Designer ‐ Errors are displayed when adding a new value using the tab 
10.1.500 Sales Management Product Configuration 175189 Application key in Value List Editor for Valid List property
Configurator Rules ‐ Row has been modified error is displayed repeatedly when 
10.1.500 Sales Management Product Configuration 175192 Application approving and unapproving
Configurator Designer ‐ Unable to delete an input from configurator (Also fixed in 
10.1.500 Sales Management Product Configuration 175199 Application 10.1.400.x)
ConfiguratorSalesKits ‐ Error message should not have yes/no options, but the OK 
10.1.500 Sales Management Product Configuration 175250 Application option only
10.1.500 Sales Management Product Configuration 175253 Application ConfiguratorSalesKits ‐ No PcValueGrp exception is displayed
Configurator Designer ‐ "Skip if all inputs are disabled or invisible" remains as True 
10.1.500 Sales Management Product Configuration 175297 Application for the first page of the sequence
Configurator Conversion ‐ RunConvertPCInValues does not stop when killed from 
10.1.500 Sales Management Product Configuration 175313 Application the System Monitor

Page 59
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Configurator Designer ‐ Input rules do not recognize Combo Box description until 
10.1.500 Sales Management Product Configuration 175421 Application field is manually changed (Also fixed in 10.1.400.x)
Configurator Import/Export ‐ Export file is not written when the user manually 
10.1.500 Sales Management Product Configuration 175453 Application enters the file name
Configurator EWA ‐ Unable to move the next page of a subconfiguration in a multi‐
10.1.500 Sales Management Product Configuration 175668 Application level runtime session
Configurator Rules ‐ Method rule code does not put the correct material in Method 
10.1.500 Sales Management Product Configuration 175787 Application Tracker (Also fixed in 10.1.400.x)
Configurator EWA ‐ Combo Box value cannot be deleted and the list is lost when 
10.1.500 Sales Management Product Configuration 175803 Application trying to delete the value
Configurator EWA ‐ Required property of the inputs is not validated in Configurator 
10.1.500 Sales Management Product Configuration 175816 Application EWA.
Verify Existing Configurations ‐ "Set Field value on DB Field" message displays, 
10.1.500 Sales Management Product Configuration 175970 Application despite of no changes were made
Verify Existing Configurations ‐ Config Version on configured dtl records not updated 
10.1.500 Sales Management Product Configuration 175982 Application properly
Configurator Code Editor ‐ Renamed UDMethods that are not valid, are not caught 
10.1.500 Sales Management Product Configuration 175994 Application by the syntax check
ConfiguratorSalesKits ‐ Implement process keep when for sales kit/phantom 
10.1.500 Sales Management Product Configuration 176079 Application configurators
Configurator Part Creation ‐ Prompt for a new part number pop‐up does not display 
10.1.500 Sales Management Product Configuration 176112 Application the name of the original part
Order Tracker ‐ Opening the configuration from the tracker needs an option to see 
10.1.500 Sales Management Product Configuration 176184 Application the configuration page read‐only (Also fixed in 10.1.400.x)
Verify Configurations log file message for Jobs displays blank for the Part and 
10.1.500 Sales Management Product Configuration 176253 Application Revision
Configurator Run Time ‐ Details are not brought in when reconfiguring a Job created 
10.1.500 Sales Management Product Configuration 176323 Application from Order Job Wizard
10.1.500 Sales Management Product Configuration 176367 Application Verify Existing Configurations ‐ Error on dynamic lists that call UD Methods
Configurator Global Variables ‐ Duplicate error is displayed when saving a variable 
10.1.500 Sales Management Product Configuration 176403 Application that already exists
Configurator Designer ‐ Images with a point in its name are not displayed in 
10.1.500 Sales Management Product Configuration 176518 Application Configurator Designer and Runtime
Configurator EWA ‐ Pictures boxes do not display in Configurator Runtime when 
10.1.500 Sales Management Product Configuration 176617 Tools working from EWA (Also fixed in 10.1.400.x)
10.1.500 Sales Management Product Configuration 176625 Application Configurator Events ‐ On Load event is executed twice when configuring on an Entity
Verify Existing Configurations ‐ Exception displayed after setting up Part creation to 
10.1.500 Sales Management Product Configuration 176676 Application a configurator and run the process

Page 60
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Verify Configurations ‐ Fix program to update PcValueGrp RelatedToTableName and 
10.1.500 Sales Management Product Configuration 176778 Application RelatedtoSysRowID (Also fixed in 10.1.400.x)
Configurator Part Creation ‐ Job and Quote method rules are executed in Quotes 
10.1.500 Sales Management Product Configuration 176826 Application when having part creation
10.1.500 Sales Management Product Configuration 176837 Application Configurator Run Time ‐ Refresh dynamic list function should not be case‐sensitive
Configurator DynamicLists ‐ Unable to fully reorder the list values when deleting a 
10.1.500 Sales Management Product Configuration 176859 Application value from the list
Configurator Look Up ‐ Negatives and Thousands Separator properties are not 
10.1.500 Sales Management Product Configuration 177001 Application shared when using a Template Column Set
Configurator Designer ‐ Commented out code in Dynamic list conditions still caused 
10.1.500 Sales Management Product Configuration 177010 Tools inputs to change
Configurator Look Up ‐ The format of columns is not updated on the Tables that are 
10.1.500 Sales Management Product Configuration 177023 Application using a Template Columns Set
Configurator Designer ‐ Read‐Only Expression displays syntax errors and cannot be 
10.1.500 Sales Management Product Configuration 177029 Application added to the page
Configurator Look Up ‐ Error message is displayed when clicking No to the prompt 
10.1.500 Sales Management Product Configuration 177033 Application regarding updating the column details
Configurator Look Up ‐ Error is displayed when entering a Lookup value to a String 
10.1.500 Sales Management Product Configuration 177064 Application Column that is set as Numbers Only
Configurator Designer ‐ Unable to delete inputs that are referenced in a commented 
10.1.500 Sales Management Product Configuration 177068 Application expression
Configurator Events ‐ Multi‐Level Parent configurators are not running page leave or 
10.1.500 Sales Management Product Configuration 177271 Application configuration complete events

10.1.500 Sales Management Product Configuration 177363 Application Configurator Rules ‐ Tool tip should not display anything if there is nothing to display


Verify Configurations ‐ Picture box inputs used in configurations cause the verify 
10.1.500 Sales Management Product Configuration 177461 Application existing configurations process to error out (Also fixed in 10.1.400.x)
Configurator Code Editor ‐ Right‐clicking the variables area of the code editor 
10.1.500 Sales Management Product Configuration 177500 Application displays object reference error
10.1.500 Sales Management Product Configuration 177818 Application Configurator Entry ‐ Rebuild sequences corrupts the PcStruct.StructID
Configurator Conversion ‐ ConvertPCInValues process needs to convert Yes/No to 
10.1.500 Sales Management Product Configuration 177823 Application True/False
Configurator Conversion ‐ PcConvertDataFrom905 needs to update the format string 
10.1.500 Sales Management Product Configuration 177830 Application for check boxes
Configurator Events ‐ Description of the Combo Box is not considered when setting 
10.1.500 Sales Management Product Configuration 177848 Application the value in On Load events
Configurator Events ‐ Combo Boxes are not taking the value set in Configurator On 
10.1.500 Sales Management Product Configuration 177849 Application Loaded Event

Page 61
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Verify Existing Configurations ‐ An errors occurs when running in customer's 
10.1.500 Sales Management Product Configuration 178006 Application database (Also fixed in 10.1.400.x)
Configurator Designer ‐ It is possible to save when adding a new input even when 
10.1.500 Sales Management Product Configuration 178027 Application the name is already used
Configurator Designer ‐ Buttons do not take the proper Locations and Size even 
10.1.500 Sales Management Product Configuration 178064 Application when it is configured
Configurator Test Inputs ‐ Error when testing the inputs of an inspection plan 
10.1.500 Sales Management Product Configuration 178065 Application configurator
Configurator Part Creation ‐ Prompt User to Confirm New Part does not work for Use 
10.1.500 Sales Management Product Configuration 178188 Application Smart String as the new part number method
Verify Existing Configurations ‐ When using SIV, the logs are calling JOBS to the 
10.1.500 Sales Management Product Configuration 178198 Application QUOTES records
Resource Group ‐ If the option Inform of Overload is not selected, the Overload 
10.1.500 Sales Management Product Configuration 178275 Application Informer still displays overload
Configurator Part Creation ‐ UOM not set properly for the new methods materials 
when replacing materials that have different inventory UOMs (Also fixed in 
10.1.500 Sales Management Product Configuration 178325 Application 10.1.400.x)

Verify Existing Configurations ‐ Exception The following is required: 
10.1.500 Sales Management Product Configuration 178598 Application MeasurementDesc is displayed but input is Read‐Only so is not necessary to be filled
Verify Existing Configurations ‐ Parts with no part creation are not being processed 
10.1.500 Sales Management Product Configuration 178632 Application (Also fixed in 10.1.400.x)
Configurator Import/Export ‐ Cannot export configurations that have alternate 
10.1.500 Sales Management Product Configuration 178720 Application methods with method rules on them (Also fixed in 10.1.400.x)
Configurator Import/Export ‐ Cannot export when having method rules in multiple 
10.1.500 Sales Management Product Configuration 179354 Application revisions (Also fixed in 10.1.400.x)
Configurator Run Time ‐ On Field Validating does not have access to proposed 
10.1.500 Sales Management Product Configuration 179691 Application description
10.1.500 Sales Management Product Configuration 179782 Application Configurator DynamicLists ‐ Data source is locked once a condition is entered
Resource Group ‐ When context menu is used, the Production Calendar form does 
10.1.500 Sales Management Product Configuration 179851 Application not load the calendar from Resource group
Configurator Run Time ‐ Saved Input description is not loaded when reconfiguring 
10.1.500 Sales Management Product Configuration 179953 Application (Also fixed in 10.1.400.x)
Configurator Designer ‐ Lose focus of the control while trying to save an empty ID of 
10.1.500 Sales Management Product Configuration 180133 Application a control
10.1.500 Sales Management Product Configuration 180240 Application Configurator Designer ‐ Unable to delete Inputs commented in On Page Events
Enterprise Configurator Server Process ‐ Error displays and process stops after 
synchronizing an enterprise configurator with operations and using component 
10.1.500 Sales Management Product Configuration 180461 Application pricing (Also fixed in 10.1.400.x)

Page 62
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Configurator Pricing ‐ Stack overflow condition when a multi‐level configurator has 
10.1.500 Sales Management Product Configuration 180466 Application component pricing at multiple levels
Configurator Designer ‐ Group Box is duplicated and an error message is displayed 
10.1.500 Sales Management Product Configuration 180865 Application when deleting the input name
Configurator DynamicLists ‐ Dynamic list form should switch to the Detail tab when 
10.1.500 Sales Management Product Configuration 181253 Application user clicks New in the list grid to prevent data corruption
Configurator Run Time ‐ Updating a target entity to equal the smart string value 
10.1.500 Sales Management Product Configuration 181262 Application does not work when called from a Method Rule
10.1.500 Sales Management Product Configuration 181426 Application Configurator Run Time ‐ DeployToEWA runs expressions, but it should not
10.1.500 Sales Management Product Configuration 181429 Application Configurator DynamicLists ‐ List item list should populate only for Predefined Lists
Configurator DynamicLists ‐ Unable to move ListItems items up or down after 
10.1.500 Sales Management Product Configuration 181430 Application deleting a row
Configurator Rules ‐ Method Rules entry displays an older revision for a subassembly 
10.1.500 Sales Management Product Configuration 181504 Application on the Parent Parts configurator (Also fixed in 10.1.400.x)
Configurator Run Time ‐ Not retrieving the supplier break qty values which are 
10.1.500 Sales Management Product Configuration 181550 Application related to a Subcontract operation
10.1.500 Sales Management Product Configuration 181578 Application Configurator Test Rules ‐ Exception displayed when testing WavyRider
Configurator DynamicLists ‐ Previous values are not saved when a New Dynamic List 
10.1.500 Sales Management Product Configuration 181672 Application is added
Configurator Designer ‐ AlterDesignContainer warning when making code analysis 
10.1.500 Sales Management Product Configuration 181764 Application clean up
10.1.500 Sales Management Product Configuration 182168 Application Configurator Entry ‐ Create a Configurator Course for a SaaS environment
10.1.500 Sales Management Product Configuration 182331 Application Configurator WA ‐ Changed all dynamic types to EWA compatible ones
Configurator Run Time ‐ Input validated event does not start when paging back to a 
10.1.500 Sales Management Product Configuration 182477 Application previous page and changing the input
Configurator Global Variables ‐ Document Rule on a Parent Configurator does not 
10.1.500 Sales Management Product Configuration 182595 Application set the Global Value from a Subconfigurator (Also fixed in 10.1.400.x)
10.1.500 Sales Management Product Configuration 182793 Application SQL Injection warnings in PCUpdateVersion
Configurator Entry ‐ Deploy to EWA displays an exception when deploying a No 
10.1.500 Sales Management Product Configuration 182860 Application Inputs Configurator
Configurator Run Time ‐ Alternate Method rules are not honored in runtime (Also 
10.1.500 Sales Management Product Configuration 183025 Application fixed in 10.1.400.x)
10.1.500 Sales Management Product Configuration 183173 Application Configurator Designer ‐ The Next navigator control is disabled
Configurator Run Time ‐ Saving a configuration errors out with a pricing rule and 
10.1.500 Sales Management Product Configuration 183214 Application override price list selected (Also fixed in 10.1.400.x)
10.1.500 Sales Management Product Configuration 183326 Application Enterprise Configurator ‐ Server Process Code cleanup in EC project
Configurator DynamicLists ‐ An error is displayed when first creating a Predefined 
10.1.500 Sales Management Product Configuration 183423 Application Dynamic List and then trying to add another one with BAQ, UDM or DLM

Page 63
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Regenerate Configurations ‐ After approving, a configurator process does not 
10.1.500 Sales Management Product Configuration 183908 Application complete (Also fixed in 10.1.400.x)
Configurator Run Time ‐ Date and Combo Boxes with initial values set are not saved 
10.1.500 Sales Management Product Configuration 184033 Application with empty / null values when reconfiguring
10.1.500 Sales Management Product Configuration 184351 Application Configurator Test Inputs ‐ Cannot navigate through pages after clicking Undo
Configurator Rules ‐ Set part Defaults pulls in expired supplier price lists for swapped 
10.1.500 Sales Management Product Configuration 184627 Application in material (Also fixed in 10.1.400.x)
10.1.500 Sales Management Product Configuration 184718 Application Configurator Code Editor ‐ Remove ValidateArgsCancel from Page load event
Configurator Code Editor ‐ Expression builder needs JobMtl.SalvageQtyPer field 
10.1.500 Sales Management Product Configuration 184952 Application added to list
Configurator Designer ‐ Error when loading a Configurator with Dynamic List using 
10.1.500 Sales Management Product Configuration 185049 Application UDM after renaming the User Defined Method
Configurator Events ‐ On field changed input event is executed after configuration 
10.1.500 Sales Management Product Configuration 185113 Application complete event (Also fixed in 10.1.400.x)
Configurator Run Time ‐ Unhandled exception is displayed and unable to get details 
10.1.500 Sales Management Product Configuration 185204 Application when is a configure part with a material as plan as assembly in Quote Entry
Regenerate Configurations ‐ Sales kit is not set as Configurable when has a 
10.1.500 Sales Management Product Configuration 185439 Application component with a configuration
Configurator Conversion ‐ Lookup tables decimal formats upgraded from 10.0‐10.1 
10.1.500 Sales Management Product Configuration 185587 Application can get set with invalid format
Configurator Designer ‐ Radio set selects the incorrect option unless clicking directly 
10.1.500 Sales Management Product Configuration 186734 Application on the radio button
Configurator Look Up ‐  Index error when trying to change format on decimals 
10.1.500 Sales Management Product Configuration 186742 Application columns
Configurator DynamicLists ‐ Dynamic list does not consider the value of the inputs 
10.1.500 Sales Management Product Configuration 187071 Application when there are too many on a single condition
Configurator Rules ‐ Set Part Defaults rule function is not pulling in the material 
10.1.500 Sales Management Product Configuration 187114 Application burden cost correctly in quotes
Resource Group ‐ Resources from other Resource Groups are not displayed in the 
10.1.500 Sales Management Product Configuration 187284 Application tree view when refreshing the window
Resource Group ‐ Do not allow to move a resource already assigned to a Job to a 
10.1.500 Sales Management Product Configuration 187988 Application different Site
Configurator Events ‐ Error when a on field changed event is fired up from a date 
10.1.500 Sales Management Product Configuration 188131 Application input field
Configurator Designer ‐ Error when setting radioset visible from an on field changed 
10.1.500 Sales Management Product Configuration 188513 Application event
10.1.500 Sales Management Product Configuration 189105 Application Configurator Pricing ‐ Application stops Multilevel Pricing Component
10.1.500 Sales Management Project Management 144738 Application Project Entry ‐ Currency conversion exchange record was not found for currency

Page 64
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Project Entry ‐ ProjectCst.RecManPosted & ProjCstHistory.TotActRounding are not 
10.1.500 Sales Management Project Management 148319 Application filled
Project Entry ‐ Burden amount displays as 0 on Revenue Recognition after Project 
10.1.500 Sales Management Project Management 161457 Application Build Analysis
Project Tracker ‐ Project Job Details pane does not display the green epi shape 
10.1.500 Sales Management Project Management 165431 Application indicating the project job is open
Project Entry ‐ The attachments in the WBS Phases and Tasks are not copied into a 
10.1.500 Sales Management Project Management 170276 Application new duplicated project
10.1.500 Sales Management Project Management 171206 Application Project Entry ‐ Project tab within Job Entry has a confusing behavior
10.1.500 Sales Management Project Management 171634 Application Project Entry ‐ Exception of type 'Ice.Lib.Framework.UIException' displayed
Project Entry ‐ Customer ID is greyed‐out without info after adding several lines on 
10.1.500 Sales Management Project Management 172965 Application Sales Order Entry related to the same project
10.1.500 Sales Management Project Management 175002 Application Project Entry ‐ Build Project Analysis does not support more than 12 fiscal periods
Project Analysis ‐ Does not exclude closed projects when selecting specific projects 
10.1.500 Sales Management Project Management 175013 Application or running for all
Project Entry ‐ The Project gets corrupted when deleting the order line before 
10.1.500 Sales Management Project Management 175105 Application defined as Project Activity Billing
Project Entry ‐ The Customer in Sales Orders added to project should match the one 
10.1.500 Sales Management Project Management 175191 Application defined in Project Billing Invoicing (Also fixed in 10.1.400.x)
Project Entry ‐ Exception of the 'Ice.Lib.Framework.UIException' type thrown when 
10.1.500 Sales Management Project Management 175326 Application clicking the Manager button (Also fixed in 10.1.400.x)
Project Entry ‐ Build Project Analysis does not consider Cost Per different than /1 
10.1.500 Sales Management Project Management 175331 Application when there is a PO Linked
Project Tracker ‐ Cost Detail not displaying subcontract together with its Part Master 
10.1.500 Sales Management Project Management 175560 Application referred
10.1.500 Sales Management Project Management 175579 Application Project Entry ‐ Build Project Analysis process displays an error in System Monitor
Project Tracker ‐ More Summary Project / Actual ODC cost does not match with 
10.1.500 Sales Management Project Management 175988 Application Actual ODC Project Costs
Project Entry ‐ Build Project Analysis displays an error when there is a mismatch 
10.1.500 Sales Management Project Management 176318 Application between jobhead.jobnum(uppercase) and Parttran.jobnum(lowercase)
Project Entry ‐ Build Project Analysis finishes with errors when jobhead 
10.1.500 Sales Management Project Management 176467 Application projprocessed check box set and proj processed date is blank
10.1.500 Sales Management Project Management 176868 Application Project Entry ‐ Build Project Analysis displays an error and cannot be completed
10.1.500 Sales Management Project Management 176869 Application Project Entry ‐ Build Project Analysis does not run for some projects
Project Entry ‐ The following messages are displayed: Before Process Job & New 
10.1.500 Sales Management Project Management 177121 Application Process Jobs are Inverted in the Task Agent
Project Entry ‐ Menu Item for Build Project Analysis process in Job Management 
10.1.500 Sales Management Project Management 177224 Application should be Build Project Analysis

Page 65
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Project Entry ‐ The Actual Costs of the materials are incremented every time the BPA 
10.1.500 Sales Management Project Management 177364 Application process runs
Project Entry ‐ The costs of the lower phases are ignored by the BPA process in the 
10.1.500 Sales Management Project Management 177761 Application Total Project Cost
Project Analysis Export ‐  If a job is is not linked to a WBS phase, Build Project 
10.1.500 Sales Management Project Management 178966 Application Analysis, recalculates it as if were a new job
Project Entry ‐ Clear Analysis does not complete on very large projects (Also fixed in 
10.1.500 Sales Management Project Management 179581 Application 10.1.400.x)
Project Entry ‐ Public methods in partial class need to be made private or they will 
10.1.500 Sales Management Project Management 180080 Application become service methods
10.1.500 Sales Management Project Management 181213 Application Project Entry ‐ BPA does not calculate the Actual Material Costs
10.1.500 Sales Management Project Management 181250 Application Project Entry ‐ Error displayed when selecting Project Job
Project Entry ‐ When running Build Project Analysis for different Projects 
10.1.500 Sales Management Project Management 182421 Application simultaneously Ultra is getting time out errors
Project Entry ‐ It is not allowed to duplicate Projects using specific WBS IDs (Also 
10.1.500 Sales Management Project Management 183258 Application fixed in 10.1.400.x)
Project Entry ‐ When adding a Sales Order in a WBS Phase, the Order information is 
10.1.500 Sales Management Project Management 183360 Application not displayed properly in the Related > Order tab
Project Entry ‐ Build Project Analysis calculates incorrect Actual Material and Burden 
10.1.500 Sales Management Project Management 184453 Application Costs
Project Entry ‐ Do not allow to change the sales order when it has a different 
10.1.500 Sales Management Project Management 186066 Application customer than the previously SO added in the project
10.1.500 Sales Management Project Management 186733 Application Project Entry ‐  Index error when nested WBS phases are deleted
Project Entry ‐ Sales Order is not being unlinked from Time & Materials when project 
10.1.500 Sales Management Project Management 186835 Application level invoicing method is changed
Opportunity / Quote Entry ‐ Some Issues related to tab key happen in Opportunity 
10.1.500 Sales Management Quote Management 167562 Application Quote Entry in EWA
Opportunity / Quote Entry ‐ EWA ‐ When entering an Unit Price in a Quote Line after 
10.1.500 Sales Management Quote Management 168268 Application changing a Product Group, an error is displayed
Opportunity / Quote Entry ‐ Discount from price list for product group is not applied 
10.1.500 Sales Management Quote Management 171254 Application to configurator pricing rule price (Also fixed in 10.1.400.x)
Opportunity / Quote Entry‐ Tab order focus is ignored at Type field Percentage 
10.1.500 Sales Management Quote Management 171386 Application selection in Misc charges (EWA)
Opportunity / Quote Entry ‐ Material Cost does not consider Minimum Cost in the 
10.1.500 Sales Management Quote Management 173112 Application worksheet
Opportunity / Quote Entry ‐ "Do you want to refresh the break quantities" message 
10.1.500 Sales Management Quote Management 173612 Application is incorrectly displayed after reentering a Part in a Quote Line
Opportunity / Quote Entry ‐ For Quote Line Unit Price not kept when having Parts 
10.1.500 Sales Management Quote Management 173633 Application within a Price List

Page 66
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Opportunity / Quote Entry ‐ Line > Qty brake grid displays a Doc Unit Price without 
10.1.500 Sales Management Quote Management 173656 Application rounding
Opportunity / Quote Entry ‐ Unit Cost is not updated when Pressing Refresh on price 
10.1.500 Sales Management Quote Management 173984 Application breaks
Opportunity / Quote Entry ‐ Subassembly with another subassembly reappear after 
10.1.500 Sales Management Quote Management 174041 Application deleted
Part Tracker ‐ Overlaid PCIDs are still displayed attached to the items after the 
10.1.500 Sales Management Quote Management 174481 Application Overlay PCID Label validate process
Job Tracker ‐ User ID and Time columns are not displayed when Audit Log form is 
10.1.500 Sales Management Quote Management 174552 Application launched
Opportunity / Quote Entry ‐ Deleting a Kit Part from Quote sorts Display Sequence 
10.1.500 Sales Management Quote Management 174586 Application incorrectly
Opportunity / Quote Entry ‐ Unable to create Sales Order if Refresh Worksheet on 
10.1.500 Sales Management Quote Management 174724 Application Demand is set as True
10.1.500 Sales Management Quote Management 175110 Application Opportunity / Quote Entry ‐ Standardize the get of Next QuoteAsm.AssemblySeq
Opportunity / Quote Entry‐Opportunity / Quote Entry ‐ Quote Worksheet Cost 
10.1.500 Sales Management Quote Management 175133 Application Calculations do not consider Scrap Sub‐Contract Quantities
Opportunity / Quote Entry ‐ User can enter Maintenance operations (which are 
10.1.500 Sales Management Quote Management 175185 Application invalid for this screen) in the Mfg Details
Opportunity / Quote Entry ‐ Epishape Credit Hold is not displayed, if the customer 
10.1.500 Sales Management Quote Management 175214 Application reaches the credit limit
Opportunity / Quote Entry ‐ Not displaying Unit Price from Part when Generate 
10.1.500 Sales Management Quote Management 175412 Application Quantities From Price Breaks is off
Opportunity / Quote Entry ‐ Upon changing the Mtl Burden Rate to 0%, the Burden 
10.1.500 Sales Management Quote Management 175604 Application Unit cost does not updated
Job Tracker ‐ Material serial numbers retrieved via job receipt to job site transfer not 
10.1.500 Sales Management Quote Management 175715 Application retrieving on job tracker
Opportunity / Quote Entry ‐ Second Level subassembly is not copied when 
10.1.500 Sales Management Quote Management 176174 Application drag/drop from Methods

10.1.500 Sales Management Quote Management 176176 Application Job Tracker ‐ The serials are not displayed in the serial tab when a Job to Job is made


Opportunity / Quote Entry ‐ Memory Cache option selection changes Labor 
10.1.500 Sales Management Quote Management 176626 Application Reporting Resource information
10.1.500 Sales Management Quote Management 176687 Application When Copying Line from another Quote, data is not displayed until refreshing form
10.1.500 Sales Management Quote Management 176688 Application When Copy ‐ Line from another Quote using Op Std not getting the correct values
Opportunity / Quote Entry ‐ Valid Salesperson is required if there is not one assigned 
10.1.500 Sales Management Quote Management 177074 Application to the customer
Opportunity / Quote Entry (EWA) ‐ When trying to copy lines from a Quote to 
10.1.500 Sales Management Quote Management 177164 Application another, the Quote Line Search screen does not display results

Page 67
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Purchase Order Tracker ‐ Index 0 error opening AP Invoice Tracker using Context 
10.1.500 Sales Management Quote Management 177494 Application Menu (Also fixed in 10.1.400.x)
Opportunity / Quote Entry ‐ Material cost is calculated incorrectly on printed Quote 
10.1.500 Sales Management Quote Management 177511 Application Worksheet when MFG cost elements is not selected (Also fixed in 10.1.400.x)
Opportunity / Quote Entry ‐ Extended Price of the Sales Kit line does not match the 
10.1.500 Sales Management Quote Management 177583 Application Total Price of the Kit Components
Opportunity / Quote Entry ‐ Ship To button search does not display the Ship To info 
10.1.500 Sales Management Quote Management 177682 Application from a third party customer
Opportunity / Quote Entry ‐ Product group discount not retrieved when the 
10.1.500 Sales Management Quote Management 177858 Application discount price list is added to the customer group (Also fixed in 10.1.400.x)
Opportunity / Quote Entry ‐ Header level misc charges not calculated properly after 
10.1.500 Sales Management Quote Management 177917 Application doing changes to lines
Opportunity / Quote Entry ‐ Need to update the Like property for EstimationUserID 
10.1.500 Sales Management Quote Management 177982 Application column in Service Designer
Opportunity / Quote Entry ‐ The min total cost is set to 0 if a supplier price list exists 
10.1.500 Sales Management Quote Management 178045 Application for the material selected
Opportunity / Quote Entry ‐ System displays an error when adding part on the fly 
10.1.500 Sales Management Quote Management 178128 Application (Also fixed in 10.1.400.x)
Part Tracker ‐ Part Allocation lines are not sorted correctly by Order Line 
10.1.500 Sales Management Quote Management 178174 Application (descending instead of ascending)
Opportunity / Quote Entry ‐ "Do you want to refresh the break quantities?" message 
10.1.500 Sales Management Quote Management 178282 Application displays before selecting a price list
Opportunity / Quote Entry ‐ When selecting the second Price List, the previously 
10.1.500 Sales Management Quote Management 178358 Application selected Discount Price List disappears (Also fixed in 10.1.400.x)
Opportunity / Quote Entry ‐ The tab order of detail and worksheet panels is out of 
10.1.500 Sales Management Quote Management 178365 Application sequence
Opportunity / Quote Entry ‐ Unable to create quotes without multi‐currency license 
10.1.500 Sales Management Quote Management 178546 Application (Also fixed in 10.1.400.x)
Opportunity / Quote Entry ‐ Unable to set a sub assembly part number in a method 
10.1.500 Sales Management Quote Management 178617 Application rule
Opportunity / Quote Entry ‐ Best Case, Worst Case and Expected Totals are not 
10.1.500 Sales Management Quote Management 178870 Application taking the proper Discount
Opportunity / Quote Entry ‐ Price List and Discount Price List are not loaded with 
10.1.500 Sales Management Quote Management 178914 Application defaults according to the Product Group used (Also fixed in 10.1.400.x)
Opportunity/Quote Entry ‐ The following error occurs: "This is a duplicate entry of 
10.1.500 Sales Management Quote Management 179024 Application an existing record" when changing task sets (Also fixed in 10.1.400.x)
Opportunity/Quote Entry ‐ Quote cannot be created; Error appears 'Object mapping 
could not be found for Type with identity 'Ice.Tables.Table'.' (Also fixed in 
10.1.500 Sales Management Quote Management 179148 Application 10.1.400.x)

Page 68
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Opportunity / Quote Entry ‐ Doc unit price calculation is affected by exchange rate 
10.1.500 Sales Management Quote Management 179214 Application when selecting override price list (Also fixed in 10.1.400.x)
Opportunity / Quote Entry ‐ System displays an error when adding part on the fly 
10.1.500 Sales Management Quote Management 179238 Application (Also fixed in 10.1.400.x)
Opportunity / Quote Entry ‐ Task tree incorrectly updated when switching between 
10.1.500 Sales Management Quote Management 179533 Application tasks
Opportunity / Quote Entry ‐ Next task field disables when completing a task and 
10.1.500 Sales Management Quote Management 180036 Application selecting lose then next option
Opportunity / Quote Entry ‐ Completing a related task sets the win option and 
10.1.500 Sales Management Quote Management 180042 Application displays the win reasons
Opportunity / Quote Entry ‐ Unable to Manually add tasks in Quote Task Tree due to 
10.1.500 Sales Management Quote Management 180136 Application an error
Opportunity/Quote Entry ‐ Does not open; message appears when the Job 
10.1.500 Sales Management Quote Management 180585 Application Management module is disabled (Also fixed in 10.1.400.x)
Part Tracker ‐ Object Reference error when retrieving info from Part Locations / 
10.1.500 Sales Management Quote Management 180766 Application Inspection
Opportunity / Quote Entry‐ Issue while working with phantom parts and 
10.1.500 Sales Management Quote Management 180879 Application subassemblies
Opportunity / Quote Entry ‐ Unable to use tasks that were already completed (Also 
10.1.500 Sales Management Quote Management 180880 Application fixed in 10.1.400.x)
Opportunity / Quote Entry ‐ Task set cannot be changed after create a Quote from 
10.1.500 Sales Management Quote Management 181280 Application customer entry or tracker
Opportunity / Quote Entry ‐ Error is displayed on Quote Form report after creating a 
10.1.500 Sales Management Quote Management 181641 Application new Report Style
Opportunity / Quote Entry ‐ OnBeforeAdapterMethod and OnAfterAdapterMethod 
are not implemented in some public methods of the adapter (Also fixed in 
10.1.500 Sales Management Quote Management 181644 Application 10.1.400.x)
Opportunity / Quote Entry ‐ What‐If Schedule Production Quantity field accepting 
10.1.500 Sales Management Quote Management 181878 Application only 5 chars
Opportunity / Quote Entry ‐ Should not be able to complete a parent task that has 
10.1.500 Sales Management Quote Management 181922 Application mandatory children tasks
Opportunity / Quote Entry ‐ Phantoms materials does not work as in Job entry when 
10.1.500 Sales Management Quote Management 181977 Application added in MFG Details tab
Opportunity / Quote Entry ‐ Related tasks are not added when looping trough the 
10.1.500 Sales Management Quote Management 181993 Application milestones
10.1.500 Sales Management Quote Management 182008 Application Opportunity / Quote Entry ‐ Not allowing to add Run out parts as quote materials
Opportunity / Quote Entry ‐ Unable to edit Qty/Per for material with updated part 
10.1.500 Sales Management Quote Management 182026 Application class (Also fixed in 10.1.400.x)

Page 69
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Opportunity / Quote Entry ‐ Next task combo displays all milestones instead of only 
10.1.500 Sales Management Quote Management 182060 Application showing the ones related to the Milestone in focus (Also fixed in 10.1.400.x)
Opportunity / Quote Entry ‐ When deleting Line Specific Charge, the line is deleted 
10.1.500 Sales Management Quote Management 182120 Application as well
10.1.500 Sales Management Quote Management 182255 Application Opportunity / Quote Entry ‐ When clearing a drop‐down list, an error is displayed
Opportunity / Quote Entry ‐ Reason is not validated when completing a Task in 
10.1.500 Sales Management Quote Management 182284 Application Quote Entry
Opportunity / Quote Entry ‐ Tree incorrectly displays next milestones when having 
10.1.500 Sales Management Quote Management 182381 Application two milestones with same taskID (Also fixed in 10.1.400.x)
Opportunity / Quote Entry ‐ Override Price List will not update the Price list when 
10.1.500 Sales Management Quote Management 182450 Application changing to a different Product Group
Opportunity / Quote Entry ‐ Not allowing to drag/drop operations from a different 
10.1.500 Sales Management Quote Management 182535 Application Method/Quote
Opportunity / Quote Entry ‐ Quote Form report Component Price is not printed for 
10.1.500 Sales Management Quote Management 182769 Application Kit Components (Also fixed in 10.1.400.x)
10.1.500 Sales Management Quote Management 182889 Application Opportunity / Quote Entry ‐ Incorrect line price calculation for Sales Kits
Opportunity / Quote Entry ‐ Incorrect discount calculations for part with price group 
10.1.500 Sales Management Quote Management 182907 Application assigned (Also fixed in 10.1.400.x)
Opportunity / Quote Entry ‐ Incorrect discount calculations for part with price group 
10.1.500 Sales Management Quote Management 183074 Application assigned (Also fixed in 10.1.400.x)
10.1.500 Sales Management Quote Management 183084 Application Opportunity / Quote Entry ‐ No price calculation for Sales Kits
Opportunity / Quote Entry ‐ Deleting a subassembly from a line is resetting 
10.1.500 Sales Management Quote Management 183104 Application QuoteAsm.NextPeer for previous line
Opportunity / Quote Entry ‐ Error is displayed after selecting Part/Rev for a new Co‐
10.1.500 Sales Management Quote Management 183371 Application Part (Also fixed in 10.1.400.x)
Opportunity / Quote Entry ‐ Price Per is not updated Quantities grid and error is 
10.1.500 Sales Management Quote Management 183372 Application displayed when changing the Price Per in a New Qty Break
Opportunity / Quote Entry ‐ Not able to get details in Mfg Details for configurable 
10.1.500 Sales Management Quote Management 183677 Application part
Opportunity / Quote Entry ‐ Partial Matching Contact screen displayed when 
10.1.500 Sales Management Quote Management 183910 Application selecting a specific Person/Contact
Opportunity / Quote Entry ‐ An error is displayed after try create the same contact 
10.1.500 Sales Management Quote Management 184616 Application twice
10.1.500 Sales Management Quote Management 184983 Application Part Tracker ‐ Images, added as Attribute to the Part, are not displayed
Opportunity / Quote Entry ‐ Without CRM License , Customer and Contact are not 
10.1.500 Sales Management Quote Management 186496 Application loaded automatically when you search and select them
10.1.500 Sales Management Quote Management 187066 Application Opportunity / Quote Entry ‐ Resource's Labor Cost not present in Line Worksheet
Job Tracker‐ Error is displayed when clicking Retrieve in Job Tracker/Part 
10.1.500 Sales Management Quote Management 187193 Application Locations/WIP Tab

Page 70
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Opportunity / Quote Entry ‐ For configured parts manual change of discount amount 
10.1.500 Sales Management Quote Management 187339 Application changes to 0 on Save
Opportun ity / Quote Entry ‐Tasks get corrupted if you change the customer record 
10.1.500 Sales Management Quote Management 187747 Application once it is saved
Opportunity / Quote Entry ‐ Discount is calculated incorrectly and Potential is not 
10.1.500 Sales Management Quote Management 188242 Application rounded right
Opportunity / Quote Entry ‐ BPM that sets quantity in copied quote lines does not 
10.1.500 Sales Management Quote Management 188664 Application work with job comments fields
Opportunity / Quote Entry ‐ When adding a New Task and selecting a Next Task, an 
10.1.500 Sales Management Quote Management 189225 Application error is displayed: NextTaskSeq references invalid value
10.1.500 Sales Management Quote Management 189249 Application Opportunity / Quote Entry ‐ Unable to manually create a contract renewal quote
10.1.500 Sales Management Quote Management 189467 Application Opportunity / Quote Entry ‐ Doesn't Retrieve comments when create an Order
Advanced Material  Material Request Queue ‐ Material movement to a Shared Warehouse creates a STK‐
10.1.500 Supply Chain Management Management 156200 Application STK transaction
Advanced Material  Material Request Queue ‐ Pack Station is not assigned to queue record when using 
10.1.500 Supply Chain Management Management 165411 Application Allocate by lot/Bin
Advanced Material 
10.1.500 Supply Chain Management Management 173380 Application Get Request ‐ EWA ‐ Extra transaction are created when switching to Job Operations
Advanced Material  Get Request ‐ Cannot enter a request quantity > 0 due the following message " 'The 
10.1.500 Supply Chain Management Management 173546 Application number of pieces entered exceeds the number of pieces remaining on the 
Advanced Material  Return Assembly / Material Request ‐ Using the ASM button causes misbehavior in 
10.1.500 Supply Chain Management Management 176882 Application the request grid
Advanced Material  Material Request Queue ‐ Blank error message when current user is not associated 
10.1.500 Supply Chain Management Management 177852 Application with an employee
Advanced Material 
10.1.500 Supply Chain Management Management 180578 Application Material Queue Manager ‐ It is possible to assign Priority 0
Advanced Material  Material Request Queue ‐ INS‐STK transactions do not display Lot Number value set 
10.1.500 Supply Chain Management Management 181084 Application on RMA Dispositions
Advanced Material  Material Request Queue ‐ Transactions marked as Visible = False are retrieved and 
10.1.500 Supply Chain Management Management 181286 Application displayed
Advanced Material  Move Inventory Request ‐ Cross Reference Part values not accepted in Part field 
10.1.500 Supply Chain Management Management 181530 Application (Also fixed in 10.1.400.x)
Advanced Material  Material Request Queue ‐ Lot Number value requested on DMR‐ASM transaction 
10.1.500 Supply Chain Management Management 183315 Application records
Advanced Material 
10.1.500 Supply Chain Management Management 183575 Application Material Request Queue ‐ Sorting is not done by transaction sequence
Advanced Material 
10.1.500 Supply Chain Management Management 184558 Application Material Request Queue ‐ Generate PCID displaying inactive control IDs

Page 71
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Advanced Material  Move Inventory Request ‐ Allows selection of whse that is invalid for part and 
10.1.500 Supply Chain Management Management 184968 Application cannot be processed in MtlQueue
Advanced Material 
10.1.500 Supply Chain Management Management 185021 Application MoveWIP ‐ Error displayed when selecting Operation dropdown list
Advanced Material  Material Request Queue ‐ Does not create lot number on Job Receipt To Inventory 
10.1.500 Supply Chain Management Management 186838 Application when Process button is clicked
Advanced Material  Material Request Queue ‐ Stock PO receipt putaway does not use negative inventory 
10.1.500 Supply Chain Management Management 187058 Application settings
Advanced Material  Roll back ‐Material Request Queue ‐ Job Material and Job Subcontract PO receipt 
10.1.500 Supply Chain Management Management 187500 Application putaway does not use negative inventory settings
Advanced Material  Move Material Request ‐ Error when moving Material to Whse/Bin different than 
10.1.500 Supply Chain Management Management 188013 Application the default
Advanced Material  Process By ID ‐ Same Transaction Record opened from different screens, duplicates 
10.1.500 Supply Chain Management Management 188614 Application Order Quantity value
10.1.500 Supply Chain Management Handheld MES 161797 Application HH My Material Queue ‐ Quantity column not displayed on the Part Lookup grid
10.1.500 Supply Chain Management Handheld MES 163982 Application HH Transfer Order Ship ‐ Context Menu should not appear
10.1.500 Supply Chain Management Handheld MES 166414 Application HH PO Receipts ‐ EpiShape for receipt status is not displayed with the correct label
10.1.500 Supply Chain Management Handheld MES 166625 Application HH Container Receipts ‐ Irrelevant fields are displayed in the grid
10.1.500 Supply Chain Management Handheld MES 169666 Application HH Packout ‐ An error Msg was displayed when trying to Freight a pack
HH Packout ‐ Error when trying to create Serial Numbers having a high Pack ID value 
10.1.500 Supply Chain Management Handheld MES 178258 Application (Also fixed in 10.1.400.x)
HH Customer Mass Shipment ‐ Unable to ship releases to different Ship To's than the 
10.1.500 Supply Chain Management Handheld MES 179603 Application first release from Sales Order
HH Material Queue ‐ Form caption displays format placeholders if no records are 
10.1.500 Supply Chain Management Handheld MES 181719 Application available
HH General ‐ Handheld screen does not open if document management license is 
10.1.500 Supply Chain Management Handheld MES 183494 Application not enabled (Also fixed in 10.1.400.x)
10.1.500 Supply Chain Management Handheld MES 185416 Application HH PackVerify By PCID ‐ Pack field is enabled after process a PCID
HH PackVerify By PCID ‐ Incorrect message is displayed when include a PCID with a 
10.1.500 Supply Chain Management Handheld MES 185426 Application Part that is not on the pack
10.1.500 Supply Chain Management Handheld MES 185524 Application HH PackVerify By PCID ‐Not all warning errors are sounding with beeps
HH PackVerify By PCID ‐ Incorrect Error when Validate the Pack contains all the child 
10.1.500 Supply Chain Management Handheld MES 185577 Application Parts associated to the MIXEDMASTER
HH PackVerify By PCID ‐ Additional check needed for Docking Station on ShipDtl 
10.1.500 Supply Chain Management Handheld MES 185598 Application against Label Value table for EDI
HH PackVerify By PCID ‐ Child PkgControlHeader.PackNum does not take the 
10.1.500 Supply Chain Management Handheld MES 185608 Application PkgControlItem.PackNum
HH PackVerify By PCID ‐ Incorrect error displayed when entering a PCID that does 
10.1.500 Supply Chain Management Handheld MES 185697 Application not match

Page 72
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


10.1.500 Supply Chain Management Handheld MES 185736 Application HH PackVerify By PCID ‐ After Remove a the PCID ‐ Picked inventory is corrupted
10.1.500 Supply Chain Management Handheld MES 185963 Application HH PackVerify By PCID ‐ PCID Count is incrementing incorreclty
HH PackVerify By PCID ‐ Do not require PackNum on PkgControlHeader record for 
10.1.500 Supply Chain Management Handheld MES 186577 Application the PCID being scanned
HH Process By Queue ID ‐ Lookup button should populate To Location for PO 
10.1.500 Supply Chain Management Handheld MES 188867 Application Receipts
10.1.500 Supply Chain Management Handheld MES 189689 Application HH PackVerify By PCID ‐ Unable to add a ShipDtl line where RelNum is greater than 1
10.1.500 Supply Chain Management Inventory Management 71236 Application Inventory Transfer ‐ On hand quantity does not get refreshed if changing warehouse
Part Transaction History Tracker ‐ A validation of no empty required field Cut Off 
10.1.500 Supply Chain Management Inventory Management 124170 Application Date
Allocation Wave Tracker ‐ No information is loaded when pressing tab at the 
10.1.500 Supply Chain Management Inventory Management 163263 Application allocation wave text field
Package Control ID Config ‐ Change Data Type of BTGenPCID.PCIDItemSeq from int 
10.1.500 Supply Chain Management Inventory Management 163287 Application to bigint (long/Int64)
10.1.500 Supply Chain Management Inventory Management 163512 Application Serial Number Tracker ‐ Not returning UD columns values in the List grid
Package Control ID ‐ Configuration allows saving and making invalid configurations 
10.1.500 Supply Chain Management Inventory Management 165966 Application active
Package Control Maintenance PCID ‐ Customer Container Info tab \not displaying 
10.1.500 Supply Chain Management Inventory Management 169782 Application information
Serial Number ‐ HH serial number select form does not issue an error if the Serial is 
10.1.500 Supply Chain Management Inventory Management 169784 Application Prevent Deselect = True
Cost Adjustment ‐ Costing ID field in List Grid should be read‐only, Entry Person label 
10.1.500 Supply Chain Management Inventory Management 169841 Application in List Grid should be renamed to "Reference"
Managed Inventory Stock Status Report ‐ Filter tab displays an ID of 0 or empty for 
10.1.500 Supply Chain Management Inventory Management 171387 Application repeated elements in the grid and filtering is not applied
Managed Inventory Stock Status Report ‐ Warehouse search displaying all 
10.1.500 Supply Chain Management Inventory Management 171391 Application warehouses for all sites
Inventory Usage Report ‐ Filter tab displays an ID of 0 for repeated elements in the 
10.1.500 Supply Chain Management Inventory Management 171413 Application grid and nothing is filtered
10.1.500 Supply Chain Management Inventory Management 171962 Application Package Control ID Ad Hoc PCID ‐ 2nd pass issues
UOM Split/Merge ‐ Conversion cannot be made between a no‐ Base UOM to 
10.1.500 Supply Chain Management Inventory Management 172386 Application another non‐Base UOM (Also fixed in 10.1.400.x)
Supplier Maintenance ‐ EWA ‐ User is able to save General‐International information 
10.1.500 Supply Chain Management Inventory Management 172546 Application with an invalid Country code
Adjust Return Container lib ‐ The process needs to do negative inv and allocations 
10.1.500 Supply Chain Management Inventory Management 172629 Application validations
Mass Return from Mfg ‐ Original FIFO layers should be restored instead of using an 
10.1.500 Supply Chain Management Inventory Management 172709 Application average unit cost in a new FIFO layer

Page 73
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Package Control Maintenance PCID ‐ After opening with context menu, the screen is 
10.1.500 Supply Chain Management Inventory Management 173326 Application displayed empty without the PCID selected
Obsolete Stock Report ‐The New button for the Part Class tab does not generate a 
10.1.500 Supply Chain Management Inventory Management 173335 Application new row
10.1.500 Supply Chain Management Inventory Management 173581 Application Stock Status Report ‐ Message hardcoded on System Monitor
Package Control PCID ‐ PartBin Search ‐ Remove filters that prevent PCID qtys from 
10.1.500 Supply Chain Management Inventory Management 174441 Application displaying in search results
In Transit Stock Status Report ‐ Add a Site filter to the report (Also fixed in 
10.1.500 Supply Chain Management Inventory Management 175006 Application 10.1.400.x)
10.1.500 Supply Chain Management Inventory Management 175031 Application Cost Adjustment ‐ Cost Method field is right‐justified
Package Control ID Inventory Transfer ‐ PCID with STATUS SHIPPED is moved without 
10.1.500 Supply Chain Management Inventory Management 175111 Application restriction
SSRS Count Accuracy Report ‐ Quantities are not displayed in the correct column 
10.1.500 Supply Chain Management Inventory Management 175183 Application (Also fixed in 10.1.400.x)
10.1.500 Supply Chain Management Inventory Management 175195 Application Lot ‐ Part Lot Attribute Entry ‐ Cannot make Customizations with default Tools
10.1.500 Supply Chain Management Inventory Management 175201 Application Part Transaction History Tracker ‐ Index 0 is either negative or above rows count
10.1.500 Supply Chain Management Inventory Management 175206 Application Inventory Transfer ‐ On hand UOM fields are empty
10.1.500 Supply Chain Management Inventory Management 175219 Application Inventory Transfer ‐ Error messages contain spelling errors
10.1.500 Supply Chain Management Inventory Management 175278 Application Inventory Transfer ‐ Invalid warehouse message is displayed twice
10.1.500 Supply Chain Management Inventory Management 175291 Application Inventory Transfer ‐ Bin search displays QOH as 0 for multiple UOM parts
Package Control ID Adhoc PCID ‐ Not performing negative inventory check correctly 
10.1.500 Supply Chain Management Inventory Management 175307 Application when generating > 1 PCID
Package Control ID Job Receipt To Inventory ‐ Job receipt to inventory is not using 
10.1.500 Supply Chain Management Inventory Management 175419 Application standard Bin search
Quantity Adjustment ‐ User should not be allowed to adjust a shared warehouse 
10.1.500 Supply Chain Management Inventory Management 175471 Application owned by a Site they are not authorized for
Package Control ID Adhoc PCID ‐ Internal Part is corrupted when generating PCID; it 
10.1.500 Supply Chain Management Inventory Management 175620 Application is using the default Package code selected in the Part
10.1.500 Supply Chain Management Inventory Management 175698 Application Job Receipt to Job Generating partwip record when jobs are in different sites
Package Control ID ‐ Partial PCID ‐ Qty per container defaults to container qty 
10.1.500 Supply Chain Management Inventory Management 175863 Application instead of 0 (Also fixed in 10.1.400.x)
Package Control ID Job Receipt To Inventory ‐ Warehouse DDL displays warehouses 
10.1.500 Supply Chain Management Inventory Management 175878 Application from other sites
Package Control ID Job Receipt To Inventory ‐ Retrieving PCIDs located in a different 
10.1.500 Supply Chain Management Inventory Management 175880 Application Site
Package Control ID Job Receipt To Inventory ‐ Previous PCID info is cleared when 
10.1.500 Supply Chain Management Inventory Management 175881 Application process is clicked
10.1.500 Supply Chain Management Inventory Management 175882 Application Package Control ID Job Output ‐ Retrieving partials from other sites
10.1.500 Supply Chain Management Inventory Management 175959 Application Excess Stock Provision Report ‐ Attempted to divide by zero

Page 74
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


PKG PCID Returnable Container Adjustment ‐ Shared warehouses owned by another 
10.1.500 Supply Chain Management Inventory Management 175995 Application site not displaying in DDL
Slow Moving Stock Report ‐ After installing One Off SCR 166380, report shows 
10.1.500 Supply Chain Management Inventory Management 176012 Application negative Unit Price values (Also fixed in 10.1.400.x)
PKG PCID Returnable Container Adjustment ‐ Error messages do not match what 
10.1.500 Supply Chain Management Inventory Management 176036 Application was specified in story
ControlIDExtract ‐ Extract PCID logic does not get the correct string, so the PCID is 
10.1.500 Supply Chain Management Inventory Management 176070 Application not found (Also fixed in 10.1.400.x)
PKG PCID Returnable Container Adjustment ‐ Bin defaulting to primary bin instead of 
10.1.500 Supply Chain Management Inventory Management 176165 Application selected row in grid
PKG PCID Returnable Container Adjustment ‐ Allowed to adjust quantity in a CMI or 
10.1.500 Supply Chain Management Inventory Management 176168 Application SMI bin if bin is part's primary bin
Quantity Adjustment ‐ Exception when adding stock to receipted FIFO part (Also 
10.1.500 Supply Chain Management Inventory Management 176213 Application fixed in 10.1.400.x)
10.1.500 Supply Chain Management Inventory Management 176228 Application Transfer Order Entry ‐ The Refresh button does not update the Order Status
Package Control Label Type PCID ‐ Inactive control ID config returned by search but 
10.1.500 Supply Chain Management Inventory Management 176300 Application selecting displays the following message: "Invalid Package Control ID Code"
10.1.500 Supply Chain Management Inventory Management 176383 Application Issue Material ‐ Not adding Lot Number into PartTran table for PLT‐MTL transactions
Package Control PCID ‐ PCID generation is using conversion factor on part UOM for 
10.1.500 Supply Chain Management Inventory Management 176389 Application non‐part‐specific conversions
Package Control Maintenance PCID ‐ Changes to locations tabs for static PCID not 
10.1.500 Supply Chain Management Inventory Management 176428 Application saved
Package Control ID Adhoc Job Output ‐ Total Weight is not calculated correctly when 
10.1.500 Supply Chain Management Inventory Management 176472 Application PCID is generated
Package Control ID Void PCID and Label ‐ Voiding mixed master giving 'The DELETE 
statement conflicted with the REFERENCE constraint 
10.1.500 Supply Chain Management Inventory Management 176511 Application "FK_PkgControlCustPartNum_PkgControlHeader"'
10.1.500 Supply Chain Management Inventory Management 176592 Application Issue Assembly ‐ Warehouse Bin Search does not display On Hand Qty
Package Control Label Type PCID ‐ Saving Internal with no customer causes the 
10.1.500 Supply Chain Management Inventory Management 176631 Application Invalid Customer error
10.1.500 Supply Chain Management Inventory Management 176664 Application Return Material ‐ Warehouse Bin Search does not display the On Hand Quantity
10.1.500 Supply Chain Management Inventory Management 176673 Application Return Assembly ‐ Warehouse Bin Search does not display the On Hand Quantity
Stock Status Report ‐ Excel report is generated and displayed, but missing format 
10.1.500 Supply Chain Management Inventory Management 176715 Application (Also fixed in 10.1.400.x)
Package Control Label Type PCID ‐ Report style field on the List tab displays 
10.1.500 Supply Chain Management Inventory Management 176856 Application delimited list of all report styles
Package Control ID Job Output ‐ Item information is missing from XML & bt files 
10.1.500 Supply Chain Management Inventory Management 176944 Application (Also fixed in 10.1.400.x)

Page 75
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Package Control ID Job Output ‐ Bartender bt files disappear ~ 60 sec after being 
10.1.500 Supply Chain Management Inventory Management 176948 Application generated (Also fixed in 10.1.400.x)
10.1.500 Supply Chain Management Inventory Management 176950 Application Package Control ID Job Output ‐ BT file errors (Also fixed in 10.1.400.x)
Package Control ID Adhoc Job Output ‐ Should not prompt user asking if they want 
10.1.500 Supply Chain Management Inventory Management 176958 Application to print
Package Control ID Adhoc Job Output ‐ Shift should default to empty if more than 1 
10.1.500 Supply Chain Management Inventory Management 176959 Application for current time
Package Control Label Type PCID ‐ Missing report style displays the following error: 
10.1.500 Supply Chain Management Inventory Management 176961 Application Style num is required
Package Control ID Adhoc Job Output ‐ Package code should default to empty when 
10.1.500 Supply Chain Management Inventory Management 176966 Application part num entered (Also fixed in 10.1.400.x)
Package Control ID Adhoc Job Output ‐ Not validating that Customer/Ship‐To valid 
10.1.500 Supply Chain Management Inventory Management 176971 Application for package code (Also fixed in 10.1.400.x)
Part Transaction History Tracker ‐ Opening Transfer Order Shipment, using Context 
10.1.500 Supply Chain Management Inventory Management 176972 Application Menu, opens another Pack
Package Control PCID ‐ Label Values Label02 field value not copied to PCID Header 
10.1.500 Supply Chain Management Inventory Management 176992 Application Shiptodock field (Also fixed in 10.1.400.x)
Package Control ID Adhoc Job Output ‐ Transaction field set to DEFAULT when 
10.1.500 Supply Chain Management Inventory Management 177003 Application screen run from main app (Also fixed in 10.1.400.x)
Package Control Maintenance PCID ‐ Reason Code fields on the Packaging tab 
10.1.500 Supply Chain Management Inventory Management 177008 Application display reason number
10.1.500 Supply Chain Management Inventory Management 177009 Application Package Control Label Type PCID ‐ Search displays customer num
Package Control PCID ‐ Part number is required to retrieve a label type (Also fixed in 
10.1.500 Supply Chain Management Inventory Management 177017 Application 10.1.400.x)
Package Control ID Job Receipt To Inventory ‐ Quantity field is left‐justified and 
10.1.500 Supply Chain Management Inventory Management 177036 Application displays extra decimal places
Package Control PCID ‐ Bin field is not defaulting when the warehouse has only one 
10.1.500 Supply Chain Management Inventory Management 177038 Application bin
Package Control ID Job Output ‐ Unable to change package code on a job after PCID 
10.1.500 Supply Chain Management Inventory Management 177041 Application generated (Also fixed in 10.1.400.x)
Package Control ID Inventory Transfer ‐ Entered PCID is moved to Previous PCID 
10.1.500 Supply Chain Management Inventory Management 177067 Application when error on transfer
Package Control ID Inventory Transfer ‐ Should not be able to select a warehouse of 
10.1.500 Supply Chain Management Inventory Management 177070 Application type WIP
Package Control ID Job Output ‐ Completed quantity not applied to all prior 
10.1.500 Supply Chain Management Inventory Management 177105 Application operations (Also fixed in 10.1.400.x)
Package Control ID Job Receipt To Inventory ‐ After PCID entered focus should move 
10.1.500 Supply Chain Management Inventory Management 177113 Application to process button

Page 76
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Package Control ID Void PCID and Label ‐ Customer part revision field needs to be 
10.1.500 Supply Chain Management Inventory Management 177114 Application larger
10.1.500 Supply Chain Management Inventory Management 177115 Application Package Control Maintenance PCID ‐ Pack ID field on Item/Detail tab is left‐justified
Package Control ID Adhoc Job Output ‐ Generated Time Entry is incorrect (Also fixed 
10.1.500 Supply Chain Management Inventory Management 177119 Application in 10.1.400.x)
10.1.500 Supply Chain Management Inventory Management 177123 Application Package Control ID Void PCID and Label ‐ Set Reference field on PartTran
10.1.500 Supply Chain Management Inventory Management 177251 Application Quantity Adjustment ‐ Warehouse validation is not working for shared warehouses
Package Control ID Type Config PCID ‐ PCID config screen does not display the 
10.1.500 Supply Chain Management Inventory Management 177266 Application segment data for dynamic PCIDs
Stock Status Report ‐ Default report style missing for stock status report on server hv‐
10.1.500 Supply Chain Management Inventory Management 177282 Application Qtenone6
Inventory Transfer ‐ Warehouse DDLs are not populated correctly when part is re‐
10.1.500 Supply Chain Management Inventory Management 177357 Application retrieved
10.1.500 Supply Chain Management Inventory Management 177380 Application Inventory Transfer ‐ Quantity on parttran records not displaying rounded quantity
10.1.500 Supply Chain Management Inventory Management 177439 Application Package Control ID Adhoc PCID ‐ Quantity field displays too many decimal places
Package Control ID Adhoc PCID ‐ Generate is picking up the internal part number 
10.1.500 Supply Chain Management Inventory Management 177448 Application and properties for a different package code
Inventory Transfer ‐ Not applying "Stop on UOM Rounding if No Rounding Selected" 
10.1.500 Supply Chain Management Inventory Management 177539 Application functionality
Issue Material ‐ Not applying "Stop on UOM Rounding if No Rounding Selected" 
10.1.500 Supply Chain Management Inventory Management 177543 Application functionality
10.1.500 Supply Chain Management Inventory Management 177594 Application Package Control ID Adhoc PCID ‐ Not using report style selected on prompt screen
Package Control ID Inventory Transfer ‐ Warehouse drop‐down is not displaying any 
10.1.500 Supply Chain Management Inventory Management 177601 Application value
Package Control ID Job Receipt To Inventory ‐ PartTran generated for consumption 
10.1.500 Supply Chain Management Inventory Management 177696 Application of returnable container has empty PCID field
Package Control Tracker PCID ‐ Number of packs column in items grid is misleading 
10.1.500 Supply Chain Management Inventory Management 177699 Application and should be removed
Package Control Tracker PCID ‐ Open with Package Control ID from Items grid not 
10.1.500 Supply Chain Management Inventory Management 177700 Application working correctly
Package Control ID Adhoc PCID ‐ Should be able to enter either the customer part or 
10.1.500 Supply Chain Management Inventory Management 177787 Application internal part # into customer part field
Package Control ID Adhoc PCID ‐ Part number field not refreshed to match case on 
10.1.500 Supply Chain Management Inventory Management 177788 Application file (Also fixed in 10.1.400.x)
10.1.500 Supply Chain Management Inventory Management 177990 Application SSRS SO Pick List Report ‐ Grid of the each filter accepts repeated elements
Package Control Maintenance PCID ‐ Typing a PCID manually is not retrieving the 
10.1.500 Supply Chain Management Inventory Management 177995 Application information
10.1.500 Supply Chain Management Inventory Management 178008 Application SSRS Parts Missing ABC Code Report ‐ Grid of the filter accepts repeated elements

Page 77
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Package Control ID Parent child Tracker ‐ Field Orders should be the same for Parent 
10.1.500 Supply Chain Management Inventory Management 178047 Application PCID and PCID
Package Control ID Job Receipt To Inventory ‐ EWA ‐ An error is displayed when 
10.1.500 Supply Chain Management Inventory Management 178071 Application opening Package control ID from context menu
Package Control PCID ‐ Unable to print PCID Static & Dynamic; error is displayed in 
10.1.500 Supply Chain Management Inventory Management 178415 Application the System Monitor (Also fixed in 10.1.400.x)
10.1.500 Supply Chain Management Inventory Management 178452 Application Inventory Transfer ‐ Report not generated when setting dates in the past
10.1.500 Supply Chain Management Inventory Management 178468 Application Cost Adjustment ‐ Label not aligned according to standards
Package Control ID Parent Child Tracker ‐ When opening PCID with Item PCID from 
10.1.500 Supply Chain Management Inventory Management 178498 Application the PCID Items detail grid screen is not displayed
Issue Material ‐ Issuing in non‐inventory UOM uses Issuing UOM and not IUM when 
10.1.500 Supply Chain Management Inventory Management 178662 Application rounding quantity
Count Cycle Maintenance ‐ Transaction scope error when posting a full physical 
10.1.500 Supply Chain Management Inventory Management 178667 Application inventory
Serial Number Masking ‐ Optional Alphanumeric Characters should be considered as 
10.1.500 Supply Chain Management Inventory Management 178669 Application optional (Also fixed in 10.1.400.x)
Package Control PCID ‐ Dynamic PCID with Label Print Controlled = True does not 
10.1.500 Supply Chain Management Inventory Management 178740 Application update label values (Also fixed in 10.1.400.x)
Mass Issue to Mfg ‐ Not applying "Stop on UOM Rounding if No Rounding Selected" 
10.1.500 Supply Chain Management Inventory Management 178785 Application functionality
10.1.500 Supply Chain Management Inventory Management 178803 Application Transaction log ‐ Blank error message in From/To date validation
Return Miscellaneous Material ‐ Reference text box input from right to left (Also 
10.1.500 Supply Chain Management Inventory Management 178896 Application fixed in 10.1.400.x)
Package Control ID Job Receipt To Inventory ‐ Bin should default when only one 
exists for the selected Warehouse; it does on load of the program, but not on the 
10.1.500 Supply Chain Management Inventory Management 178957 Application change of Warehouse
Package Control ID Job Output ‐ Package code is not defaulted according UOM Class 
10.1.500 Supply Chain Management Inventory Management 178982 Application / Part UOM
Package Control ID Config ‐ Control ID field is not refreshed to match the case of the 
10.1.500 Supply Chain Management Inventory Management 179056 Application Control ID # on the DB
10.1.500 Supply Chain Management Inventory Management 179057 Application Count Tag Entry ‐ The Warehouse field displays records for all Sites
SSRS Cycle Count Parts Selected Report ‐ The Cycle List is not resized when maximize 
10.1.500 Supply Chain Management Inventory Management 179059 Application the screen
Package Control ID ‐ Partial PCID ‐ PkgControlSplitMerge Source and Target 
10.1.500 Supply Chain Management Inventory Management 179071 Application Warehouse/Bin issues
10.1.500 Supply Chain Management Inventory Management 179118 Application Inventory Transfer ‐ Warehouse combos do not display shared warehouses
Package Control PCID ‐ The Package Code for Master&Mix PCIDs is taken from the 
10.1.500 Supply Chain Management Inventory Management 179121 Application one assigned in Package Control ID configuration form

Page 78
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Package Control ID Inventory Transfer ‐ Not taking into consideration the Employee 
10.1.500 Supply Chain Management Inventory Management 179123 Application Quality Allowed check box to move items out of a Quality Warehouse
Package Control PCID for MASTER & MIXED ‐ BT files do not generate the structure 
10.1.500 Supply Chain Management Inventory Management 179128 Application correctly (Also fixed in 10.1.400.x)
Package Control Maintenance PCID ‐ PCID field becomes disabled after loading a 
History PCID; it needs to allow us to change the PCID manually without clearing the 
10.1.500 Supply Chain Management Inventory Management 179130 Application screen
Package Control ID Inventory Transfer ‐ PartTran Reference is missing the Emp ID. It 
10.1.500 Supply Chain Management Inventory Management 179137 Application only displays 'Whse Transfer ‐' where it should display 'Whse Transfer ‐ SPH0031'
Package Control PCID ‐ MASTER & MIXED is not validating Transaction Types on the 
10.1.500 Supply Chain Management Inventory Management 179248 Application Transaction Routing; the transaction types should be PKG‐MAS and PKG‐MIX
Package Control ID Adhoc PCID ‐ No Sheets Found for Processing error when 
10.1.500 Supply Chain Management Inventory Management 179500 Application generating field help
SSRS Count Accuracy Report ‐ the New icon on the warehouse filter tab does not 
10.1.500 Supply Chain Management Inventory Management 179548 Application add a row to the filter grid
10.1.500 Supply Chain Management Inventory Management 179644 Application Package Control ID Adhoc Job Output ‐ Qty Per Container is not EpiNumericEditor
Quantity Adjustment ‐ The warehouse DDL is not correct for shared warehouses 
10.1.500 Supply Chain Management Inventory Management 179751 Application depending on user permissions
Package Control ID Adhoc PCID ‐ Before selecting any package code, Qty Per 
10.1.500 Supply Chain Management Inventory Management 179840 Application Container is set to a random quantity
Package Control ID Adhoc PCID ‐ CustContainerPartNum is not getting populated 
10.1.500 Supply Chain Management Inventory Management 179979 Application when Package Code Ship To Cross Ref configured for the main Customer
Package Control ID Adhoc PCID ‐ It is possible to generate PCID with non‐existing 
10.1.500 Supply Chain Management Inventory Management 180224 Application Ship To
Part Transaction History Tracker ‐ ADJ‐MTL transaction was not created when 
10.1.500 Supply Chain Management Inventory Management 180282 Application second late cost invoice added (Also fixed in 10.1.400.x)
Cycle Count Schedule Maintenance ‐ General Search displays another name to the 
10.1.500 Supply Chain Management Inventory Management 180406 Application Cycle Period on List tab
Excess Stock Provision Report ‐ Error in System Monitor ‐ Program 
Ice.Services.Lib.RunTask raised an unexpected exception with message: RunTask: 
Year, Month, and Day parameters describe an un‐representable DateTime (Also 
10.1.500 Supply Chain Management Inventory Management 180422 Application fixed in 10.1.400.x)
Package Control ID Inventory Transfer‐ WH DD list display all type of warehouses 
10.1.500 Supply Chain Management Inventory Management 180456 Application with package control Attributes
10.1.500 Supply Chain Management Inventory Management 180462 Application Package Control ID Job Output ‐ No row should be selected when screen opens
Package Control ID Adhoc PCID ‐ Unable to type more than two characters in the 
Warehouse field; the warehouse description is not recognized (Also fixed in 
10.1.500 Supply Chain Management Inventory Management 180618 Application 10.1.400.x)

Page 79
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Part Transaction History Tracker ‐ Legal Number value not displayed on shipped 
10.1.500 Supply Chain Management Inventory Management 180658 Application Counter Sales Order
Control ID Extract ‐ A valid PCID is required message on various screens using the 
10.1.500 Supply Chain Management Inventory Management 180800 Application Extract ID
10.1.500 Supply Chain Management Inventory Management 180866 Application Package Control ID Job Receipt To Inventory ‐ Interface issues in the screen
Package Control PCID ‐ Unable to print PCID Static & Dynamic; error is displayed in 
10.1.500 Supply Chain Management Inventory Management 181011 Application the System Monitor (Also fixed in 10.1.400.x)
Package Control PCID ‐ Cannot print a PCID generated from Picking causes the 
10.1.500 Supply Chain Management Inventory Management 181012 Application following message: No printer configured for print
Part Transaction History Tracker ‐ Reason Codes are not displayed correctly from 
10.1.500 Supply Chain Management Inventory Management 181106 Application Misc Issue/Return (Also fixed in 10.1.400.x)
10.1.500 Supply Chain Management Inventory Management 181214 Application Package Control ID Inventory Transfer ‐ Prev PCID field removes PCID information
Calculate ABC Codes ‐ Site Filter is not displayed on Report Header with Warehouse 
10.1.500 Supply Chain Management Inventory Management 181223 Application stock valuation selected
PKG PCID Returnable Container Adjustment ‐ Shared warehouses owned by another 
10.1.500 Supply Chain Management Inventory Management 181229 Application site not displaying in DDL
Package Control ID Adhoc Job Output ‐ Jobs disappear from the Search when there 
10.1.500 Supply Chain Management Inventory Management 181409 Application are records in multi‐sites
Package Control ID Adhoc PCID ‐ Customer Part Number field do not retrieve the 
10.1.500 Supply Chain Management Inventory Management 181660 Application information correctly
Package Control ID ‐ Partial PCID ‐ Jobs scheduled to start outside of 21 days should 
10.1.500 Supply Chain Management Inventory Management 181776 Application not allow a Partial to be created
Part Transaction History Tracker ‐ The system does not recognize a matching part 
when a lower case letter is entered and the part is stored in part master as all UPPER 
10.1.500 Supply Chain Management Inventory Management 181789 Application case
Package Control ID ‐ Partial PCID ‐ Printer ID displays the Printer ID and not the 
10.1.500 Supply Chain Management Inventory Management 181792 Application Description as the story calls for
Package Control ID ‐ Partial PCID ‐ Qty Per Container is allowing a full PCID to be 
generated when the user should only be able to generate a Partial > 0 and Package 
10.1.500 Supply Chain Management Inventory Management 181795 Application Code Qty ‐ 1
10.1.500 Supply Chain Management Inventory Management 181808 Application Package Control ID Overlay ‐ Qty per Container should be read‐only
Package Control ID ‐ Overlay PCID ‐The drop‐down for Printer displays the Printer ID 
10.1.500 Supply Chain Management Inventory Management 181810 Application and should be displaying the description of the Printer as stated in the story
Package Control Label Type PCID ‐ Max Part Quantity Per Label allows the user to set 
that field with a value greater than 15 but it is only possible to create a BT file with a 
10.1.500 Supply Chain Management Inventory Management 181916 Application max of 15 buckets
Issue Material ‐ Error when trying to paste multiple lines to subassembly in grid (Also 
10.1.500 Supply Chain Management Inventory Management 181932 Application fixed in 10.1.400.x)

Page 80
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Package Control PCID ‐ Unable to print a PCID using Package Control ID error is 
10.1.500 Supply Chain Management Inventory Management 181975 Application displayed

10.1.500 Supply Chain Management Inventory Management 181975 Application Package Control PCID ‐ unable to print a PCID using Package Control ID error displays


Material Transaction Detail Report ‐ Report in Excel displays merged fields and 
10.1.500 Supply Chain Management Inventory Management 181982 Application numeric fields with no format
Serial Number ‐ In Epicor 10, a serial number that contains a space in the middle 
10.1.500 Supply Chain Management Inventory Management 182113 Application does not validate the same as Epicor 9 (Also fixed in 10.1.400.x)
Package Control PCID ‐ Review all Pkg Control HH UI and verify the button hot keys 
10.1.500 Supply Chain Management Inventory Management 182282 Application are consistent
PCID Returnable Container Adjustment ‐ Retrieving previous adjustments displays an 
10.1.500 Supply Chain Management Inventory Management 182290 Application exception
10.1.500 Supply Chain Management Inventory Management 182358 Application Part Transaction Log ‐ Employee ID is not displayed in the grid
Package Control ID Adhoc PCID ‐ Unable To Generate an Ad Hoc PCID using segment 
10.1.500 Supply Chain Management Inventory Management 182412 Application Type Date
Material Transaction Detail Report ‐ Missing data for part 1032KNut in 500 that 
10.1.500 Supply Chain Management Inventory Management 182508 Application appears in 400.5
Package Control Label Type PCID ‐ Closing screen displays the following message 
10.1.500 Supply Chain Management Inventory Management 182539 Application when changes are saved: "Save changes before closing"
Package Control PCID ‐ Label values not picked up if stored at customer level and 
10.1.500 Supply Chain Management Inventory Management 182581 Application PCID generated for ship‐to
Package Control ID Adhoc PCID ‐ CustShipToEngineerAlert on PkgControlItem is not 
10.1.500 Supply Chain Management Inventory Management 182588 Application set
10.1.500 Supply Chain Management Inventory Management 182601 Application Package Control PCID ‐ Able to generate duplicate PCID's in main and staging
Initialize Physical Inventory ‐ Unexpected Exception error generated in System 
10.1.500 Supply Chain Management Inventory Management 182782 Application Monitor (Also fixed in 10.1.400.x)
Stock Status Report ‐ Report sorted by Warehouse/Part, does not lists all Parts per 
10.1.500 Supply Chain Management Inventory Management 182989 Application Warehouse
Inventory Transfer ‐ Transactions giving a negative quantity value are allowed on a 
10.1.500 Supply Chain Management Inventory Management 183092 Application FIFO enabled Site
Mass Issue to Mfg ‐ Ignored the option None from Part Class for negative qty actions 
10.1.500 Supply Chain Management Inventory Management 183278 Application for Non‐NetTable Bins
10.1.500 Supply Chain Management Inventory Management 183307 Application Package Control Label Type PCID ‐ INDIVIDUAL label type is pulling multiple labels
10.1.500 Supply Chain Management Inventory Management 183334 Application Package Control ID Adhoc PCID ‐ Tab order issues
10.1.500 Supply Chain Management Inventory Management 183335 Application Package Control ID Adhoc PCID ‐ Valid Package Code not based on Customer Ship to
Package Control ID Adhoc Job Output ‐ The final operation is complete regardless of 
10.1.500 Supply Chain Management Inventory Management 183386 Application the quantity transacted
Package Control ID Adhoc Job Output ‐ CurrentPkgCode not set for final job 
10.1.500 Supply Chain Management Inventory Management 183387 Application operations

Page 81
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


10.1.500 Supply Chain Management Inventory Management 183388 Application Package Control ID Adhoc Job Output ‐ Primary Ship To does not default
Package Control ID Adhoc Job Output ‐ LabelType maintenance lookup not occurring 
10.1.500 Supply Chain Management Inventory Management 183389 Application on job load
10.1.500 Supply Chain Management Inventory Management 183935 Application Package Control PCID ‐ PO Number not displayed in PCID forms, update forms
Package Control PCID ‐ PkgControlSplitMerge.TranType field length needs to be 
10.1.500 Supply Chain Management Inventory Management 183999 Application expanded and values set correctly
10.1.500 Supply Chain Management Inventory Management 184064 Application Job Receipt to Salvage ‐ No checking and verifying on the part's plant
Part Transaction History Tracker ‐ No error message is displayed when searching for 
10.1.500 Supply Chain Management Inventory Management 184073 Application On the Fly Part
10.1.500 Supply Chain Management Inventory Management 184271 Application UOM Split/Merge ‐ Ignoring the UOM setup the first time trying to perform a merge
10.1.500 Supply Chain Management Inventory Management 184451 Application Serial Number ‐ Serial Number records created without a Creation Date
Package Control Label Type PCID ‐ Incorrect error message is displayed for STATIC 
10.1.500 Supply Chain Management Inventory Management 184551 Application Label type
10.1.500 Supply Chain Management Inventory Management 184564 Application Package Control ID Void PCID and Label ‐ Blank container UOM
PKG PCID Returnable Container Adjustment ‐ Cust Container Part field is not 
10.1.500 Supply Chain Management Inventory Management 184568 Application populated after an Internal Part or a Package Code has been selected
PCID Returnable Container Adjustment ‐ Cust Container Part field is not populated 
10.1.500 Supply Chain Management Inventory Management 184568 Application after an Internal Part or a Package Code has been selected
10.1.500 Supply Chain Management Inventory Management 184570 Application Package Control Maintenance PCID ‐ Retrieve valid PCID after invalid entry
10.1.500 Supply Chain Management Inventory Management 184594 Application Package Control ID Adhoc PCID ‐ Targeted Ship To Search Return
10.1.500 Supply Chain Management Inventory Management 184605 Application Package Control ID Adhoc PCID ‐ Confusing error message
Package Control PCID ‐ Container consumption logic is corrupting inventory 
10.1.500 Supply Chain Management Inventory Management 184634 Application quantities (Also fixed in 10.1.400.x)
10.1.500 Supply Chain Management Inventory Management 184652 Application Package Control ID Job Output ‐ Package code active when looking at partial PCIDs
Package Control ID Job Output ‐ Under the Partials tab, clicking on the row does not 
10.1.500 Supply Chain Management Inventory Management 184655 Application select the row
Package Control ID Job Output ‐ Under the Partials tab, there is a blank Name 
10.1.500 Supply Chain Management Inventory Management 184656 Application column
10.1.500 Supply Chain Management Inventory Management 184657 Application Package Control ID Job Output ‐ The size of the Clear All button is incorrect
10.1.500 Supply Chain Management Inventory Management 184665 Application Package Control ID ‐ Partial PCID has no validation for the Ship To
Package Control ID ‐ Partial PCID can be generated after job is loaded with no other 
10.1.500 Supply Chain Management Inventory Management 184666 Application validations
Package Control ID Job Output ‐ The reprint button should read “Reprint PCID”; Part 
10.1.500 Supply Chain Management Inventory Management 184676 Application Description not labelled correctly
Package Control ID Job Output ‐ The operations grid should auto‐expand and display 
10.1.500 Supply Chain Management Inventory Management 184677 Application at least 6 records by default
Package Control ID Job Output ‐ An incorrect error message is returned upon the 
10.1.500 Supply Chain Management Inventory Management 184678 Application reprint of a PCID with a status other than WIP

Page 82
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Package Control ID Job Output ‐ Package Code remains usable even after UOM Class 
10.1.500 Supply Chain Management Inventory Management 184679 Application alterations
Package Control ID Job Receipt To Inventory ‐ The part transaction record does not 
10.1.500 Supply Chain Management Inventory Management 184680 Application have JRI <jobnum> in the PartTran.TranReference field
Package Control ID ‐ Partial PCID ‐ When a single Ship To exists for a customer it 
10.1.500 Supply Chain Management Inventory Management 184692 Application should be defaulted
Package Control ID Job Receipt To Inventory ‐ Supervisor password over ride not 
10.1.500 Supply Chain Management Inventory Management 184706 Application displayed
UOM Split/Merge ‐ The Tree view is not refreshed correctly when entering multiple 
10.1.500 Supply Chain Management Inventory Management 184717 Application parts manually
Package Control ID Inventory Transfer ‐ EmpID used in PartTran reference field 
10.1.500 Supply Chain Management Inventory Management 184723 Application should be SysUserFile if not logged in with End User Account
10.1.500 Supply Chain Management Inventory Management 184725 Application Package Control Maintenance PCID ‐ Date Time not displayed
Package Control ID Void and Label ‐ Table updates are incorrect if a packed parent 
10.1.500 Supply Chain Management Inventory Management 185104 Application PCID is voided
10.1.500 Supply Chain Management Inventory Management 185108 Application UOM Split/Merge ‐ Focus changes back to first record when process a part
Package Control Label Type PCID ‐ Error is displayed when generating multiple label 
10.1.500 Supply Chain Management Inventory Management 185174 Application types
10.1.500 Supply Chain Management Inventory Management 185314 Application Package Control ID ‐ Partial PCID ‐ Incorrect status control being set
Package Control ID Void PCID and Lablel ‐ Incorrect employee gets negative time 
10.1.500 Supply Chain Management Inventory Management 185340 Application when voiding a PCID in MES
Package Control Maintenance PCID ‐ Error after Invoiced a MASTER or 
10.1.500 Supply Chain Management Inventory Management 185642 Application MIXEDMASTER PCIDs
Package Control Label Type PCID ‐ Package code ddl is empty if package codes 
10.1.500 Supply Chain Management Inventory Management 185840 Application defined on UOM class
10.1.500 Supply Chain Management Inventory Management 186993 Application SSRS Parts Missing ABC Code Report ‐ Report cannot be printed/generated in EWA
Package Control PCID ‐ Control Static PCID Status not set to EMPTY on Pack shipping. 
10.1.500 Supply Chain Management Inventory Management 187086 Application Remains as BUSY
Package Control PCID ‐ Packing a picked PCID on Cust Ship Entry giving 'Ship lines 
10.1.500 Supply Chain Management Inventory Management 187186 Application must be created before packing PCID'
Package Control ID ‐ Partial PCID When UOMs on UOM class entry of job gives 'No 
10.1.500 Supply Chain Management Inventory Management 187221 Application Packing UOM (PackingUOM) exists for Part: P, Package Code: '
Package Control ID Adhoc PCID ‐ No Part Specific UOM error when selecting a 
10.1.500 Supply Chain Management Inventory Management 187360 Application package code
Package Control ID Job Output ‐ When Part  Cross Reference is missing from the 
CustXPrt table, the server log has the error "Part Customer Cross Reference does not 
10.1.500 Supply Chain Management Inventory Management 187458 Application exist".
Package Control ID Adhoc PCID ‐  Drop down should display all warehouses built to 
10.1.500 Supply Chain Management Inventory Management 187514 Application the Part, regardless of warehouse types

Page 83
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


10.1.500 Supply Chain Management Inventory Management 187746 Application Package Control Label Type PCID ‐ Invalid error when selecting Package Code
Package Control PCID ‐ GetPackageCode method should not return package codes 
10.1.500 Supply Chain Management Inventory Management 187748 Application for inactive UOM conversions
Package Control ID Job Output ‐Default package code is required to create PCIDs 
10.1.500 Supply Chain Management Inventory Management 187943 Application using Job Output by PCID
Package Control PCID ‐ Invoiced logic are not updated according with the PCID 
10.1.500 Supply Chain Management Inventory Management 188060 Application configuration
Package Control PCID ‐ When INVOICE is posted and PCID has INVOICED; status error 
10.1.500 Supply Chain Management Inventory Management 188098 Application displays
Package Control PCID ‐ PACKED Label Status is displayed for GENERIC Label Types 
10.1.500 Supply Chain Management Inventory Management 188100 Application when LPC is False
Package Control PCID ‐ Parent PCID configuration for history is applied incorrectly 
10.1.500 Supply Chain Management Inventory Management 188130 Application for childs PCIDs
10.1.500 Supply Chain Management Inventory Management 188172 Application Package Control PCID ‐ PCIDs created with incorrect customer
Package Control PCID ‐  Inactive Package Codes can be selected and assigned to a 
10.1.500 Supply Chain Management Inventory Management 188174 Application label type
Package Control ID Void and Label ‐ After Void a MASTER or MIXEDMASTER PCID the 
10.1.500 Supply Chain Management Inventory Management 188216 Application items remains linked to the Parent
Package Control PCID ‐ Generic Label types for PCID with Picked order gets 
10.1.500 Supply Chain Management Inventory Management 188237 Application corrupted after you remove a pack
Package Control PCID ‐ PCID print method is using the default report printer instead 
10.1.500 Supply Chain Management Inventory Management 188263 Application of default label printer
Package Control PCID ‐ PCID with status INVOICED and Archive PCID = TRUE is not 
10.1.500 Supply Chain Management Inventory Management 188321 Application moved to HXPkgControlHeader table
10.1.500 Supply Chain Management Inventory Management 188516 Application Package Control PCID ‐ HH screens are not scaling correctly
Package Control ID Job Output ‐ Cannot print when PCID generated for second+ job 
10.1.500 Supply Chain Management Inventory Management 188545 Application in grid; message 'A number of labels to print greater than 0 is required'
Package Control PCID ‐ After Posting the Invoice Parent PCIDs removes the Item 
10.1.500 Supply Chain Management Inventory Management 188765 Application information
Package Control ID Inventory Transfer ‐ Open Bin field defaults to bin description 
10.1.500 Supply Chain Management Inventory Management 188898 Application instead of Bin Num
Package Control ID ‐ Partial PCID ‐ Jobs scheduled to start outside of 21 days should 
10.1.500 Supply Chain Management Inventory Management 188938 Application not allow a Partial to be  created
Package Control ID Adhoc Job Output ‐ LabelType maintenance lookup does not 
10.1.500 Supply Chain Management Inventory Management 189036 Application occur on job load
Package Control ID Void and Label ‐ After Void a MASTER or MIXED PCID the items 
10.1.500 Supply Chain Management Inventory Management 189218 Application are not copied to History
Package Control ID Job Output ‐ Printed By and Printer ID fields are not populated 
10.1.500 Supply Chain Management Inventory Management 189316 Application when PCID is printed

Page 84
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Transfer Order Entry ‐ TFOrderDtl update to PartQty needs to go through 
10.1.500 Supply Chain Management Inventory Management 189397 Application DeferredUpdate
Package Control ID Adhoc Job Output ‐ Package code should default to empty when 
10.1.500 Supply Chain Management Inventory Management 189400 Application Part Num entered
Package Control ID Adhoc Job Output ‐ Index error when clearing the defaulted Cust 
10.1.500 Supply Chain Management Inventory Management 189406 Application ID from the form
Package Control PCID ‐ PCID is always generated with the Default package code 
10.1.500 Supply Chain Management Inventory Management 189917 Application instead of the one selected
Generate Purchase Schedules ‐ Backlog was calculated incorrectly for Schedule 
10.1.500 Supply Chain Management Purchase Scheduling 162865 Application Forward One Period Mode
Generate Purchase Schedules ‐ Semi‐weekly Extra schedule after shift day was 
10.1.500 Supply Chain Management Purchase Scheduling 166096 Application calculated incorrectly
10.1.500 Supply Chain Management Purchase Scheduling 166474 Application Part Schedule ‐ Incorrect Message Displayed on the Suppliers Percentage Share
10.1.500 Supply Chain Management Purchase Scheduling 170005 Application Purchase Order Entry ‐ It is possible to delete Order Date on PO Header/Summary
Generate Purchase Schedules ‐ MRP got cancelled when it is run for second time 
10.1.500 Supply Chain Management Purchase Scheduling 178963 Application using run generate purchase schedule (Also fixed in 10.1.400.x)
Generate Purchase Schedules ‐ An error was displayed when the process was run on 
10.1.500 Supply Chain Management Purchase Scheduling 181570 Application 02/29 (Leap Year)
Generate Purchase Schedules ‐ Process stopped working when there is calendar 
10.1.500 Supply Chain Management Purchase Scheduling 187755 Application exception days
Generate Purchase Schedules ‐ Backlog for second contract was included in the last 
10.1.500 Supply Chain Management Purchase Scheduling 187760 Application schedule on first contract
SSRS Purchase Order Report ‐ Always displaying the Our Quantity UOM description 
10.1.500 Supply Chain Management Purchasing Management 118975 Application when printing PO
Purchase Order Entry ‐ Inspection Required check box enabled when true on 
10.1.500 Supply Chain Management Purchasing Management 120978 Application Qualified Manufacturer
Purchase Order Entry ‐ Unit Price is incorrectly updated for Contract POs when price 
10.1.500 Supply Chain Management Purchasing Management 155512 Application lists exist
10.1.500 Supply Chain Management Purchasing Management 157224 Application PO Approval ‐ Unable to Update response by using Paste Insert or Paste Update
Change PO Suggestions ‐Investigate correct formula to calculate Supplier qty when 
10.1.500 Supply Chain Management Purchasing Management 164360 Application there is partially receipt
Approved Supplier ‐ Supplier Parts help discrepancy with Supplier Price List > 
10.1.500 Supply Chain Management Purchasing Management 167952 Application Supplier Price help
Purchase Order Entry ‐ After a PO is linked to an order, it can be updated revision 
10.1.500 Supply Chain Management Purchasing Management 169227 Application num in Order and PO is not updated
Requisition Entry ‐ Lead Time an Min Quantity are not populated in Requisition Line 
10.1.500 Supply Chain Management Purchasing Management 169530 Application when a Part is added
10.1.500 Supply Chain Management Purchasing Management 171916 Application Supplier ‐ Person/contact records can be created having all fields empty

Page 85
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Requisition Entry ‐ To Do List is disabled when the PO Suggestion is created from the 
10.1.500 Supply Chain Management Purchasing Management 172410 Application Requisition

10.1.500 Supply Chain Management Purchasing Management 172514 Application Requisition Entry ‐ When a requisition dispatch is reset, All users can dispatch again


Supplier Price List ‐ Unable to add a Supplier Part for a Part on the Fly record (Also 
10.1.500 Supply Chain Management Purchasing Management 173071 Application fixed in 10.1.400.x)
Requisition Entry ‐ Transaction type defaults to Inventory rather than Other for non‐
10.1.500 Supply Chain Management Purchasing Management 173474 Application quantity bearing parts
Purchase Order Entry ‐ Deleting a Purchase order sourced from a requisition is re‐
10.1.500 Supply Chain Management Purchasing Management 173475 Application opening the requisition, but deletes all the requisition lines
Purchase Order Entry ‐ PO Contract Headers, with no Lines, cannot be deleted (Also 
10.1.500 Supply Chain Management Purchasing Management 173591 Application fixed in 10.1.400.x)
Supplier Price List ‐ Subcontract Part is not displayed by default, and Price List info 
10.1.500 Supply Chain Management Purchasing Management 173639 Application does not match with Supplier (Also fixed in 10.1.400.x)
10.1.500 Supply Chain Management Purchasing Management 173655 Application Supplier Price List ‐ Several Supplier Parts can be marked as Default for Purchase
Purchase Order Entry ‐ Displayed Contact value equals the last Contact record used 
10.1.500 Supply Chain Management Purchasing Management 173687 Application (Also fixed in 10.1.400.x)
Purchase Order Entry ‐ Able to create overlapping purchase contracts (Also fixed in 
10.1.500 Supply Chain Management Purchasing Management 174055 Application 10.1.400.x)
Purchase Order Entry ‐ Saving BTO PO Line ignores Conversion rule defined at 
10.1.500 Supply Chain Management Purchasing Management 174927 Application Supplier Price List
Purchase Order Entry ‐ Duplicated PO, from PO linked to Sales Order, creates PO 
10.1.500 Supply Chain Management Purchasing Management 174996 Application linked to same Sales Order
Purchase Order Entry ‐ It is possible to add a line for a Sales Kit part if logged into a 
10.1.500 Supply Chain Management Purchasing Management 175304 Application site where part is not defined
Purchase Order Entry ‐ New release for subcontract Operation does not load Qty 
10.1.500 Supply Chain Management Purchasing Management 175311 Application from Job Op
Purchase Order Entry ‐ Attachments cannot be added when linking a Sales Order to 
10.1.500 Supply Chain Management Purchasing Management 176591 Application a PO Release
Purchase Order Entry ‐ Mass Print report prints with SSRS Server Printer on a Client 
10.1.500 Supply Chain Management Purchasing Management 177505 Application Printing Only company
Purchase Order Entry ‐ When doing Duplicate PO with Multibook, the system does 
10.1.500 Supply Chain Management Purchasing Management 177533 Application not assign the GL Control Code to both books (Also fixed in 10.1.400.x)
Requisition Entry ‐ Invalid Unit of Measure error when adding a Track Multiple 
10.1.500 Supply Chain Management Purchasing Management 177565 Application UOMs Part
Purchase Order Entry ‐ Changing Supplier ID does not update PO Line info (Unit 
10.1.500 Supply Chain Management Purchasing Management 178050 Application Price, Supplier Part, Lead Time, Manufacturer and Manufacturer Part)
Change PO Suggestions ‐ On the List tab, if the CancelReason cell is empty, the cell is 
10.1.500 Supply Chain Management Purchasing Management 179428 Application displayed in black color

Page 86
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Requisition Entry ‐ PO suggestion should be created only for Req Lines that were 
10.1.500 Supply Chain Management Purchasing Management 179841 Application open
10.1.500 Supply Chain Management Purchasing Management 179844 Application Requisition Entry ‐ Dispatch Option was disabled after delete a PO Header/Line/Rel
Purchase Order Entry ‐ Quantity value should not be changed to a lower value than 
10.1.500 Supply Chain Management Purchasing Management 180014 Application the one received
Purchase Order Entry ‐ From a new PO Release, adding a New Job Material 
10.1.500 Supply Chain Management Purchasing Management 180774 Application generates an Object Reference error (Also fixed in 10.1.400.x)
Purchase Order Entry ‐ PO generated for a Part with Shared Warehouse, generates 
10.1.500 Supply Chain Management Purchasing Management 181098 Application PO Release on the other Site
Purchase Order Entry ‐ Migrating database from 9.05.702A to 10.1.400.2, Our Qty 
10.1.500 Supply Chain Management Purchasing Management 181311 Application and Supplier Qty not displayed
Purchase Order Entry ‐ PO Suggestion is not generated for a Consolidated Part (Also 
10.1.500 Supply Chain Management Purchasing Management 181414 Application fixed in 10.1.400.x)
Purchase Order Entry ‐ In Buy To Order, Due Date in PO Line is set as Need By date 
10.1.500 Supply Chain Management Purchasing Management 181585 Application of Sales Order, instead of Ship By date (Also fixed in 10.1.400.x)
Purchase Order Entry ‐ Not Updating the MRPRecalcNeeded check box when 
10.1.500 Supply Chain Management Purchasing Management 182515 Application updating Lock Date and Lock Qty
Purchase Order Entry ‐ Adding a PO line for a BTO order line with multiple releases 
10.1.500 Supply Chain Management Purchasing Management 182703 Application sets supplier quantity to incorrect value
Purchase Order Entry ‐ Duplicating a PO and updating the Supplier generates an 
10.1.500 Supply Chain Management Purchasing Management 183571 Application error message
10.1.500 Supply Chain Management Purchasing Management 184006 Application Requisition Entry ‐ Primary Purchase Point not defaulting on Requisitions
10.1.500 Supply Chain Management Purchasing Management 184085 Application Purchase Order Entry ‐ Inactive Contacts display adding a PO
Purchase Order Entry ‐ Incorrectly retrieves expired UOM Conversion from the 
10.1.500 Supply Chain Management Purchasing Management 184152 Application supplier Price List (Also fixed in 10.1.400.x)
Purchase Order Entry ‐ From a new PO Release, adding a New Job Material 
10.1.500 Supply Chain Management Purchasing Management 184409 Application generates an Object Reference error (Also fixed in 10.1.400.x)
Purchase Order Entry ‐ If changing Unit Price from 0 to any other value, then the 
10.1.500 Supply Chain Management Purchasing Management 184506 Application total amount is not calculated properly
10.1.500 Supply Chain Management Purchasing Management 184954 Application Purchase Order Entry ‐ It is possible to delete Type on Purchase Order Entry
Purchase Order Entry ‐When a PO line or Rel is Voided, it Should be excluded from 
10.1.500 Supply Chain Management Purchasing Management 185733 Application Totals and Tax Calculations
Purchase Order Entry ‐ When a PO line or Rel is Voided, it should be excluded from 
10.1.500 Supply Chain Management Purchasing Management 185733 Application Totals and Tax Calculations
Purchase Order Entry ‐ Deleting Line Misc cost does not update Line Misc Charge 
10.1.500 Supply Chain Management Purchasing Management 185789 Application Total
Purchase Order Entry ‐ Incorrect Unit Price value having Foreign Supplier Price List in 
10.1.500 Supply Chain Management Purchasing Management 186583 Application Base Currency PO
10.1.500 Supply Chain Management Purchasing Management 186975 Application Purchase Order Entry ‐ Invalid column name when Searching for PO with supplier

Page 87
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Purchase Order Entry ‐ Inspection Required checkbox is not checked for Job 
10.1.500 Supply Chain Management Purchasing Management 187068 Application Materials
Purchase Order Entry ‐ No records selected report results if Mass Print is printed 
10.1.500 Supply Chain Management Purchasing Management 187357 Application after Standard Print
Purchase Order Entry ‐ Adding an inspection part with Ready to process enabled 
10.1.500 Supply Chain Management Purchasing Management 187404 Application generates PODetailInsp constraint error
Open Purchase Order Report ‐ Report Totals not printed on report with several 
10.1.500 Supply Chain Management Purchasing Management 188084 Application pages in SSRS
PO Entry ‐ Incorrect zData about PO business object leads to inability to create a 
10.1.500 Supply Chain Management Purchasing Management 188794 Application new BPM directive on several methods of PO business object
10.1.500 Supply Chain Management Purchasing Management 189291 Application Purchase Order Entry ‐ PMPMSetPOTotalAndTaxDefaults should be autorun
Transfer Order Pick List does not display an open line if it has another one with 
10.1.500 Supply Chain Management Shipping / Receiving 57429 Application overshipment (Also fixed in 10.1.400.x)
ICPO ‐ Receipt Entry ‐ Partial receipts saved and then deleted change the total 
10.1.500 Supply Chain Management Shipping / Receiving 116395 Application received quantity

Receive Transfer Order ‐ Receiving two TO shipment auto‐created from a cross‐site 
10.1.500 Supply Chain Management Shipping / Receiving 151241 Application job receipt to job displays negative running total on part transaction history tracker
10.1.500 Supply Chain Management Shipping / Receiving 156190 Application Receipt Entry ‐ Use of Last Warehouse/Bin rule does not work
Material Request Queue ‐ When having a Time zone assigned, application allows 
10.1.500 Supply Chain Management Shipping / Receiving 159868 Application changing it for a prior time zone
Subcontractor Shipment Entry ‐ From EWA grid columns, sequence and labels do not 
10.1.500 Supply Chain Management Shipping / Receiving 161244 Application match smart client
Stage Ship Confirm Entry ‐ From EWA grid columns, sequence and labels do not 
10.1.500 Supply Chain Management Shipping / Receiving 161246 Application match smart client
Customer Shipment Entry ‐ Documents not available error not triggered on Pack Slip 
10.1.500 Supply Chain Management Shipping / Receiving 162866 Application print ‐ Lot tracked part
SSRS Container Shipment Status Report ‐ Blank lines displayed from shipments from 
10.1.500 Supply Chain Management Shipping / Receiving 163128 Application other containers
SSRS Container Shipment Status Report ‐ Promise Date does not retrieve the correct 
10.1.500 Supply Chain Management Shipping / Receiving 165018 Application value
10.1.500 Supply Chain Management Shipping / Receiving 168269 Application Receipt Entry ‐EWA ‐ Unable to create Serial Numbers when Receipt a PO
Transfer Order Shipment Tracker ‐ Using Context Menu, Tracker does not display 
10.1.500 Supply Chain Management Shipping / Receiving 168984 Application Pack info from where it was called
Transfer Order Shipment Entry ‐ Context menu on BAQ Analyze sheet opens UI with 
10.1.500 Supply Chain Management Shipping / Receiving 170454 Application incorrect values passed in
10.1.500 Supply Chain Management Shipping / Receiving 172747 Application Transfer Order Shipment Entry ‐ "Ship Date" label missing on Header tab
Customer Shipment Entry ‐ Delete pack setting incorrect order num on serial 
10.1.500 Supply Chain Management Shipping / Receiving 172842 Application numbers when unpack to picked is True

Page 88
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Container Receipt Entry ‐ Attachment cannot be added to Shipment or to Line (Also 
10.1.500 Supply Chain Management Shipping / Receiving 173488 Application fixed in 10.1.400.x)
Subcontractor Shipment Entry ‐ Cannot deselect subshipped SN after any receipts 
10.1.500 Supply Chain Management Shipping / Receiving 173580 Application have taken place
10.1.500 Supply Chain Management Shipping / Receiving 173661 Application Receipt Entry ‐ Supplier Parts cannot be added in the Receipt
Receipt Entry ‐ Indirect Cost value is not calculated properly when working with a 
10.1.500 Supply Chain Management Shipping / Receiving 173764 Application Currency different than USD
Subcontractor Shipment Entry ‐ Report prints info of only 1st line, and sets quantity 
10.1.500 Supply Chain Management Shipping / Receiving 173979 Application that is equal to sum of all units (Also fixed in 10.1.400.x)
Data Directive ‐ Bartender Labels refer to all Receipt Lines, instead of only the 
10.1.500 Supply Chain Management Shipping / Receiving 174094 Tools Receipt Line it generated
Customer Shipment Entry ‐ Shipping a Sales Kit, Non‐Stock and Non‐Quantity 
10.1.500 Supply Chain Management Shipping / Receiving 174253 Application Bearing Parts are not added
Customer Shipment Entry ‐ Unable to ship Negative Qty for EMS Language (Also 
10.1.500 Supply Chain Management Shipping / Receiving 174266 Application fixed in 10.1.400.x)
Receipt Entry ‐ Selected serial numbers with activity after receipt save create issues 
10.1.500 Supply Chain Management Shipping / Receiving 174640 Application if the receipt line is updated
Customer Shipment Entry ‐ Setting Inventory to Part, while shipping, duplicates Sales 
10.1.500 Supply Chain Management Shipping / Receiving 175140 Application Picked Qty and Picked Qty values
Customer Shipment Entry ‐ The error message is not displayed when entering an 
10.1.500 Supply Chain Management Shipping / Receiving 175187 Application Order on Hold in the PackOut Tab
Transfer Order Shipment Entry ‐ Negative qty warning message is not displayed for 
10.1.500 Supply Chain Management Shipping / Receiving 175393 Application EMS Language
Customer Shipment Entry ‐ Cannot save Line after entering incorrect sales order 
10.1.500 Supply Chain Management Shipping / Receiving 175397 Application with error "Customer is required"
Transfer Order Shipment Entry ‐ Direct Shipment does not consider Part Class 
10.1.500 Supply Chain Management Shipping / Receiving 175428 Application Negative Quantity Action values (Also fixed in 10.1.400.x)
10.1.500 Supply Chain Management Shipping / Receiving 175543 Application Receive Transfer Order ‐ Search is not filtering by company
Customer Shipment Entry ‐ Sales Order marked as on Hold can be Shipped using 
10.1.500 Supply Chain Management Shipping / Receiving 175697 Application Picked Orders function
Receive Transfer Order ‐ If the shipment is un‐shipped and re‐shipped, then 
10.1.500 Supply Chain Management Shipping / Receiving 175707 Application duplicate rows are printed on report
10.1.500 Supply Chain Management Shipping / Receiving 175801 Application Master Pack Shipment Entry ‐ Additional Pack (EDI) cannot be added to Master Pack
Drop Shipment Entry ‐ The Mass shipment button retrieves an incorrect 
10.1.500 Supply Chain Management Shipping / Receiving 176050 Application DropShipment Line when that line was previously retrieved
Void Pack ‐ Voiding freighted pack when not logged into manifest workstation leaves 
10.1.500 Supply Chain Management Shipping / Receiving 176549 Application voided pack with manifest info
10.1.500 Supply Chain Management Shipping / Receiving 176800 Application Transfer Order Shipment Entry ‐ Multiple Packs cannot be loaded
10.1.500 Supply Chain Management Shipping / Receiving 176848 Application Receipt Entry ‐ Changing UOM in Receipt, sets On Hand = False (PartLot table)

Page 89
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Transfer Order Shipment Entry ‐ Saving Direct Transfer Order takes a long time (Also 
10.1.500 Supply Chain Management Shipping / Receiving 177020 Application fixed in 10.1.400.x)
Customer Shipment Entry ‐ The generated Invoice number is repeated from the 
10.1.500 Supply Chain Management Shipping / Receiving 177026 Application previous canceled invoice
10.1.500 Supply Chain Management Shipping / Receiving 177141 Application Customer Shipment Entry ‐ Search should be filtered by Sales Kit Part
10.1.500 Supply Chain Management Shipping / Receiving 177274 Application Transfer Order Shipment Entry ‐ Error msg is displayed when trying to do Unpack
10.1.500 Supply Chain Management Shipping / Receiving 177413 Application Master Pack Shipment Entry ‐ Unable to stage a pack after a pack is freighted
SSRS Container Landed Cost Report ‐ Info of Release 2 is not printed (Also fixed in 
10.1.500 Supply Chain Management Shipping / Receiving 177491 Application 10.1.400.x)
Receipt Entry ‐ RcvDtl.ExtTransValue is corrupted when 'Inc in transaction Value' is 
10.1.500 Supply Chain Management Shipping / Receiving 177520 Application specified against the indirect cost (Also fixed in 10.1.400.x)
Customer Shipment Entry ‐ UPC value not recognized when making a Pack Out (Also 
10.1.500 Supply Chain Management Shipping / Receiving 177562 Application fixed in 10.1.400.x)
10.1.500 Supply Chain Management Shipping / Receiving 177590 Application Receipt Entry ‐ Multiple code analysis warnings in the Receipt BO
Receipt Entry ‐ Qty on hand sometimes gets out of synch with number of serial 
10.1.500 Supply Chain Management Shipping / Receiving 177658 Application numbers in inventory
Packaging Code ‐ Customer & ShipTo ID's are not updated to match case in 
10.1.500 Supply Chain Management Shipping / Receiving 177786 Application Customer ship‐to when saving (Also fixed in 10.1.400.x)
Customer Shipment Entry ‐ Error when generating several Packed Lines for same 
10.1.500 Supply Chain Management Shipping / Receiving 178112 Application Order Line
Stage Ship Confirm Entry ‐ Context Menu options from Pack ID field, list Customer 
10.1.500 Supply Chain Management Shipping / Receiving 178251 Application Shipment options
Transfer Order Shipment Entry ‐ Second Direct Shipment cannot be saved with a low 
10.1.500 Supply Chain Management Shipping / Receiving 178287 Application quantity value
Customer Shipment Entry ‐ ADJ‐CST transactions created for Sales Kit Parts instead 
10.1.500 Supply Chain Management Shipping / Receiving 178414 Application of KIT‐CUS when unshipping (Also fixed in 10.1.400.x)
Customer Shipment Tracker ‐ Serial Numbers of 2nd Serial Tracked Part are not 
10.1.500 Supply Chain Management Shipping / Receiving 178466 Application displayed
Packaging Code ‐ Package Code should be in the same case as entered in Package 
10.1.500 Supply Chain Management Shipping / Receiving 178750 Application Code Maintenance
Stage Ship Confirm Entry ‐ Opening Stage Number drop‐down list takes more than 5 
10.1.500 Supply Chain Management Shipping / Receiving 178798 Application minutes
Stage Ship Confirm Entry ‐ Shipping 2,000+ sales orders via Submit causes the 
following error: The transaction associated with the current connection has 
10.1.500 Supply Chain Management Shipping / Receiving 178899 Application completed but has not been disposed (Also fixed in 10.1.400.x)
Bill of Lading Entry ‐ The weight is rounded even when the system is set to not round 
10.1.500 Supply Chain Management Shipping / Receiving 178902 Application this Unit of Measure
Receipt Entry ‐ Missing PartFIFOcost error when updating Receipt Date for the 
10.1.500 Supply Chain Management Shipping / Receiving 178907 Application second time (Also fixed in 10.1.400.x)

Page 90
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


10.1.500 Supply Chain Management Shipping / Receiving 178958 Application Receipt Entry ‐ No warning message when over receiving on another Packing Slip
Customer Shipment Entry ‐ Generating a Pack through Picked Orders function, does 
10.1.500 Supply Chain Management Shipping / Receiving 178962 Application not write Our Bank value into database
Receipt Tracker ‐ Index 1 error generated when switching between Packing Slips of 
10.1.500 Supply Chain Management Shipping / Receiving 178981 Application same PO
Stage Ship Confirm Entry ‐ Error when shipping multiple master packs containing 
10.1.500 Supply Chain Management Shipping / Receiving 178987 Application misc shipment packs and having a manifest enabled WS
Customer Shipment Entry ‐ Consolidate serial validations in 
10.1.500 Supply Chain Management Shipping / Receiving 179026 Application preProcessSerialNumbers to lib ValidateSNForPack
Customer Shipment Entry ‐ EWA ‐ Line Column in Order Release Search screen 
10.1.500 Supply Chain Management Shipping / Receiving 179032 Application displays extra characters
Customer Shipment Entry ‐ From Inv Bin value is defaulted to Sales Kit Line when 
10.1.500 Supply Chain Management Shipping / Receiving 179097 Application making a Mass Shipment (Also fixed in 10.1.400.x)
10.1.500 Supply Chain Management Shipping / Receiving 179524 Application Customer Shipment Entry ‐ Assign warehouse but not BIN on sales kit shipdtl line
SSRS Container Shipment Status Report ‐ Using Filter by Container ID the report 
10.1.500 Supply Chain Management Shipping / Receiving 179632 Application displays an extra shipment ID
SSRS Container Shipment Status Report ‐ Filter by Part retrieves all existing parts for 
10.1.500 Supply Chain Management Shipping / Receiving 179659 Application that criteria
Customer Shipment Entry ‐ Manifest Package rounds UD numeric fields to the 
10.1.500 Supply Chain Management Shipping / Receiving 179753 Application integer value (Also fixed in 10.1.400.x)
Customer Shipment Entry ‐ Cannot paste lines get error 'The value 0 for column: 
10.1.500 Supply Chain Management Shipping / Receiving 179932 Application PCIDParentLineis not valid'
Customer Shipment Entry ‐ Packing and Shipping a Sales Kit Sales Order does not set 
10.1.500 Supply Chain Management Shipping / Receiving 180134 Application the Sales Order as Closed (Also fixed in 10.1.400.x)
Customer Shipment Entry ‐ Shipping two packs at the same time increases the 
10.1.500 Supply Chain Management Shipping / Receiving 180301 Application inventory (Also fixed in 10.1.400.x)
Container Receipt Entry ‐ Input String error when deleting an InterCompany Receipt 
10.1.500 Supply Chain Management Shipping / Receiving 180328 Application Line
Stage Ship Confirm Entry ‐ Status bar label not set to Ready by running Submit Ship 
10.1.500 Supply Chain Management Shipping / Receiving 180402 Application Confirm process
Container Landed Cost Entry ‐ PO Releases from different sites can be added to 
10.1.500 Supply Chain Management Shipping / Receiving 180415 Application container
Receipt Entry ‐ Job Subcontract for a Lot Part with Unit Cost = 0, sets Receipt Unit 
10.1.500 Supply Chain Management Shipping / Receiving 181066 Application Cost = Material Unit Cost
Customer Shipment Entry ‐ One‐Off for SCR 150299 causes Mass Ship/Ship All on a 
10.1.500 Supply Chain Management Shipping / Receiving 181095 Application sales kit to generate extra component
Customer Shipment Entry ‐ "Customer is on credit hold" message box appears in 
10.1.500 Supply Chain Management Shipping / Receiving 181402 Application incorrect places on PackOut tab

Page 91
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Customer Shipment Entry ‐ Packing backflushed kit that is in picking does not 
10.1.500 Supply Chain Management Shipping / Receiving 181422 Application decrement the KIT‐SHP MtlQueue entry
Container Landed Cost Entry ‐ Material Burden value not calculated after disbursing 
10.1.500 Supply Chain Management Shipping / Receiving 181424 Application and applying a Late Cost Invoice (Also fixed in 10.1.400.x)
Receipt Entry ‐ Mass Receipt should allow process Serial Numbers, if Owner Site is 
10.1.500 Supply Chain Management Shipping / Receiving 181463 Application Non Serial Tracking Site
Container Receipt Entry ‐ Received Month/Day value switched when working with 
10.1.500 Supply Chain Management Shipping / Receiving 181477 Application Germany (Belgium) settings in Server (Also fixed in 10.1.400.x)
Container Receipt Entry ‐ Supplier Price update value can be changed, even though 
10.1.500 Supply Chain Management Shipping / Receiving 181478 Application it is restricted at Company level (Also fixed in 10.1.400.x)
Customer Shipment Entry ‐ Mass shipment and standard cust ship not using 
10.1.500 Supply Chain Management Shipping / Receiving 181892 Application CompanySequencePackNumSequence for generating packnum
Transfer Order Shipment Entry ‐ Error message is displayed when trying to ship a 
10.1.500 Supply Chain Management Shipping / Receiving 182053 Application transfer order line that was allocated
10.1.500 Supply Chain Management Shipping / Receiving 182054 Application Receipt Entry ‐ Packing Slip cannot be reused between Standard and SMI receipts
Drop Shipment Entry ‐ Costs for line 2+ are picked up from previous PO line (Also 
10.1.500 Supply Chain Management Shipping / Receiving 182179 Application fixed in 10.1.400.x)
Customer Shipment Entry ‐ Incorrect allocations error when changing the release on 
10.1.500 Supply Chain Management Shipping / Receiving 182280 Application an existing ship line
Customer Shipment Entry ‐ For One‐Time Ship‐To’s the ShipTo Num field should be 
10.1.500 Supply Chain Management Shipping / Receiving 182504 Application empty regardless of the status
Customer Shipment Entry ‐ Incorrect spelling in Manifest Info ‐ General tab, 
10.1.500 Supply Chain Management Shipping / Receiving 182630 Application incorrect spelling of Signature
10.1.500 Supply Chain Management Shipping / Receiving 182691 Application Drop Shipment Entry ‐ PO is closed when not completely received 
Bill of Lading Entry ‐ Generate combines packs with different classification and 
10.1.500 Supply Chain Management Shipping / Receiving 182722 Application package code into single BOL line
Customer Shipment Entry ‐ Incorrect syntax near PackNum error generated (Also 
10.1.500 Supply Chain Management Shipping / Receiving 182784 Application fixed in 10.1.400.x)
Transfer Order Shipment Entry ‐ Invalid error if the user tries to ship more Qty than 
10.1.500 Supply Chain Management Shipping / Receiving 182899 Application ordered
Customer Shipment Entry ‐ Update the use of NextValue to pass current DB 
10.1.500 Supply Chain Management Shipping / Receiving 182982 Application connection (Also fixed in 10.1.400.x)
Receipt Entry ‐ RcvHead.POType is not set when intercompany pack slip is created 
10.1.500 Supply Chain Management Shipping / Receiving 182990 Application (Also fixed in 10.1.400.x)
Customer Shipment Entry ‐ Pack cannot be Staged if its status is Freighted (Also fixed 
10.1.500 Supply Chain Management Shipping / Receiving 183080 Application in 10.1.400.x)
Customer Shipment Entry ‐ Packout Stage field cleared when Saving, if focus is 
10.1.500 Supply Chain Management Shipping / Receiving 183175 Application changed to another field (tab out)

Page 92
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Container Landed Cost Entry ‐ Disbursement of updated Foreign Currency Indirect 
10.1.500 Supply Chain Management Shipping / Receiving 183269 Application Cost, reverts Indirect Cost amount
10.1.500 Supply Chain Management Shipping / Receiving 183382 Application Customer Shipment Entry ‐ OurSupplierCode not set on ShipHead
Customer Shipment Entry ‐ Error on PackOut tab when sales kit component is 
10.1.500 Supply Chain Management Shipping / Receiving 183436 Application packed after standard purchased part
10.1.500 Supply Chain Management Shipping / Receiving 183439 Application Container Receipt Entry ‐ Improve Supplier Price restriction logic
Multi‐Company Direct Server Process ‐ Drop Shipment Lines marked as Pending, 
10.1.500 Supply Chain Management Shipping / Receiving 183564 Application instead of Dropped (Also fixed in 10.1.400.x)
Customer Shipment Entry ‐ Mass shipment does not work for Sales Order with two 
10.1.500 Supply Chain Management Shipping / Receiving 183821 Application Jobs for an Order Release
Customer Shipment Entry ‐ Create pack from Picked is pulling in releases picked in a 
10.1.500 Supply Chain Management Shipping / Receiving 183857 Application different site (Also fixed in 10.1.400.x)
SSRS Container Landed Cost Report ‐ Indirect Costs of different currencies are not 
10.1.500 Supply Chain Management Shipping / Receiving 183980 Application displayed correctly (Also fixed in 10.1.400.x)
Container Landed Cost Report ‐ Indirect Costs of different Currencies are not 
10.1.500 Supply Chain Management Shipping / Receiving 183980 Application displayed properly in SSRS
10.1.500 Supply Chain Management Shipping / Receiving 184048 Application Void Pack causes the Stack empty error
10.1.500 Supply Chain Management Shipping / Receiving 184339 Application Customer Shipment Entry ‐ Review packnum generation from picked
Customer Shipment Entry ‐ Declared value does not take into account discounts on 
10.1.500 Supply Chain Management Shipping / Receiving 184363 Application component‐priced kits
Customer Shipment Entry ‐ Shipped To Date value should be updated after Save Ship 
10.1.500 Supply Chain Management Shipping / Receiving 184443 Application Line, not before
Transfer Order Shipment Entry ‐ Check Allocations needs to support the change 
10.1.500 Supply Chain Management Shipping / Receiving 184452 Application allowing users to ship the same transfer line multiple times on same pack
Container Receipt Entry ‐ Part Lot Attribute Entry screen not opened for a Lot 
10.1.500 Supply Chain Management Shipping / Receiving 184546 Application Tracked Part
10.1.500 Supply Chain Management Shipping / Receiving 184565 Application Void Pack ‐ Problems when the Pack has no associated ShipDtl lines
Customer Shipment Entry ‐ Error message displayed when packing the remaining 
10.1.500 Supply Chain Management Shipping / Receiving 184617 Application quantity of an Order
Customer Shipment Entry ‐ Adding a Sales Kit with 2 or more releases from Picked 
10.1.500 Supply Chain Management Shipping / Receiving 184637 Application Orders is added incorrectly
Customer Shipment Summary ‐ Pack qty and UOM columns in incorrect order and 
10.1.500 Supply Chain Management Shipping / Receiving 184664 Application not linked
Customer Shipment Entry ‐ If changing the release on a ship line, the new release is 
10.1.500 Supply Chain Management Shipping / Receiving 184670 Application not always auto‐allocated
Receipt Entry ‐ Receipts can be made into a Closed Period (Earliest Apply Date = 
10.1.500 Supply Chain Management Shipping / Receiving 184741 Application today)
10.1.500 Supply Chain Management Shipping / Receiving 184765 Application Transfer Order Shipment Entry ‐ Re‐shipping takes items again from Picked items

Page 93
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Transfer Order Shipment Entry ‐ Error ‐ "Not enough unallocated inventory" displays 
if another allocation exists against the same Part/Warehouse/Bin (Also fixed in 
10.1.500 Supply Chain Management Shipping / Receiving 184907 Application 10.1.400.x)
Customer Shipment Entry ‐ Errors displayed when making a Serial Matching (Also 
10.1.500 Supply Chain Management Shipping / Receiving 184989 Application fixed in 10.1.400.x)
Customer Shipment Entry ‐ Unable to Ship Kits from picked orders when one 
10.1.500 Supply Chain Management Shipping / Receiving 185111 Application component is Non‐Quantity Bearing part (Also fixed in 10.1.400.x)
Customer Shipment Entry ‐ Null Ref exception when shipping a kit containing a non‐
10.1.500 Supply Chain Management Shipping / Receiving 185112 Application quantity bearing part
Customer Shipment Entry ‐ Error ‐ "Packing slip has been printed" displays when 
10.1.500 Supply Chain Management Shipping / Receiving 185228 Application marking pack as shipped (Also fixed in 10.1.400.x)
10.1.500 Supply Chain Management Shipping / Receiving 185282 Application Master Pack Shipment Entry ‐ Object Reference error working with BL Tester
SSRS Container Landed Cost Report ‐ Indirect Costs of different currencies are not 
10.1.500 Supply Chain Management Shipping / Receiving 185461 Application displayed correctly (Also fixed in 10.1.400.x)
Customer Shipment Entry ‐ Mass Shipment packing slip shows kit lines out of 
10.1.500 Supply Chain Management Shipping / Receiving 185512 Application sequence
Customer Shipment Entry ‐ Remaining Qty does not change when clicking Tab in 
10.1.500 Supply Chain Management Shipping / Receiving 185573 Application Line/Release
Customer Shipment Entry ‐ Master & Mixed PCID status not set correctly when pack 
10.1.500 Supply Chain Management Shipping / Receiving 186331 Application status changes
10.1.500 Supply Chain Management Shipping / Receiving 186909 Application Customer Shipment Summary ‐ Pack Id column is not sorted in descending order
Drop Shipment Entry ‐ Unit Cost in foreign currency on PO defaults into drop 
10.1.500 Supply Chain Management Shipping / Receiving 187758 Application shipment with base currency amount
10.1.500 Supply Chain Management Shipping / Receiving 187946 Application Customer Shipment Entry ‐ User is able to enter the same PCID multiple times
10.1.500 Supply Chain Management Shipping / Receiving 187947 Application Customer Shipment Entry ‐ Invalid Label Types are not validated
10.1.500 Supply Chain Management Shipping / Receiving 187995 Application Receipt Entry ‐ It does not prompt to create a new Lot Number
Bill of Lading Entry ‐ Link Pack/MP function allows a Ship To address that is different 
10.1.500 Supply Chain Management Shipping / Receiving 188439 Application than Ship Pack address
10.1.500 Supply Chain Management Shipping / Receiving 188471 Application Receipt Entry ‐ A Valid Our Quantity Error appears when receiving a Line from a PO
10.1.500 Supply Chain Management Shipping / Receiving 188797 Application Receive Transfer Order ‐ Allowed to receive before Earliest Apply Date
10.1.500 Supply Chain Management Shipping / Receiving 188869 Application Stage Ship Confirm Entry ‐ Multiple Pack creates identical ASN Documents
Container Landed Cost Entry ‐ Mlt Bur Unit Cost does not display any value, after 
10.1.500 Supply Chain Management Shipping / Receiving 188933 Application add a Indirect Cost to the Container
Customer Shipment Entry ‐ Error when shipping two Packs referring to Sales Orders 
10.1.500 Supply Chain Management Shipping / Receiving 189023 Application marked as Auto Invoice
10.1.500 Supply Chain Management Shipping / Receiving 189024 Application Customer Shipment Entry ‐ Message is not clear when re‐pack a PCID
Customer Shipment Entry ‐ PCID can be added to a pack causing overship of an 
10.1.500 Supply Chain Management Shipping / Receiving 189827 Application order release

Page 94
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Supplier Relationship  Supplier Tracker ‐ Button Copy To Excel is not active on Tab Supplier 
10.1.500 Supply Chain Management Management 164107 Application Tracker\Links\Invoices\Open
Supplier Relationship 
10.1.500 Supply Chain Management Management 171779 Application Buyer Workbench ‐ Allow to delete Supplier records
Supplier Relationship 
10.1.500 Supply Chain Management Management 172087 Application Part Price Report ‐ Supplier Part value not displayed on a specific Report Option
Supplier Relationship  RFQ Entry ‐ Print Form generates report on User's language, instead of Supplier's 
10.1.500 Supply Chain Management Management 172716 Application language
Supplier Relationship  Supplier Tracker ‐ CalcDocTotalCost field display zeros, instead of PO's Extended 
10.1.500 Supply Chain Management Management 172987 Application Cost value
Supplier Relationship 
10.1.500 Supply Chain Management Management 173244 Application Buyer Workbench ‐ Supplier Wizard does not have the Attributes filter
Supplier Relationship 
10.1.500 Supply Chain Management Management 174692 Application Supplier Tracker ‐ SystemOutOfMemoryException error when retrieving Open POs
Supplier Relationship  Buyer Workbench ‐ "Supplier is not approved for at‐least one of the selected RFQ" 
10.1.500 Supply Chain Management Management 175018 Application message appears, even when the supplier is approved
Supplier Relationship  Buyer Workbench ‐ "Supplier already exists" message appears when unselecting and 
10.1.500 Supply Chain Management Management 175019 Application selecting the RFQ check box on Suggestions grid again
Supplier Relationship 
10.1.500 Supply Chain Management Management 175090 Application Supplier Responses ‐ "Starting at" filter is case‐sensitive
Supplier Relationship  Buyer Workbench ‐ RFQ Suggestions ‐ Supplier from quote or job is not displayed in 
10.1.500 Supply Chain Management Management 176375 Application the Suppliers grid
Supplier Relationship  Buyer Workbench ‐ Supplier Wizard ‐ "Provided price break information" option not 
10.1.500 Supply Chain Management Management 176424 Application working for subcontract price lists
Supplier Relationship 
10.1.500 Supply Chain Management Management 176529 Application Buyer Workbench ‐ Supplier Wizard ‐ Compliance filter does not work
Supplier Relationship 
10.1.500 Supply Chain Management Management 176634 Application Buyer Workbench ‐Ready tab displays closed lines from open RFQ's
Supplier Relationship 
10.1.500 Supply Chain Management Management 176637 Application Supplier Responses ‐ It is possible to create PO multiple times for the same RFQ line
Supplier Relationship  Buyer Workbench ‐ Decision Wizard ‐ Exclude Attributes option does not work if 
10.1.500 Supply Chain Management Management 176797 Application adding multiple attributes
Supplier Relationship  RFQ Entry ‐ It is possible to add Auction information when Sourcing is not enabled in 
10.1.500 Supply Chain Management Management 178126 Application company
Supplier Relationship  RFQ Entry ‐ Lines for Stock or Other Requisition Lines options set item type as 
10.1.500 Supply Chain Management Management 182706 Application Material (MTL)
Supplier Relationship  RFQ Entry ‐ Deleting line from RFQ Suggestion does not create the RFQ suggestion 
10.1.500 Supply Chain Management Management 182707 Application again

Page 95
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Supplier Relationship  Buyer Workbench ‐ Generating an RFQ from a suggestion does not create RFQPart 
10.1.500 Supply Chain Management Management 184028 Application entries for items with Qualified Manufacturers
Supplier Relationship  RFQ Entry ‐ Adding an RFQ Line using Part search screen does not retrieve the UOMs 
10.1.500 Supply Chain Management Management 187552 Application and Class information
System Wide  Cross Application or other non‐menu related ‐ List of projects that still have the tag 
10.1.500 Enhancements FRx 180484 Application “TO_CONVERT_2012R”
System Wide  Product Lifecycle 
10.1.500 Enhancements Management 168371 Application PLM Server Process ‐ Improve error messages
System Wide  Product Lifecycle  PLM Integration ‐ Do not unapprove previous revisions when a new revision is sent 
10.1.500 Enhancements Management 174105 Application through Epicor 10
System Wide  Product Lifecycle  PLM Server Process ‐ The PLM process cannot be run in two Companies at the same 
10.1.500 Enhancements Management 178787 Application time
AR Invoice Form ‐ Change ARForm to Add InvcDtl.PoLineNum to Crystal RPT as Calc 
10.1.500 Tools and Technologies Accounts Receivable 175061 Application POLine
AR Invoice Form ‐ Program does not print the decimal part when using 
10.1.500 Tools and Technologies Accounts Receivable 183196 Application customization
Setup Environment ‐ Version Field on the Information Worker extension sheet 
10.1.500 Tools and Technologies Admin Console 166636 Tools displays the incorrect version
Setup Environment ‐ Epicor Username field blanks when Binding = Windows on 
10.1.500 Tools and Technologies Admin Console 169893 Tools appserver
10.1.500 Tools and Technologies Admin Console 171843 Tools Setup Environment ‐ Extensions drop‐down list duplicates names (EWA, EMA)
Setup Environment ‐ Windows Authentication appserver cannot be set on some 
10.1.500 Tools and Technologies Admin Console 171893 Tools boxes
Setup Environment ‐ Setup Environment does not bring full information for 
10.1.500 Tools and Technologies Admin Console 171917 Tools extensions
Setup Environment ‐ Application Pool Username/Password should be blank if the 
10.1.500 Tools and Technologies Admin Console 172021 Tools check box is cleared
10.1.500 Tools and Technologies Admin Console 172292 Tools Setup Environment ‐ Lightweight Smart Client from EWA client server mismatch 
10.1.500 Tools and Technologies Admin Console 172730 Tools Setup Environment ‐ Reports sheet does not remove the value in SSRSBaseURL
10.1.500 Tools and Technologies Admin Console 172975 Tools Ice.LicenseTenant table is not cleared after a record is deleted
Setup Environment ‐  Deployment status message must be changed when you 
10.1.500 Tools and Technologies Admin Console 173018 Tools connect to an appserver remotely
Epicor password field is populated but user is not able to enter it on Setup 
10.1.500 Tools and Technologies Admin Console 174593 Tools Environment when binding = windows
10.1.500 Tools and Technologies Admin Console 174598 Tools Setup Environment ‐ SSL certificate and DNS fields are hidden
10.1.500 Tools and Technologies Admin Console 175284 Tools Setup Environment ‐ EWA needs installation improvements
Unable to Import Active Directory Users in an On‐premise installation (Also fixed in 
10.1.500 Tools and Technologies Admin Console 175460 Tools 10.1.400.x)

Page 96
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Setup Environment ‐ Registering +301.1 AppServer changes the Version to Base (Also 
10.1.500 Tools and Technologies Admin Console 175695 Tools fixed in 10.1.400.x)
10.1.500 Tools and Technologies Admin Console 176768 Tools Setup Environment ‐ Publish extensions should not display error/warning messages
SetupEnvironment  ‐ Actions menu should be disabled on SetupEnvironment UI 
10.1.500 Tools and Technologies Admin Console 176771 Tools (publish extensions)
Unable to open user properties as Application launcher setting does not work 
10.1.500 Tools and Technologies Admin Console 177187 Tools properly
Setup Environment ‐ DB Validation when using windows authentication needs 
10.1.500 Tools and Technologies Admin Console 177808 Tools improvement
Setup Environment ‐ Full configuration run when applying an update (Also fixed in 
10.1.500 Tools and Technologies Admin Console 178300 Tools 10.1.400.x)
Setup Environment ‐ On the Admin Console settings sheet, Epicor Application 
10.1.500 Tools and Technologies Admin Console 178980 Tools Launcher does not work
10.1.500 Tools and Technologies Admin Console 180056 Tools License Name not always listed in License Properties
Setup Environment ‐ Unexpected behavior with Application pools from EWA Settings 
10.1.500 Tools and Technologies Admin Console 180162 Tools within the Admin console
10.1.500 Tools and Technologies Admin Console 180256 Tools Setup Environment ‐ Radio buttons do not work on Epicor Application Launcher
Setup Environment ‐ 2012RTest <AppServerURL> value is missing after creating an 
10.1.500 Tools and Technologies Admin Console 180483 Tools appserver and prevents users from logging in to ERP
Incorrect DB version if version of the build number is bigger than 9 (Also fixed in 
10.1.500 Tools and Technologies Admin Console 181072 Tools 10.1.400.x)
10.1.500 Tools and Technologies Admin Console 181185 Tools Setup Environment ‐ Misspelled error message
"Child List for field UserFileList cannot be created" error displays when importing 
10.1.500 Tools and Technologies Admin Console 181220 Tools Active directory user  (Also fixed in 10.1.400.x)
Setup Environment ‐ Error message should be changed when invalid timeout is set 
10.1.500 Tools and Technologies Admin Console 181675 Tools on machine.config

10.1.500 Tools and Technologies Admin Console 181679 Tools Data Model Generator ‐ Empty login name if password is incorrect on DM validation


Setup Environment ‐ The deployment version combo box is not sorted correctly 
10.1.500 Tools and Technologies Admin Console 181772 Tools when update 10 is reached
Setup Environment ‐ EWA can be installed but setup environment says it was not 
10.1.500 Tools and Technologies Admin Console 182599 Tools installed
Setup Environment ‐ Error when changing from HTTPBinarySSL binding to any other 
10.1.500 Tools and Technologies Admin Console 182669 Tools binding
10.1.500 Tools and Technologies Admin Console 183073 Tools Setup Environment ‐ Error extracting files
Setup Environment ‐ Additional logging from the Setup Environment is needed to 
10.1.500 Tools and Technologies Admin Console 183330 Tools determine the issue as no errors display in the Event Viewer
Setup Environment ‐ SetupEnvironmentUI.exe does not display new HTTPBinary 
10.1.500 Tools and Technologies Admin Console 183331 Tools bindings

Page 97
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Setup Environment ‐ DNSIdentity tag is not enabled when 
HttpBinaryUsernameSslChannel is selected and DNS Endpoint Identity field is 
10.1.500 Tools and Technologies Admin Console 183692 Tools populated
Setup Environment ‐  Binding Configuration label should be changed in Application 
10.1.500 Tools and Technologies Admin Console 183703 Tools Server Setup
10.1.500 Tools and Technologies Admin Console 184057 Tools Unable to add company in Admin Console
Setup Environment ‐ Close button disabled in Deployment status window (publish 
10.1.500 Tools and Technologies Admin Console 184263 Tools extensions)
10.1.500 Tools and Technologies Admin Console 184266 Tools Setup Environment ‐ Validate WCF certificate is not enabled when binding = 
Unhandled exception occurs when stopping the application pool for one appserver 
10.1.500 Tools and Technologies Admin Console 184783 Tools and then switching to a different appserver
10.1.500 Tools and Technologies Admin Console 185220 Tools Setup Environment ‐ Help uninstall causes the "object reference.." error
Setup Environment ‐ SSRS ReportServer Location field is not being populated using 
10.1.500 Tools and Technologies Admin Console 187300 Tools SQL2016
Server Manager ‐ "Could not find path..." error when installing Server Manager 
10.1.500 Tools and Technologies Admin Console 187364 Tools snapin
Setup Environment ‐ "HTTP status error 503: Server too busy" error is displayed 
10.1.500 Tools and Technologies Admin Console 187703 Tools when SSRS is configured
IQS ‐ Install Java, AQM Web Client, AQM API Toolkit, and Service Connect on new QA 
10.1.500 Tools and Technologies Advance Quality 170924 Application Servers: 10.1.300.1
IQS ‐ Install Java, AQM Web Client, AQM API Toolkit, and Service Connect on new QA 
10.1.500 Tools and Technologies Advance Quality 170926 Application Servers: 10.1.301
IQS ‐ Incorrect Accepted Qty is processed in Service Connect, DMR Processing is not 
10.1.500 Tools and Technologies Advance Quality 176883 Application updated correctly
IQS ‐ WIP records are not consider in nonconformance transactions, WIP records are 
10.1.500 Tools and Technologies Advance Quality 176893 Application not updated correctly
IQS Synchronization Process ‐ Exporting Parts adding a number to the Revision Date 
10.1.500 Tools and Technologies Advance Quality 184134 Application (Also fixed in 10.1.400.x)
Attachments ‐ Attachment description stored in the SharePoint portal is not 
10.1.500 Tools and Technologies Attachments 171852 Tools renamed if the user renames the same attachment via Epicor ERP 10 interface
Attachments ‐ In Engineering Workbench, when the Tree Panel is moved (separated 
from the Main Form) and an Attachment is double‐clicked in the Tree View, an error 
10.1.500 Tools and Technologies Attachments 176083 Tools occurs
10.1.500 Tools and Technologies Attachments 178425 Tools Attachments ‐ Error when trying to open an attachment on a detached menu tree
10.1.500 Tools and Technologies Attachments 185771 Tools Attachments ‐ Problem with Sysconfig setting to auto‐assign unique file names
10.1.500 Tools and Technologies Attachments 187287 Tools Attachments ‐ Attachments causing issues with https
Updatable BAQ Directives ‐ If you add an Extended UD field to UBAQ as an 
updatable field with a drop‐down list defined, the drop‐down does not get activated 
10.1.500 Tools and Technologies BAQ Designer 133968 Tools on an updatable dashboard

Page 98
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


10.1.500 Tools and Technologies BAQ Designer 164147 Tools Error when creating a new field attribute if no display fields selected
10.1.500 Tools and Technologies BAQ Designer 166029 Tools Unnecessary saving confirmation displays on External Datasources form
10.1.500 Tools and Technologies BAQ Designer 168124 Tools Copy of global UBAQ  works incorrectly
10.1.500 Tools and Technologies BAQ Designer 168129 Tools Export of global UBAQ  works incorrectly
10.1.500 Tools and Technologies BAQ Designer 168399 Tools External BAQs do not work with ODBC Provider (Excel and Access)
UBAQ BPM directive designer cannot create ESC programming interface, and if it 
10.1.500 Tools and Technologies BAQ Designer 170172 Tools does, imported schemas are broken
10.1.500 Tools and Technologies BAQ Designer 170440 Tools BAQ execution stops working with NullReferenceException
10.1.500 Tools and Technologies BAQ Designer 170544 Tools Newly created calculated field is not saved if any changes were made after saving
10.1.500 Tools and Technologies BAQ Designer 171494 Tools Error occurs when replacing existing External Datasource during import
When using the New button, there should be an info message that a workflow is 
10.1.500 Tools and Technologies BAQ Designer 171763 Tools created
10.1.500 Tools and Technologies BAQ Designer 171772 Tools No methods available for global query in the target company
Need to select Global check box to make the changes in the original query visible in 
10.1.500 Tools and Technologies BAQ Designer 171773 Tools the target company
Need to add Scope setting logic in all‐companies/company‐local BAQ for BPM 
10.1.500 Tools and Technologies BAQ Designer 172630 Tools directives to Migration, Upgrade and Import
10.1.500 Tools and Technologies BAQ Designer 172722 Tools Issues with SSRS BAQ Reports
10.1.500 Tools and Technologies BAQ Designer 172737 Tools Program does not remove all "updatability" metadata
10.1.500 Tools and Technologies BAQ Designer 172881 Tools Unable to enter Calc_fields with the same name in different Subqueries
10.1.500 Tools and Technologies BAQ Designer 173023 Tools Epicor stops working if an empty string is selected on the column mapping sheet
10.1.500 Tools and Technologies BAQ Designer 173170 Tools All Companies check box does not work in the External BAQ designer search dialog
10.1.500 Tools and Technologies BAQ Designer 173720 Tools BAQ with ID "yada_yada(whizz" causes issues
10.1.500 Tools and Technologies BAQ Designer 174015 Tools BAQ Export Process does not create information on the System Monitor Detail sheet
BAQ Export Process does not create information on the System Monitor Detail sheet 
10.1.500 Tools and Technologies BAQ Designer 174423 Tools ‐ investigation
10.1.500 Tools and Technologies BAQ Designer 174428 Tools Need to correct IntelliSence in BAQ C# expression editors
10.1.500 Tools and Technologies BAQ Designer 174647 Tools Data Fix Workbench Action for launching DataHealth form is hidden
10.1.500 Tools and Technologies BAQ Designer 174648 Tools Data Fix Workbench form missing the "run as agent" label
10.1.500 Tools and Technologies BAQ Designer 175012 Tools Error in UBAQ for table with an External Column defined in zDataField
10.1.500 Tools and Technologies BAQ Designer 175118 Tools Unable to import Global BAQ from Epicor 9.05 to 10.1.400 version
10.1.500 Tools and Technologies BAQ Designer 175120 Tools Unexpected behavior in Calculated field editor after clicking the New button 
10.1.500 Tools and Technologies BAQ Designer 175237 Tools No warning when the field label user enters is too long
10.1.500 Tools and Technologies BAQ Designer 175352 Tools Need to improve Company Visibility GUI and Logic in BAQ Import 
10.1.500 Tools and Technologies BAQ Designer 175730 Tools UI of assigning datasource type to company works incorrectly
10.1.500 Tools and Technologies BAQ Designer 175731 Tools Copying of external UBAQ stops working with exception
10.1.500 Tools and Technologies BAQ Designer 175789 Tools Unable to create a Report from a System BAQ (Also fixed in 10.1.400.x)
External BAQ cannot be replaced when the user installing it is different than the 
10.1.500 Tools and Technologies BAQ Designer 176113 Tools creator
10.1.500 Tools and Technologies BAQ Designer 176207 Tools Display Fields node is empty in CalcField editor

Page 99
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


10.1.500 Tools and Technologies BAQ Designer 176355 Tools Import\export of UBAQ via ESC does not work with Company ESC connection 
10.1.500 Tools and Technologies BAQ Designer 177037 Tools SQL Error on Customer‐designed BAQ
10.1.500 Tools and Technologies BAQ Designer 177717 Tools Cannot refer to BAQ constants in ExecutionFilter clause
10.1.500 Tools and Technologies BAQ Designer 177894 Tools BASE directive for Update method in UBAQ is not compiled
10.1.500 Tools and Technologies BAQ Designer 178033 Tools BAQ Export Process does not accept system queries
10.1.500 Tools and Technologies BAQ Designer 178038 Tools UBAQ methods without BPM customization are missing in copied updatable query
10.1.500 Tools and Technologies BAQ Designer 178290 Tools SSRS Report Generation ‐ Some fields are generated with incorrect name
10.1.500 Tools and Technologies BAQ Designer 178357 Tools Unable to use Dynamic DateTimes in BAQ Report
10.1.500 Tools and Technologies BAQ Designer 178856 Tools Customer 9.05.702 Cross‐company BAQ stops working
10.1.500 Tools and Technologies BAQ Designer 179086 Tools BASE directive should be regenerated if BO was changed in UBAQ
External Data Sources ‐ Program cannot be used with MySQL in 10.1.400 (Also fixed 
10.1.500 Tools and Technologies BAQ Designer 179556 Tools in 10.1.400.x)
BAQ Import ‐ Program should allow user to select destination ESC workflow package 
10.1.500 Tools and Technologies BAQ Designer 180111 Tools when updatable queries are imported
10.1.500 Tools and Technologies BAQ Designer 180673 Tools WhereUsed cannot find BAQ Reports that refer to the BAQ
Password should not be displayed to users who open External DataSource 
10.1.500 Tools and Technologies BAQ Designer 180795 Tools maintenance
Unable to update tracker by adding new/additional BAQ field into an existing tracker 
10.1.500 Tools and Technologies BAQ Designer 181023 Tools (Also fixed in 10.1.400.x)
Custom attributes for UD fields are not fetched correctly during design and runtime 
10.1.500 Tools and Technologies BAQ Designer 181154 Tools (Also fixed in 10.1.400.x)
10.1.500 Tools and Technologies BAQ Designer 181465 Tools Diagnostic ‐ Data Health/Fix issues in SaaS
10.1.500 Tools and Technologies BAQ Designer 182144 Tools External query with TVF stops working with error if datasource contains a filter
10.1.500 Tools and Technologies BAQ Designer 182154 Tools Skip if Empty parameters do not display in the Calc field editor
10.1.500 Tools and Technologies BAQ Designer 182215 Tools Performance issue when using subtotals and large volume of data
10.1.500 Tools and Technologies BAQ Designer 182888 Tools Correct EpiGuids in BAQ designer
Able to delete a BAQ in use even after "No" is clicked on the message box that asks 
10.1.500 Tools and Technologies BAQ Designer 183471 Tools to confirm deletion
10.1.500 Tools and Technologies BAQ Designer 183508 Tools Incomplete class name for ContextBound profile
"A non‐existent variable... is referenced in expression" error on BPM Workflow 
10.1.500 Tools and Technologies BAQ Designer 183593 Tools validation
External Datasources ‐ "Index 1 is either negative…" error on attempt to close the 
10.1.500 Tools and Technologies BAQ Designer 183817 Tools form under specific conditions (unsaved iScala datasource)
10.1.500 Tools and Technologies BAQ Designer 184105 Tools Duplicate GUIDs at the External Datasource Maint. form
Updatable BAQ Directives ‐ "Index 1 is either negative..." error on attempt to delete 
10.1.500 Tools and Technologies BAQ Designer 184381 Tools unsaved directive
Updatable BAQ ‐ Methods without directives are not displayed in the tree in BAQ 
10.1.500 Tools and Technologies BAQ Designer 184387 Tools Method Directives Main form after refreshing

Page 100
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


"Parameter should be specified" error on attempt to open Column Initial Expression 
10.1.500 Tools and Technologies BAQ Designer 185783 Tools if BO was not specified
10.1.500 Tools and Technologies BAQ Designer 186438 Tools Workflow packages list is not loaded
10.1.500 Tools and Technologies BAQ Designer 188041 Tools Import BAQ with stored ESC credentials: additional credentials window appears
10.1.500 Tools and Technologies BPM  189209 Tools BPM Upgrade leaves un‐upgraded BPM customization assemblies in the database
BPM ‐ Incorrectly saved state for syntax validation of expression in Fill/Update table 
10.1.500 Tools and Technologies BPM  189879 Tools mapping
BAM ‐ AutoPrint for Bartender reports and Schedule set to Immediate cannot be 
10.1.500 Tools and Technologies BPM Designer 151478 Tools executed
BAM ‐ Error when AutoPrint Action does not have user‐defined settings and 
10.1.500 Tools and Technologies BPM Designer 162443 Tools Directive is Enabled/saved.
10.1.500 Tools and Technologies BPM Designer 171165 Tools Data Directive Designer grid throw ab error when using ttShipMisc
10.1.500 Tools and Technologies BPM Designer 172697 Tools Unexpected color scheme change at BPM Designer
10.1.500 Tools and Technologies BPM Designer 172698 Tools Color scheme not properly applied to BPM Designer
Data Directive ‐ Search for Auto Print Report displays all the styles even if they are in 
10.1.500 Tools and Technologies BPM Designer 173273 Tools different Tenants
Data Directive ‐ Compilation error displays: Error CS0029: Cannot implicitly convert 
10.1.500 Tools and Technologies BPM Designer 173754 Tools type 'string' to 'long'
10.1.500 Tools and Technologies BPM Designer 173757 Tools "Attempt lock with no transaction" error when post‐processing on some table
10.1.500 Tools and Technologies BPM Designer 174039 Tools BAM ‐ AutoPrint EDI ignores Condition nodes
10.1.500 Tools and Technologies BPM Designer 174421 Tools "Attempt lock with no transaction" error when post‐processing on some tables
Data Directive ‐ When having same BPM on two companies, the .bt file on the 2nd 
10.1.500 Tools and Technologies BPM Designer 174585 Tools company is not generated (Also fixed in 10.1.400.x)
Unable to create a compliable BPM directive with Attach or Remove Hold action 
10.1.500 Tools and Technologies BPM Designer 175865 Tools against Erp.BO.PO
10.1.500 Tools and Technologies BPM Designer 176084 Tools Changes in the form can be tested after save only
10.1.500 Tools and Technologies BPM Designer 176094 Tools Need to add a warning in validation results that custom code is not specified
10.1.500 Tools and Technologies BPM Designer 176095 Tools Unnecessary saving confirmation displays in BPM Designer
SystemFlag should be removed from the list of methods in BPM Directives 
10.1.500 Tools and Technologies BPM Designer 176596 Tools Maintenance forms
BPM should not use parameter‐less constructors for classes derived from 
10.1.500 Tools and Technologies BPM Designer 176713 Tools ContextBoundBase
When both ShowMessage and RaiseException are linked in BPM Designer, BPM only 
10.1.500 Tools and Technologies BPM Designer 177078 Tools displays an exception
Method Arguments form raises an error for SysTask.DeleteSysTaskKillRecords 
10.1.500 Tools and Technologies BPM Designer 177215 Tools method
10.1.500 Tools and Technologies BPM Designer 177613 Tools "Failed to enable constraints" error in "Set Field" action
10.1.500 Tools and Technologies BPM Designer 178042 Tools TableSet variable is not fully restored by Redo
10.1.500 Tools and Technologies BPM Designer 178146 Tools Unable to create a directive on ICE BOs after new code generation implementation

Page 101
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Fulfillment Workbench error when using Pre‐processing Method Directive and BPM 
10.1.500 Tools and Technologies BPM Designer 178288 Tools Data Form (Also fixed in 10.1.400.x)
10.1.500 Tools and Technologies BPM Designer 178835 Tools Issue with "The underlying provider failed on EnlistTransaction"
10.1.500 Tools and Technologies BPM Designer 178989 Tools Auto‐print reports cannot be routed
10.1.500 Tools and Technologies BPM Designer 179192 Tools BAM ‐ DBContext related obsolete warning in BAM code
Fulfillment Workbench error occurs when using Pre‐processing Method Directive 
10.1.500 Tools and Technologies BPM Designer 179288 Tools and BPM Data Form (Also fixed in 10.1.400.x)
10.1.500 Tools and Technologies BPM Designer 179614 Tools Incorrect validation of FillTableByQuery action
10.1.500 Tools and Technologies BPM Designer 179623 Tools FillTableByQuery mapping status is incorrect
10.1.500 Tools and Technologies BPM Designer 180580 Tools Fill (Update) Table by query check syntax works incorrectly
Method Directives ‐ Unable to use "Set Field" on Part.PartNum when creating a BPM 
10.1.500 Tools and Technologies BPM Designer 181635 Tools (Also fixed in 10.1.400.x)
10.1.500 Tools and Technologies BPM Designer 181684 Tools ICE Build ‐ Build deploys mscorlib and causes the directives not to compile
10.1.500 Tools and Technologies BPM Designer 182585 Tools Add Epicor.Ice.Shared.Social.dll to list of standard BPM project references
10.1.500 Tools and Technologies BPM Designer 182841 Tools Layout and connection link are lost after import
BAM ‐ Setting up an Email action in a Data Directive with Attach Link set to true 
10.1.500 Tools and Technologies BPM Designer 182894 Tools throws exception on compiling
10.1.500 Tools and Technologies BPM Designer 183537 Tools OK button is out of visible area if there are no fields on Data Form
Data Directive ‐ Directive link specified in Condition block is lost during 
10.1.500 Tools and Technologies BPM Designer 184022 Tools export/import
Directive Export ‐ Unable to export directives for empty group despite their 
10.1.500 Tools and Technologies BPM Designer 184138 Tools availability in the list
OK, Cancel, Check Syntax buttons are not available on Specify C# expression form 
10.1.500 Tools and Technologies BPM Designer 184226 Tools maximize
Cannot to enable constraints message on ConfigurationRuntime pre‐processing 
10.1.500 Tools and Technologies BPM Designer 184569 Tools Method Directive
Data Directive ‐ Error when trying to execute AutoPrint Bartender report using 
10.1.500 Tools and Technologies BPM Designer 184619 Tools DataDirective
10.1.500 Tools and Technologies BPM Designer 184800 Tools Method Directives ‐ It should not be possible to create directive with an empty 
BAM ‐ SSRSRenderFormat not set for AutoPrint reports when print action is 
10.1.500 Tools and Technologies BPM Designer 184871 Tools AutoPreview
10.1.500 Tools and Technologies BPM Designer 185116 Tools Select Workflow ‐ OK button is not enabled on workflow selection
10.1.500 Tools and Technologies BPM Designer 185159 Tools Workflow ‐ Context Parameters form is resized incorrectly
Add Reference ‐ Assembly selected before filtering of the list is not added despite OK 
10.1.500 Tools and Technologies BPM Designer 185318 Tools button availability
10.1.500 Tools and Technologies BPM Designer 185324 Tools Failed to configure table relations in Update Table by query action
10.1.500 Tools and Technologies BPM Designer 185376 Tools Remove button remains enabled despite no assembly is selected
ECC Customer ‐ Quotes expired in ECC and message is sent to expired are not 
10.1.500 Tools and Technologies Commerce Connect 169875 Application expired in Epicor 10

Page 102
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


ECC Supplier ‐ Adding New Releases or Lines to Confirmed PO do not appear at 
10.1.500 Tools and Technologies Commerce Connect 172583 Application Confirm PO Changes
ECC Customer ‐ Order line comment does not get retrieved, component pricing 
10.1.500 Tools and Technologies Commerce Connect 175744 Application incorrect
10.1.500 Tools and Technologies Commerce Connect 175747 Application ECC Customer ‐ Alternate part numbers not synchronized to web
ECC Supplier ‐ Incoming change request should not process blank lines; dates should 
10.1.500 Tools and Technologies Commerce Connect 175910 Application not be UTC converted and uploading dates should have zero time
ECC Customer ‐ Available qty for kits needs to be calculated based on components 
10.1.500 Tools and Technologies Commerce Connect 176330 Application (Also fixed in 10.1.400.x)
ECC Supplier ‐ Rejected changed request for due date not reverted back (Also fixed 
10.1.500 Tools and Technologies Commerce Connect 177465 Application in 10.1.400.x)
ECC Customer ‐ Quote admin pricing update, multiple locations (Also fixed in 
10.1.500 Tools and Technologies Commerce Connect 178298 Application 10.1.400.x)
ECC Customer ‐ Stock inquiry for kits where component does not exist for location 
10.1.500 Tools and Technologies Commerce Connect 178299 Application should not return 0
ECC Customer ‐ Creation of order stops working with the following error: Index out 
10.1.500 Tools and Technologies Commerce Connect 179938 Application of range (Also fixed in 10.1.400.x)
10.1.500 Tools and Technologies Commerce Connect 180205 Application ECC Customer ‐ RFQ update (CRQU) needs to store addition sales rep ID
10.1.500 Tools and Technologies Commerce Connect 180208 Application ECC Customer ‐ Customer searches by sales rep need to work for multiple customers
ECC Customer ‐ Quote update reverts unit price back to list price (Also fixed in 
10.1.500 Tools and Technologies Commerce Connect 180591 Application 10.1.400.x)
10.1.500 Tools and Technologies Commerce Connect 180827 Application ECC Customer ‐ Quote display of price data should be net (Also fixed in 10.1.400.x)
ECC Customer ‐ Quote Update (CRQU) functionality does not work for config 
10.1.500 Tools and Technologies Commerce Connect 181338 Application clone/edit and address change (Also fixed in 10.1.400.x)
10.1.500 Tools and Technologies Commerce Connect 181762 Application ECC Customer ‐ Sales rep basket added discount is ignored (Also fixed in 10.1.400.x)
10.1.500 Tools and Technologies Commerce Connect 182814 Application SQL Injection errors in SI.ECCLib
ECC Customer ‐ Configured columns, such as line desc and comment are not saved 
10.1.500 Tools and Technologies Commerce Connect 183322 Application to order line (Also fixed in 10.1.400.x)
Customer ‐ For configured parts order and quote create need to execute doc rules 
10.1.500 Tools and Technologies Commerce Connect 184393 Application (Also fixed in 10.1.400.x)
10.1.500 Tools and Technologies Commerce Connect 185989 Application ECC Customer ‐ Re‐configure of part without saving quote does not update 
ECC Customer ‐ Editing of an existing quote and re‐configure of a part reverts part 
10.1.500 Tools and Technologies Commerce Connect 186722 Application number back
ECC Customer ‐ Tax exemptions are not been taken into account when the SO is 
10.1.500 Tools and Technologies Commerce Connect 187763 Application created in ECC
ECC Customer ‐ Orders from web that are intended to be on account are requiring a 
10.1.500 Tools and Technologies Commerce Connect 187979 Application credit card name
10.1.500 Tools and Technologies Conversions 172145 Tools Base update directive on UBAQ is migrated with errors
10.1.500 Tools and Technologies Conversions 176565 Tools BAQ Upgrade ‐ Investigate client DB upgrade issues

Page 103
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


10.1.500 Tools and Technologies Conversions 176749 Tools Database Migration ‐ Collation conflict when upgrading database
Database Migration ‐ UD data migration from table ProjectCst_UD does not work in 
10.1.500 Tools and Technologies Conversions 177771 Tools Epicor 10.1 (Also fixed in 10.1.400.x)
Database Migration ‐ E905702a migration to E10.0 receives error "Error Staging 
Tables Migration: Mobility_UDMigration.sql. Conversion failed when converting the 
10.1.500 Tools and Technologies Conversions 178139 Tools nvarchar value '207‐443‐3193' to data type int"
Database Migration ‐ DB migration grid has DDL object on Status & Executed Time 
10.1.500 Tools and Technologies Conversions 178672 Tools (Min) columns
Database Migration ‐ Highlight the word Error in the Database upgrade error log so 
10.1.500 Tools and Technologies Conversions 178976 Tools that it is more visible to users
Database Migration ‐ Migration from Epicor 9.05.702A SQL to Epicor ERP 10.1.400 
creating a erp.vendor_ud_ud table and causing errors in the migration log because it 
10.1.500 Tools and Technologies Conversions 179229 Tools does not contain a sysrowid field (Also fixed in 10.1.400.x)
Database Migration ‐ Certain ICE tables, such as xFileAttch, Memo, MemoCat, and 
Sysagent do not get copied over during the migration from Epicor 9 to Epicor 10 
10.1.500 Tools and Technologies Conversions 179554 Tools (Also fixed in 10.1.400.x)
Database Migration ‐ DB Migration tool cannot change the SQL TimeOut when the 
10.1.500 Tools and Technologies Conversions 179795 Tools database is upgraded to the current code
Database Migration ‐ Migration from 10.0 to 10.1 stops with an error on conversion 
10.1.500 Tools and Technologies Conversions 181440 Tools 50 (Also fixed in 10.1.400.x)
Database Migration ‐ Column does not allow DBNull.Value errors for NonConf_UD 
10.1.500 Tools and Technologies Conversions 182386 Tools and JobHead_UD on Task 600 during Epicor 9.05 to 10.1 migration
Database Migration ‐ Error displays if other progress databases are migrated using 
10.1.500 Tools and Technologies Conversions 182387 Tools the same interim database name (Also fixed in 10.1.400.x)
10.1.500 Tools and Technologies Conversions 182597 Tools Database Migration ‐ Labels for UD Fields on BAQs do not carry from E9 to 10.1
BPM ‐ BPM Upgrade 10‐to‐10 reports a non‐fatal error upgrading the customization 
10.1.500 Tools and Technologies Conversions 182702 Tools on Ice.Company.UpdateExt (Also fixed in 10.1.400.x)
BAQ Upgrade reports error converting BAQs on SaaS, if the BAQ is marked as 
10.1.500 Tools and Technologies Conversions 182757 Tools CompanyIndependent/TenantDependent
10.1.500 Tools and Technologies Conversions 184018 Tools Database Migration ‐ EPICx companies seeded in customer databases
Database Migration ‐ Several ICE tables potentially have missing rows after migrating 
10.1.500 Tools and Technologies Conversions 184114 Tools from Epicor 9.05.702A to Epicor ERP 10.1.400.7 (Also fixed in 10.1.400.x)
Refresh PartBin QOH From PartTran ‐ Corrupting QOH for packaging parts consumed 
10.1.500 Tools and Technologies Conversions 185384 Application when picking into a PCID
Database Migration ‐ Seed preparation script is not executed during database 
10.1.500 Tools and Technologies Conversions 187646 Tools upgrade from 10.0.600.3 to 10.1.500
Database Migration ‐ E9 Progress to 10.1.500.0 migration fails due to invalid column 
10.1.500 Tools and Technologies Conversions 188666 Tools name

Page 104
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Customer Relationship  Price List ‐ Reviewing on List tab, Base Price value changes when moving with scroll 
10.1.500 Tools and Technologies Management 173921 Application bar and keyboard
Object reference error after a MES Main Menu Customization is Verified in 
10.1.500 Tools and Technologies Customization 157391 Tools Customization Maintenance
Can delete a Custom Column Like value that was created, though after saving the 
10.1.500 Tools and Technologies Customization 161339 Tools delete and running the Customization, the Custom Column Like value returns
Misc Section does not include the Manual Width values for the EpiRetrieverCombo, 
10.1.500 Tools and Technologies Customization 164502 Tools Combo and UltraCombo
When erasing text boxes and adding a new, one throws an error and if you delete it, 
10.1.500 Tools and Technologies Customization 171794 Tools the sheet is erased too because the new object is not selectable
The type or namespace name UOMClass could not be found, error occurs while 
10.1.500 Tools and Technologies Customization 172928 Tools verifying a customization
10.1.500 Tools and Technologies Customization 173096 Tools Some Localizations Throw exception in ControlDesignerBase
10.1.500 Tools and Technologies Customization 173142 Tools UDxx fields are not saved on all Sales Orders where data was entered
Index was out of range; it must be non‐negative and less than the size of the 
10.1.500 Tools and Technologies Customization 173147 Tools collection in Multi Tenant
10.1.500 Tools and Technologies Customization 173287 Tools Customization Maint search ignores the status not yet validated for selection 
EpiCombo on docking sheet causes object reference error when not in developer 
10.1.500 Tools and Technologies Customization 174945 Tools mode
After upgrading Epicor, an E9.05.700c Customization displays correctly in 
E9.05.702a, in E10.0.700.4 and in E10.1.300.4, However, after upgrading to 
10.1.500 Tools and Technologies Customization 174947 Tools E10.1.301.1, the customized Base and Custom controls are removed
10.1.500 Tools and Technologies Customization 176858 Tools Possible problem with Ice.Adapters.Company call to GetRows
Clicking Test Code causes false compile error for some customizations (Also fixed in 
10.1.500 Tools and Technologies Customization 179031 Tools 10.1.400.x)
Customization with embedded DashboardPanel causes error in Personalization layer 
10.1.500 Tools and Technologies Customization 179293 Tools (Also fixed in 10.1.400.x)
Error displayed when a verified customization from Epicor 9 is migrated to Epicor 
10.1.500 Tools and Technologies Customization 179940 Tools ERP 10: Length cannot be less than zero (Also fixed in 10.1.400.x)
10.1.500 Tools and Technologies Customization 182228 Tools BPM call context dataset does not work in customization layer
Customization Maintenance should verify the New Name entered and if it contains 
Spaces in the ID, change those Spaces to Underscores "_", just like in Customization 
10.1.500 Tools and Technologies Customization 182292 Tools Tools
Personalization ‐ CRM Call log causes exception when using Tools > Options and 
10.1.500 Tools and Technologies Customization 183111 Tools cannot set hot keys
10.1.500 Tools and Technologies Dashboards 132672 Tools After Refreshing two columns, SysRowID + rowMod display in tracker view
10.1.500 Tools and Technologies Dashboards 156263 Tools Cannot deploy dashboard
Dashboards ‐ Kanban Monitor stops working when it is opened and closed very 
10.1.500 Tools and Technologies Dashboards 161089 Tools often

Page 105
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


10.1.500 Tools and Technologies Dashboards 161173 Tools Modification of system dashboards (with company=””) should be possible
In the grid properties, moving field location is not saved on the grid once dashboard 
10.1.500 Tools and Technologies Dashboards 162112 Tools has been saved
Saving changes from the grid view of a dashboard applies changes to the filtering 
10.1.500 Tools and Technologies Dashboards 162372 Tools tracker
10.1.500 Tools and Technologies Dashboards 163894 Tools Performance issue on multi‐part pub and multi‐part sub
10.1.500 Tools and Technologies Dashboards 164071 Tools Publisher combo box is disabled after clicking on EPMType combo
10.1.500 Tools and Technologies Dashboards 165035 Tools Row Rules are not saved
10.1.500 Tools and Technologies Dashboards 165505 Tools Updatable dashboards do not allow prompt for fields from subquery
Cannot paste values into fields of an embedded URL (web site) for Deployed 
10.1.500 Tools and Technologies Dashboards 168946 Tools Dashboards
10.1.500 Tools and Technologies Dashboards 169391 Tools Program does not always capture Owning Company for User‐created dashboards
10.1.500 Tools and Technologies Dashboards 169458 Tools Inconsistent behavior of User‐created Grid Image columns on Runtime Dashboards

10.1.500 Tools and Technologies Dashboards 172970 Tools Dashboard with Tracker View using Epicombo modifies the Grid Results on assembly


10.1.500 Tools and Technologies Dashboards 173347 Tools Cannot delete a dashboard that has all companies set to true
Unable to create a dashboard with the same name of an All Companies dashboard 
10.1.500 Tools and Technologies Dashboards 173463 Tools from another Company
Dashboards ‐ "Report File" field is not validated when user implement a different 
location from the one the indicated in the "Server Data Directory" + 
10.1.500 Tools and Technologies Dashboards 173730 Tools "CustomReports"  by typing or pasting the paths
10.1.500 Tools and Technologies Dashboards 174081 Tools Combo box on tracker panel does not display drop‐down values when opened
Unexpected error when copying system dashboards with large descriptions (Or user 
10.1.500 Tools and Technologies Dashboards 174109 Tools defined with large caption)
10.1.500 Tools and Technologies Dashboards 174653 Tools Dashboard with invalid name can be saved
10.1.500 Tools and Technologies Dashboards 174674 Tools Improve exception text when assembly can be found but cannot be accessed
10.1.500 Tools and Technologies Dashboards 174679 Tools Multi‐Threaded Save, Start and Close Buttons are out of alignment
10.1.500 Tools and Technologies Dashboards 174935 Tools "Matches" and "Start With" conditions are different in Epicor 9 and Epicor ERP 10
10.1.500 Tools and Technologies Dashboards 175015 Tools Epicombo field does not display drop‐down info for dashboard runtime
10.1.500 Tools and Technologies Dashboards 175038 Tools EPM items do not work from dashboard assemblies (they only work in design mode)
10.1.500 Tools and Technologies Dashboards 175124 Tools Dot . in matches behaves differently in 10.1.300.1 to 9.05.702.12A
10.1.500 Tools and Technologies Dashboards 175203 Tools Unable to modify query Publish or Filter settings (Also fixed in 10.1.400.x)
Error when Dashboards with only URL/XSLT views are deployed (or generated its 
10.1.500 Tools and Technologies Dashboards 175541 Tools webform) from dashboard Maintenance form
10.1.500 Tools and Technologies Dashboards 175711 Tools When adding two tracker views, they are not filled after refreshing
Dashboards with a lot of EPM URL/XSLT views throw errors when user deletes those 
10.1.500 Tools and Technologies Dashboards 176158 Tools view elements
10.1.500 Tools and Technologies Dashboards 176196 Tools Program ignores Adv Col Editor Order for Updatable BAQ drop‐downs
10.1.500 Tools and Technologies Dashboards 177073 Tools Invalid NavControl settings message when launching dashboards
10.1.500 Tools and Technologies Dashboards 177569 Tools Updatable Dashboard with Grid Column Filters will not update Multiple Rows

Page 106
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


10.1.500 Tools and Technologies Dashboards 177768 Tools No message is thrown after copying a dashboard and entering an existing ID
10.1.500 Tools and Technologies Dashboards 178241 Tools Deploying a dashboard with embed grid causes error
Dashboards are not imported the first time after opening the dashboards form (Also 
10.1.500 Tools and Technologies Dashboards 178811 Tools fixed in 10.1.400.x)
10.1.500 Tools and Technologies Dashboards 178983 Tools Combo on tracker view displays the ID of the option instead of the description
Enable Refresh All Checkbox and Refresh All Icon not retrieved when Dev Mode is off 
10.1.500 Tools and Technologies Dashboards 179697 Tools (Also fixed in 10.1.400.x)
10.1.500 Tools and Technologies Dashboards 180569 Tools Captions remains when clearing form after enabling developer mode again
Grid Text is temporarily unreadable when using Row Rule Highlighting in Updatable 
10.1.500 Tools and Technologies Dashboards 181333 Tools DBs
If the decimal symbol is comma and you have two numbers after the comma what is 
10.1.500 Tools and Technologies Dashboards 182658 Tools not zero it will put a star before the number.
10.1.500 Tools and Technologies Database Administration 174318 Tools Set the database configuration "transform noise words" to 1 for Part table
10.1.500 Tools and Technologies Database Administration 177820 Tools Schema Changes ‐ Add three indexes for the product configurator team
10.1.500 Tools and Technologies Database Administration 184305 Tools Drop duplicated indexes
10.1.500 Tools and Technologies Database Administration 185528 Tools Fixes related to "RelatedToFile" for Help Desk Memos (Also fixed in 10.1.400.x)
Engineering Workbench ‐ Index ‐1 is either negative or above rows count navigating 
10.1.500 Tools and Technologies Engineering 167350 Tools in tabs
10.1.500 Tools and Technologies Enterprise Search 166639 Tools Enterprise Search icon on Search Panel on Modern Shell has the old image
10.1.500 Tools and Technologies Enterprise Search 167079 Tools DB creation should default to simple logging to avoid unnecessary HD usage
10.1.500 Tools and Technologies Enterprise Search 167113 Tools Search index wizard prevents setting appserver timeout greater than 300
10.1.500 Tools and Technologies Enterprise Search 169393 Tools Authorization error caused by regional date settings (Also fixed in 10.1.400.x)
10.1.500 Tools and Technologies Enterprise Search 169408 Tools The Details Dialog box of the index must be uneditable
The Endpoint label on the Search Index Creation Wizard, should be Binding instead 
10.1.500 Tools and Technologies Enterprise Search 169525 Tools of Endpoint
10.1.500 Tools and Technologies Enterprise Search 171382 Tools Ent Search/Social ‐ All results for quotes are described as zES_Quote(BAQ Name)
Overwrite flag instruction should be displayed when creating two ES indices with 
10.1.500 Tools and Technologies Enterprise Search 172088 Tools same name
10.1.500 Tools and Technologies Enterprise Search 172571 Tools The Search Index Creation Wizard is on the background when creating an Index
10.1.500 Tools and Technologies Enterprise Search 177875 Tools Error adding BAQ to index when using windows authentication
Prevent creating two ES indices with the same name inside the extension on Admin 
10.1.500 Tools and Technologies Enterprise Search 179100 Tools Console
Searches with spaces do not work when changing from grid to classic and back (Also 
10.1.500 Tools and Technologies Enterprise Search 180505 Tools fixed in 10.1.400.x)
10.1.500 Tools and Technologies Enterprise Search 180830 Tools Empty template is missing subfolders, resulting in errors creating index from it
10.1.500 Tools and Technologies Enterprise Search 180832 Tools Cannot clear out user set Like Field after initial save of change
10.1.500 Tools and Technologies Enterprise Search 181596 Tools Installation process needs to validate service account
10.1.500 Tools and Technologies Enterprise Search 184611 Tools Https bindings do not require DNS Identity
10.1.500 Tools and Technologies Enterprise Search 184879 Tools System BAQs cannot be used in Quick Searches
10.1.500 Tools and Technologies Enterprise Search 184941 Tools Refresh BAQ on template stops working with exception

Page 107
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


10.1.500 Tools and Technologies Enterprise Search 184942 Tools Show Index Log action in Epicor Search Manager stops working with exception
10.1.500 Tools and Technologies Enterprise Search 184949 Tools Replace existing flash based copy/paste library with a more modern option
10.1.500 Tools and Technologies Enterprise Search 184950 Tools BAQ selection wizard in Epicor Search Manager should be larger
10.1.500 Tools and Technologies Enterprise Search 184951 Tools Results in BAQ selection wizard display as duplicates
Enterprise Search ‐ Does not apply same context menu security as does base 
10.1.500 Tools and Technologies Enterprise Search 186740 Tools application

10.1.500 Tools and Technologies ESC Admin Console 177454 Tools Admin Console stops working on closing when Document Tracking View loads traces


Admin Console stops working if moving focus from Document Tracking View to 
10.1.500 Tools and Technologies ESC Admin Console 177456 Tools another node when the View loads traces
Admin Console stops working on closing when Document Tracking View is empty or 
10.1.500 Tools and Technologies ESC Admin Console 178039 Tools DC view completed loading of traces
10.1.500 Tools and Technologies ESC Admin Console 182470 Tools Admin Console stops working on Document tracking view creation
10.1.500 Tools and Technologies ESC Admin Console 183146 Tools View Activity Progress ignores user permissions
10.1.500 Tools and Technologies ESC Admin Console 183880 Tools Object Choice does not display in Document tracking as a condition
Asynchronous sub‐workflow can dispose Epicor session of another synchronous sub‐
10.1.500 Tools and Technologies ESC DES Router 179108 Tools workflow
Import of Web reference ITSM web service (party.asmx) stops working with “Invalid 
10.1.500 Tools and Technologies ESC DES Router 179259 Tools token '+'”
10.1.500 Tools and Technologies ESC DES Router 182833 Tools Enqueued Requests for Async pool should ignore files with empty size
Service Connect stops working when calls for the WCF web service with UD fields of 
10.1.500 Tools and Technologies ESC DES Router 184736 Tools Epicor 10.1
Service Connect ‐ Tracking archiving archives random activity processes should be 
10.1.500 Tools and Technologies ESC Other 178196 Tools documented
The Backup/Restore operations work incorrectly for Scheduled business events with 
10.1.500 Tools and Technologies ESC Other 178995 Tools identical properties of Source Object, Source action, Company code, Financial year
Literal value cannot be assigned in XML Mapper to an element with 
10.1.500 Tools and Technologies ESC Other 183834 Tools maxOccurs="unbounded"
10.1.500 Tools and Technologies ESC Other 185041 Tools Task Monitor unhandled exceptions with App Verifier (w3wp)
Epicor Service Connect Other ‐ Outdated note on Microsoft SQL 2008 SP1 in the 
10.1.500 Tools and Technologies ESC Other 185454 Tools Software prerequisites section; related outdated Troubleshooting section
10.1.500 Tools and Technologies ESC Output Channel 182246 Tools Fixed width output converter duplicates records
10.1.500 Tools and Technologies ESC Task Monitor 182327 Tools Task Monitor ‐ Error when adding second attribute with non‐empty URI
10.1.500 Tools and Technologies General 51644 Application Supplier Performance has incorrect calculations for OnTimeLateDate
Need to eliminate the use of static fields that can leak data between 
10.1.500 Tools and Technologies General 164022 Application sessions/companies
10.1.500 Tools and Technologies General 166017 Tools Project templates create a parameterless constructor
General Framework ‐ BizRuleEngineExtender memory leak ‐ OrderHed (Also fixed in 
10.1.500 Tools and Technologies General 167944 Application 10.1.400.x)

Page 108
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


General Framework ‐ Using UpdateExt to create a new ServiceCallCenter FSCallHd 
10.1.500 Tools and Technologies General 170674 Tools record with CallNum = 0 causes an error
10.1.500 Tools and Technologies General 171107 Application Generic Import Process ‐ System Monitor changes
10.1.500 Tools and Technologies General 172662 Application MES Menu ‐ Labor Interface Option as Hours are not updated to the time recorded
Refresh PartBin QOH From PartTran ‐ Error displayed when Language and Format 
10.1.500 Tools and Technologies General 173320 Application Culture is French (Canada) (Also fixed in 10.1.400.x)
10.1.500 Tools and Technologies General 173459 Application External CRM ‐ Interface Issues for External CRM Integration
10.1.500 Tools and Technologies General 173617 Application Incorrect spelling of Erp.Internal.Lib.TaskAgentExtenion (ExtenSion)
General ‐ Enable the change log option and attachments for tables Manufacturer 
10.1.500 Tools and Technologies General 174717 Application and PartXRefMfg
Menu Maintenance ‐ Security ID duplicated in Setup and Recurring Cycle on 
10.1.500 Tools and Technologies General 174997 Application Accounts Payable
Add percentage complete to migration log for auto‐run migration sequence 1100 ‐ 
10.1.500 Tools and Technologies General 175316 Application Create PartCost for PartPlant
Image ‐ Label in Image Export window displays Initialize Physical Inventory instead of 
10.1.500 Tools and Technologies General 175945 Application Image Export
10.1.500 Tools and Technologies General 176426 Application Queries should use a company parameter, rather than Session.CompanyID
10.1.500 Tools and Technologies General 176725 Application MES Menu ‐ End Activity, Material Tag report not displaying the full Operation ID
10.1.500 Tools and Technologies General 177045 Application Company exists in a table, but is not used in the query where clause
10.1.500 Tools and Technologies General 177063 Application General ‐ Company exists on a table but is not used in the query where clause
10.1.500 Tools and Technologies General 177227 Application Company exists on a table but is not used in the query where clause
Conversion Workbench ‐ Conversion Seq 8980 
(GLConverCurrencyRevalueAcctFormat) displays an error (Nullreference) during 
10.1.500 Tools and Technologies General 177423 Application migration (Also fixed in 10.1.400.x)
Conversion Workbench ‐ GLConvertCurrencyRevalueAcctFormat 8980 ‐ Support 
10.1.500 Tools and Technologies General 177576 Application triggers correctly
Conversion Workbench ‐ GLConvertConsolidationsForE101 9020 ‐ Support triggers 
10.1.500 Tools and Technologies General 177580 Application correctly
10.1.500 Tools and Technologies General 177649 Application MES Menu ‐ MES is not updating the user ID when switching employees

10.1.500 Tools and Technologies General 177922 Application Core Processes ‐ Company exists in a table, but is not used in the query where clause


MES Menu ‐ End Downtime sets the status to Entered instead of Approved (Also 
10.1.500 Tools and Technologies General 177939 Application fixed in 10.1.400.x)
10.1.500 Tools and Technologies General 178936 Application Database Purge and Summarize ‐ No log in system monitor after PO purge
MES Menu ‐ MES Status will remain as WIP for serial numbers when using Report 
10.1.500 Tools and Technologies General 179197 Application Qty on MES and the last (final) operation is marked as auto‐receive
Transaction Log ‐ Print Options should not be enabled when the application is 
10.1.500 Tools and Technologies General 179356 Application opened from Job Receipt to Inventory

Page 109
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Public methods in partial class need to be made private or they may become service 
10.1.500 Tools and Technologies General 180058 Application methods
Cross Application or other non menu related ‐ List of projects that still have the tag 
10.1.500 Tools and Technologies General 180480 Application “TO_CONVERT_2012R”
Cross Application or other non menu related ‐ List of projects that still have the tag 
10.1.500 Tools and Technologies General 180485 Application “TO_CONVERT_2012R”
Cross Application or other non‐menu related ‐ SCM List of projects that have the tag 
10.1.500 Tools and Technologies General 180487 Application “TO_CONVERT_2012R”
Purchasing ‐ Part Revision field does not retrieve the Revision value for the Site 
10.1.500 Tools and Technologies General 181307 Application being worked on
Plant Configuration ‐ Control Max Number of PCIDs to Generate only allows values 
10.1.500 Tools and Technologies General 181427 Application up to 9
Refresh Part Bin QOH From PartTran ‐ Running process undoes any Split/Merge 
10.1.500 Tools and Technologies General 181838 Application made to the Part (Also fixed in 10.1.400.x)
10.1.500 Tools and Technologies General 182172 Application Company Configuration ‐ Update Epicor Help description for AR/AP
DMR Processing ‐ Not updating Labor cost on material correctly when cost is 
10.1.500 Tools and Technologies General 182199 Application overridden in RMA
Plant Configuration Control ‐ "Failed to enable constraints" error appears when 
10.1.500 Tools and Technologies General 182441 Application searching for Site on a non‐Multi‐Site environment (Also fixed in 10.1.400.x)
Cross Application or other non menu related ‐ Queries to fix up unreferenced 
10.1.500 Tools and Technologies General 183039 Application parameters and instance members
10.1.500 Tools and Technologies General 183867 Application General ‐ Upgrade scripts to check information cleared out of ICPO related tables
Delete Row message is displayed on process screens when using the keyboard to 
10.1.500 Tools and Technologies General 184107 Application delete a row in the Filter tab
Session values are not stored/retrieved because of an incorrect use of string.Format 
10.1.500 Tools and Technologies General 184237 Application at Part and SalesOrder
Package Control PCID ‐ Verify that the code uses correct strings for references to 
LabelType, PkgControlStatus and LabelPrintControlStatus (MASTER, MIXED, 
10.1.500 Tools and Technologies General 184243 Application MIXEDMASTER, CONFIRM and CONFIRMED)
Server File Download ‐ Client stops working when trying to download from Server 
10.1.500 Tools and Technologies General 185057 Application File Download
Package Control PCID ‐ Verify that the code uses correct strings for references to 
LabelType, PkgControlStatus and LabelPrintControlStatus (MASTER, MIXED, 
10.1.500 Tools and Technologies General 185595 Application MIXEDMASTER, CONFIRM and CONFIRMED)
Company ‐ AP Invoice Dates Set Up fields default blank after migrating to 10.1.100 
10.1.500 Tools and Technologies General 186422 Application or above
10.1.500 Tools and Technologies General 186563 Tools ICE Build ‐ Add check for .net 4.6.1 to 10.1.500 installer
10.1.500 Tools and Technologies General 187736 Application SCM Related Menus ‐ Have a duplicated Security Code
10.1.500 Tools and Technologies General 189111 Application Script ‐ Fix MigratePatchFldBankTran.sql upgrade script

Page 110
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


10.1.500 Tools and Technologies General Framework 133676 Tools Menu/Customization ‐ Cannot drag and drop menu options
10.1.500 Tools and Technologies General Framework 133677 Tools Exception on Login, Change Plant, Change User
"Epicor is Offline" feature occasionally throws a GetRows exception and can cause 
10.1.500 Tools and Technologies General Framework 147816 Tools Epicor.exe to stop working
10.1.500 Tools and Technologies General Framework 149126 Tools EWA Framework ‐ Update does not happen when expected
Person ‐ Unexpected error message when inserting a duplicate ID through the List 
10.1.500 Tools and Technologies General Framework 151768 Tools sheet
Extended UD Table Maintenance ‐   When running Base UD01 & UD02 Menus and 
then selecting the List Grid, all UD fields are not listed; this gives the impression 
10.1.500 Tools and Technologies General Framework 153870 Tools these fields do not exist in the UD01 and UD02 tables
10.1.500 Tools and Technologies General Framework 159692 Tools Server Side error when changing bar panels options
Extended UD Table Maintenance ‐ Format for default value is ignored when the 
10.1.500 Tools and Technologies General Framework 161948 Tools record is created the first time
Search Framework ‐ Moving columns and adding filters Search Grid causes errors 
10.1.500 Tools and Technologies General Framework 163785 Tools when searching
ZFieldDecimal was removed from being a global cache item in the data layer (Also 
10.1.500 Tools and Technologies General Framework 166105 Tools fixed in 10.1.400.x)
10.1.500 Tools and Technologies General Framework 167443 Application When multiple payments are made, only the 1st line displays UD field data
10.1.500 Tools and Technologies General Framework 167781 Tools Search Framework ‐ Multiple issues on Named Search
10.1.500 Tools and Technologies General Framework 169616 Tools Format field is not saved on extended property maintenance
10.1.500 Tools and Technologies General Framework 169669 Tools Db.Current should be obsolete
Clear History button at the Preferences screen is not stylized as a regular ultra 
10.1.500 Tools and Technologies General Framework 170038 Tools button
Differences on displayed/hidden options between Shell and classic modes when 
10.1.500 Tools and Technologies General Framework 171359 Tools Single sign‐on is implemented
Epicor data is either not displayed correctly or can be edited in Extended Prop Maint 
10.1.500 Tools and Technologies General Framework 171363 Tools UI
10.1.500 Tools and Technologies General Framework 171470 Tools Extended UD Table Maintenance has cache issues
10.1.500 Tools and Technologies General Framework 171574 Tools Forms Customization/localization stops working if BASE currency does not exist
Search Framework ‐ Quick Search cannot handle a second search, QuickSearch 
10.1.500 Tools and Technologies General Framework 171998 Tools window closes
Once user's current company is deleted by manager, user is not able to login using 
10.1.500 Tools and Technologies General Framework 172258 Tools another valid company
Custom Field Map ‐ UDMapColumn table is not migrated from Epicor 9 to Epicor ERP 
10.1.500 Tools and Technologies General Framework 172389 Tools 10
Minor error in the BizRuleEngine"ValidateReferentialIntegrity error reporting" when 
ValidateReferentialIntegrity stops working; error contains the label of the latest field 
10.1.500 Tools and Technologies General Framework 172585 Tools in the column list  if this field has a label
10.1.500 Tools and Technologies General Framework 172623 Tools Translation of Main menu does not display (Also fixed in 10.1.400.x)

Page 111
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


10.1.500 Tools and Technologies General Framework 172732 Tools Search Framework ‐ Detail tab should be the first to be displayed on Named Search
UD Table Entry ‐ Extended UD Maintenance  "UserCharnn" naming pattern; add a 
10.1.500 Tools and Technologies General Framework 172779 Tools server side fix as well
10.1.500 Tools and Technologies General Framework 172948 Tools Incomplete exceptions display in the Client ExceptionBox
Credit card authentication module for ESDM 2.4 stops working as the web 
10.1.500 Tools and Technologies General Framework 173441 Tools components are not compatible with newer browsers
10.1.500 Tools and Technologies General Framework 173462 Tools Data model regen cannot be performed on CSG table ProcErrorInfo

10.1.500 Tools and Technologies General Framework 173610 Tools EpiControls ‐ Currency field format displayed as is if defined using lowercase (on SD)


10.1.500 Tools and Technologies General Framework 173828 Tools RelatedToSysRowID is missing in Memo Entry methods
10.1.500 Tools and Technologies General Framework 173975 Tools BAQCombo does not keep value when using dataset binding criteria
10.1.500 Tools and Technologies General Framework 174017 Tools User can connect automatically even if having no permission
F5 Switch cannot offload SSL processing from IIS; need a WCF extension to use the 
10.1.500 Tools and Technologies General Framework 174100 Tools F5 as intermediary
10.1.500 Tools and Technologies General Framework 174295 Tools Unit test running in the CI build do not load extensions correctly
ZDataTable service does not prevent changing the data type on an existing UD 
10.1.500 Tools and Technologies General Framework 174723 Tools column
10.1.500 Tools and Technologies General Framework 174873 Tools Context Menu ‐ Customer Context Menu error
10.1.500 Tools and Technologies General Framework 175024 Tools Conversion Workbench ‐ Pending tasks do not run if the CW form is closed
10.1.500 Tools and Technologies General Framework 175289 Tools Incorrect window size when removing item from  Preferences > Tabs
Quick Search filters are applied to the left‐outer join where clause instead of general 
10.1.500 Tools and Technologies General Framework 175448 Tools where clause
10.1.500 Tools and Technologies General Framework 175450 Tools ICE Diagnostics ‐ DataFix cannot be executed when run as process
10.1.500 Tools and Technologies General Framework 175456 Tools Core Framework Services ‐ Code cleanup in Operation Dispose
10.1.500 Tools and Technologies General Framework 175463 Tools User cannot query for a Company(EPIC06) to which he/she does not have access
10.1.500 Tools and Technologies General Framework 175799 Tools Changing company using a touch device on windows 8.1 causes an error
Using Tab in Sales Order > Lines tab > Grid does not work when the Ribbon layout is 
10.1.500 Tools and Technologies General Framework 175826 Tools used (Also fixed in 10.1.400.x)
Customer Entry form remains disabled if in developer mode, user opens Memo 
10.1.500 Tools and Technologies General Framework 175973 Tools Entry but cancels from Customization Dialog
Multi‐Company Server Process ‐ Cannot add new companies to existing start up 
schedule; instead it was necessary to create a new start up schedule and add the 
10.1.500 Tools and Technologies General Framework 176003 Application two companies to the new startup task (Also fixed in 10.1.400.x)
Payment Entry ‐ An error message is displayed when trying to select the Invoices 
10.1.500 Tools and Technologies General Framework 176149 Tools with the Option of Ribbon set to True (Also fixed in 10.1.400.x)
10.1.500 Tools and Technologies General Framework 176194 Tools Should enable typed access to Erp.Lib.GlobalStrings
10.1.500 Tools and Technologies General Framework 176242 Tools Incorrect message when mismatch version exists between server and DB
10.1.500 Tools and Technologies General Framework 176342 Tools Save Confirmation dialog can cause problems with Epicor closing
10.1.500 Tools and Technologies General Framework 176371 Tools Upgrade ‐ Upgrade to 10.1 must handle incorrect Company‐specific Security records

Page 112
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Change Workstation when screen open crashes application with "Collection was 
10.1.500 Tools and Technologies General Framework 176544 Tools modified; enumeration operation may not execute"

10.1.500 Tools and Technologies General Framework 176666 Tools Unable to regenerate DM including schema with valid table (Also fixed in 10.1.400.x)


Search Framework ‐ "Display member is required" error is displayed when clicking 
10.1.500 Tools and Technologies General Framework 176735 Tools new quick search value item (Also fixed in 10.1.400.x)
Core Framework Services ‐ LoaderExceptions should be thrown when extension 
10.1.500 Tools and Technologies General Framework 176815 Tools cannot be loaded
Core Framework Services ‐ Adding a where clause in BeforeGetRows makes GetByID 
10.1.500 Tools and Technologies General Framework 176818 Tools ignore the ID
Core Framework Services ‐ Account is unlocked when counter is restarted instead of 
10.1.500 Tools and Technologies General Framework 176881 Tools reaching Locked Out Until
10.1.500 Tools and Technologies General Framework 176939 Tools Core Framework Services ‐ Account still locked out when it should not be
Invoice Selection Discount disabled on invoice selection tab if number of Invoices is 
10.1.500 Tools and Technologies General Framework 177021 Tools high
Search Framework ‐ Quick Search returns all rows when using right click menu but 
10.1.500 Tools and Technologies General Framework 177079 Tools not when using search menu
Session Management ‐ Epicor.exe.config ChannelTimeToLive default should be 9 
10.1.500 Tools and Technologies General Framework 177192 Tools (Also fixed in 10.1.400.x)
ICE Search Framework ‐ Unable to create Quick Search using subquery display field 
10.1.500 Tools and Technologies General Framework 177206 Tools as criteria column
10.1.500 Tools and Technologies General Framework 177277 Tools Service Designer ‐ toolsSettings value is not saved to sysconfig file
10.1.500 Tools and Technologies General Framework 177517 Tools Search Framework ‐ Quick Search using Constant:Current User is not functional
IceColumn 'Character01' already exists in the collection error when creating an 
10.1.500 Tools and Technologies General Framework 177537 Tools Invoice group after app pool restart (Also fixed in 10.1.400.x)
10.1.500 Tools and Technologies General Framework 177603 Tools ICE Setup cannot be performed when SQL connection is set to trusted
10.1.500 Tools and Technologies General Framework 177693 Tools SaaS ‐ Performance issues in SaaS deployments (Also fixed in 10.1.400.x)
10.1.500 Tools and Technologies General Framework 177733 Tools Companies are not displayed according to the company where user is located
Search Framework ‐  Advanced Search Dashboard does not display on related Base 
10.1.500 Tools and Technologies General Framework 177856 Tools Search Advanced sheet
Core Framework Services ‐ Smart Client connection closed due to a server‐initiated 
10.1.500 Tools and Technologies General Framework 177931 Tools shutdown (Also fixed in 10.1.400.x)
10.1.500 Tools and Technologies General Framework 177961 Tools Search Framework ‐ Predictive searches do not work for calculated columns
10.1.500 Tools and Technologies General Framework 178084 Tools Translation of Main menu does not display (Also fixed in 10.1.400.x)
Creation of Ice.Core.Session in multithreaded environment sometimes does not 
10.1.500 Tools and Technologies General Framework 178123 Tools work (Also fixed in 10.1.400.x)
10.1.500 Tools and Technologies General Framework 178360 Tools BAQ zES_Customers.in not seeded into the current 10.1.400.1
10.1.500 Tools and Technologies General Framework 178410 Tools Search Framework ‐ Radio buttons are disabled on named search
10.1.500 Tools and Technologies General Framework 178881 Tools Query exceptions in data layer should capture more details

Page 113
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


10.1.500 Tools and Technologies General Framework 179013 Tools Timeout error when running method BO.SchemaSvc.GetFileList(String pcWhere)
10.1.500 Tools and Technologies General Framework 179183 Tools Output session is auto‐closed due to a server‐initiated shutdown error
10.1.500 Tools and Technologies General Framework 179487 Tools EpiControls ‐ EpiGLControl segment selection works incorrectly
Core Framework Services ‐ UpdateExt should allow overriding SysRevID column 
10.1.500 Tools and Technologies General Framework 179503 Tools value in tableset
10.1.500 Tools and Technologies General Framework 179528 Tools DB Mismatch produced an error
Application displays as using 32bit when classic mode is used even though the icon 
10.1.500 Tools and Technologies General Framework 179543 Tools uses the Epicor64.exe client
Should not change the Business Type when trying the format from Extended 
10.1.500 Tools and Technologies General Framework 179699 Tools Properties form for StartQuoteNum (Also fixed in 10.1.400.x)
10.1.500 Tools and Technologies General Framework 179706 Tools SysUserFile table has incorrect format string for WinX and WinY fields
10.1.500 Tools and Technologies General Framework 180303 Tools Incorrect message when NonSM user retrieves non‐existing user record
10.1.500 Tools and Technologies General Framework 180471 Tools NextValue.Set uses obsolete database context
10.1.500 Tools and Technologies General Framework 180609 Tools Web Forms ‐ Image cannot be uploaded using image service
10.1.500 Tools and Technologies General Framework 180637 Tools Errors related to Bindings
Enhance FileTransfer.DownLoad method need to include the report files from other 
10.1.500 Tools and Technologies General Framework 180672 Tools users
UD Fields do not display in BAQ results (Quick Searches) for fields sets as hidden by 
10.1.500 Tools and Technologies General Framework 180770 Tools default
EpiControls ‐ EpiUltraGrid does not change ActiveRow property if a new row is 
10.1.500 Tools and Technologies General Framework 180778 Tools added by pressing the Enter key
10.1.500 Tools and Technologies General Framework 180902 Tools Connection string should not be required when datasource is defined as "iScala"
10.1.500 Tools and Technologies General Framework 180933 Application EWA ‐ Server File Download is not usable in EWA

10.1.500 Tools and Technologies General Framework 181053 Tools Incorrect DB version returned prevents user from logging in (Also fixed in 10.1.400.x)


10.1.500 Tools and Technologies General Framework 181083 Tools Upgrade ‐ ProcessSet seed data does not clean up "blank company" records
Attachments ‐ Application error when adding a Part to the line "Must set Static Filter 
10.1.500 Tools and Technologies General Framework 181142 Tools before setting Parent/Child relations"
Extended UD Table Maintenance ‐ Error when selecting incorrect initial value for 
10.1.500 Tools and Technologies General Framework 181296 Tools boolean UD field
When appserver spins up and there is no Erp.Data.910100.dll and/or 
Ice.Data.Model.dll in the <website>\server\assemblies folder, it flushes the 
ice.assemblystore versions from the database as 
Ice.Data.Model.new/Erp.Data.910100.new ‐ it never renames them to .dll so the 
10.1.500 Tools and Technologies General Framework 181603 Tools appserver cannot start up properly 
10.1.500 Tools and Technologies General Framework 181621 Tools Removing global external BAQ causes Predictive search to stop working
10.1.500 Tools and Technologies General Framework 181793 Tools Caching ‐ Pending conversion are not run in 10.1.301.10
Conversion Workbench ‐ After running conversion UD10.1.301.10 the Status is 
10.1.500 Tools and Technologies General Framework 181843 Tools "RUN"

Page 114
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


10.1.500 Tools and Technologies General Framework 181919 Tools NullReferenceException on column security
10.1.500 Tools and Technologies General Framework 182055 Tools Missing bindings on *.sysconfig in the "EndpointBinding Value" tag
Cannot log into the client if the version ice.icever table has a row that has an 
10.1.500 Tools and Technologies General Framework 182105 Tools incorrect version value
Service Designer ‐ When there is a relation in a dataset that comes from string to 
10.1.500 Tools and Technologies General Framework 182182 Tools boolean, the SQLl query is not created correctly
10.1.500 Tools and Technologies General Framework 182251 Tools Service Designer ‐ UpdateExt generates incorrect GetNew calls for GLJournalEntry
Search Framework ‐ In E10.1 Job Entry, when a New Named Search is created for the 
Job Number field and the Search Type is set to BAQ Search, no BAQs are listed in the 
10.1.500 Tools and Technologies General Framework 182291 Tools drop‐down, even though the BAQ Tab of the Search Window displays BAQs
Add the ability to copy values out of the Help > About > System info settings in the 
10.1.500 Tools and Technologies General Framework 182699 Tools smart client
Conversion Workbench ‐ Ensure that conversions BPM0001 and BAQ001 are marked 
10.1.500 Tools and Technologies General Framework 182867 Tools to be run every Release and Update (Also fixed in 10.1.400.x)
10.1.500 Tools and Technologies General Framework 183004 Tools SSL‐based bindings do not work in .Net 4.6.1
10.1.500 Tools and Technologies General Framework 183180 Tools Dashboard/UBAQ for VendPart table Inserts record instead of Update
10.1.500 Tools and Technologies General Framework 183237 Tools Part Maintenance does not display the star indicator when it is using change log
EpiControls ‐ Undoing a Group By field results in the field to no longer be seen in the 
10.1.500 Tools and Technologies General Framework 183376 Tools Grid
PO UpdateExt BO issue where if fields are passed with a NULL, they are cached as 
that on the Client and Server. In that case they cannot be updated. (Also fixed in 
10.1.500 Tools and Technologies General Framework 183590 Tools 10.1.400.x)
10.1.500 Tools and Technologies General Framework 183671 Tools When the client starts up, the system should check that .Net 4.6.1 is installed
10.1.500 Tools and Technologies General Framework 183682 Tools Windows 10 and Surface Pro WinForms Oddity
10.1.500 Tools and Technologies General Framework 183800 Application Menu Options ‐ Golden Database has ‐c arguments deployed
Context Menu ‐ ContextMenu.xml is configured with an incorrect validation type for 
LaborHed.LaborHedSeq as StringGetByID and this causes issues with creating an FKV 
10.1.500 Tools and Technologies General Framework 183810 Tools for the Labor Adapter
Menu Options ‐ Suppress Connection Information for non‐GSM with Multi‐tenancy 
10.1.500 Tools and Technologies General Framework 184123 Application License ‐ Help About (Also fixed in 10.1.400.x)
10.1.500 Tools and Technologies General Framework 184688 Tools Extended UD Table Maintenance ‐ Cannot Add DateTime columns with initial values
10.1.500 Tools and Technologies General Framework 184847 Tools FormatCulture is not applied to Epicor client
10.1.500 Tools and Technologies General Framework 184979 Tools Add ability to add a custom version number
10.1.500 Tools and Technologies General Framework 185332 Tools Upgrade ‐ Database upgrade may stops working with odd error
10.1.500 Tools and Technologies General Framework 185738 Tools Ice.UI.InfoPromptForm display an error that it is not valid from MES
REST Framework ‐  Unable to use REST, No assembly found containing an 
10.1.500 Tools and Technologies General Framework 186836 Tools OwinStartupAttribute
10.1.500 Tools and Technologies General Framework 186843 Tools REST Framework ‐ Clients may cache responses for same url, different headers
10.1.500 Tools and Technologies General Framework 187064 Tools Error displayed when Reg DM the first time

Page 115
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


10.1.500 Tools and Technologies General Framework 187450 Tools Extended UD Table Maintenance ‐ Error displays when Bytes data type is selected
EpiControls ‐ Pasting a text at the end of a text field in an enabled grid overrides the 
10.1.500 Tools and Technologies General Framework 187662 Tools existing text
10.1.500 Tools and Technologies General Framework 188790 Tools Tenancy Security issues with ReportMonitor service
10.1.500 Tools and Technologies General Framework 188897 Tools Tenancy Security issues with SysMonitor service
Journal Entry ‐ UD table value is not generated in Journal Entry and is not displayed 
10.1.500 Tools and Technologies General Ledger 183630 Application in Chart Tracker
10.1.500 Tools and Technologies Help System 175614 Tools New zip need to be added for Help installation
Help installation does not reflect the changes in the Directory field (Also fixed in 
10.1.500 Tools and Technologies Help System 177142 Tools 10.1.400.x)
Missing dlls on bin folder after Reinstalling/Updating Help site (Also fixed in 
10.1.500 Tools and Technologies Help System 177338 Tools 10.1.400.x)
When users do not have access to certain menus, they can get to them through the 
10.1.500 Tools and Technologies Help System 177881 Tools Embedded Education module creating a backdoor
Help installer should wrap the setup of the index search in a try/catch; errors may 
10.1.500 Tools and Technologies Help System 178442 Tools occur
10.1.500 Tools and Technologies Help System 178753 Tools Help displays 500.19 html error with some installs (Also fixed in 10.1.400.x)
10.1.500 Tools and Technologies Help System 179846 Tools Help does not work if a user uses English UK language (Also fixed in 10.1.400.x)
10.1.500 Tools and Technologies Help System 179917 Tools Help opens on companies where it is not configured
User should get warning when installing Help on locations like Desktop where IIS has 
10.1.500 Tools and Technologies Help System 180177 Tools no access
10.1.500 Tools and Technologies Help System 182670 Tools Error saying Help is not setup when Help menu is clicked / Can't use Field Help
Include Changing Task Agent Purge Settings in the System Administration guide > 
10.1.500 Tools and Technologies Help System 183390 Tools System Tasks > Purge Database section of application help 
Include a new Printing Outages topic in the System Administration Guide for "All 
10.1.500 Tools and Technologies Help System 183392 Tools processes have a PENDING status in Active Tasks tab of the System Monitor"
10.1.500 Tools and Technologies Help System 184658 Tools Embedded Education UI ‐ Remove legacy Licensed and Unlicensed nodes
10.1.500 Tools and Technologies Help System 184885 Tools Help does not work in 10.1.500
Field Help works with English but does not work with Polish language (Also fixed in 
10.1.500 Tools and Technologies Help System 184904 Tools 10.1.400.x)
10.1.500 Tools and Technologies Help System 186154 Tools Need to perform web.config correction to avoid help error
10.1.500 Tools and Technologies Information Worker 145077 Application HD Case Links not imported into Office
10.1.500 Tools and Technologies Information Worker 148824 Application Customer & Ship‐To Contacts not imported into Outlook
10.1.500 Tools and Technologies Information Worker 162436 Application Word ‐ Unable to synchronize Contact address due maximum characters
10.1.500 Tools and Technologies Information Worker 162538 Application Word/Excel ‐ Contact Name not synchronized back to Epicor
10.1.500 Tools and Technologies Information Worker 162577 Application Salesperson from Appointments is not updated back into Epicor
10.1.500 Tools and Technologies Information Worker 162669 Application Outlook ‐ Explore related entities does not retrieve existing data
When trying to save a Call in CRM Call launched from Excel, the 'Key 1 is required' 
10.1.500 Tools and Technologies Information Worker 169343 Application error is displayed

Page 116
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


10.1.500 Tools and Technologies Information Worker 181089 Application OrigDCDUserID value is blank when the CRMCall record is created via IW
10.1.500 Tools and Technologies Information Worker 182404 Tools Error Syncing contacts in some office 2010 setups
Issue Material ‐ Serial number not available in job receipt to inventory with No 
10.1.500 Tools and Technologies Installation 183705 Application Lower Level Serial Tracking
Package Control ID Adhoc PCID ‐ Unable to enter more than two characters in the 
Warehouse field; the warehouse description is not recognized (Also fixed in 
10.1.500 Tools and Technologies Inventory Management 175023 Application 10.1.400.x)
10.1.500 Tools and Technologies Inventory Management 183570 Application Control ID Maintenance ‐ Paste Insert does not work in Control ID Maintenance
10.1.500 Tools and Technologies Job Management 174870 Tools Site (Plant) ‐ Able to save a site that has no ID
10.1.500 Tools and Technologies Job Management 176022 Application Plant Configuration ‐ The Time Zone selected does not set the correct time in MES
10.1.500 Tools and Technologies Job Management 177749 Tools MES Menu Framework ‐ Warning message is blank when entering invalid Shift ID
10.1.500 Tools and Technologies Job Management 179471 Application Planning Contract ‐ Add part description to the demand and supply tabs
Mattec Integration ‐ Multiple Errors when the export file is created if there are 
multiple sites using the mattec integration in the same company (Also fixed in 
10.1.500 Tools and Technologies Job Management 180258 Application 10.1.400.x)
Planning Contract ‐ An error is displayed when seeking a Planning Contract with a 
10.1.500 Tools and Technologies Job Management 181076 Application Part eliminated related
Job Entry ‐ When attachment is deleted using the Delete icon, the Delete 
10.1.500 Tools and Technologies Job Management 181931 Tools Confirmation dialog is not displayed
License Utility ‐ Add 'External Payroll Integration' module to ErpLicensableModules 
10.1.500 Tools and Technologies Licensing 184282 Tools so it is visible for application to use
10.1.500 Tools and Technologies Licensing 189189 Tools License Utility ‐ Extra <modules> node in template in AdmionLicense.exe tool
10.1.500 Tools and Technologies Licensing 189200 Tools License Utility ‐ Omitting /LogFile argument AdminLicense causes it to not work
Shell Menu ‐ Menu options are displayed in two columns even when there is a space 
10.1.500 Tools and Technologies Menus 160798 Tools on the UI to put everything in a single column
Shell Menu ‐ Favorites can be added to a group but they are not visible in shell menu 
10.1.500 Tools and Technologies Menus 165507 Tools after logging back in the client
Classic Menu ‐ Cannot see new Menus added on the Main Menu screen for Classic 
10.1.500 Tools and Technologies Menus 169681 Tools Style
10.1.500 Tools and Technologies Menus 172766 Tools MES Menu Framework ‐ "Invalid Image" error message
Shell Menu ‐ In Favorites Tile, when a form is erased, it still displays when collapsing 
10.1.500 Tools and Technologies Menus 173576 Tools and can be clicked to open but error appears
Shell Menu ‐ Unable to save favorite item to always run in the company where 
10.1.500 Tools and Technologies Menus 175751 Tools favItem created initially (Also fixed in 10.1.400.x)
Menu Maintenance ‐ Allows Productizations to be selected as Productization 
10.1.500 Tools and Technologies Menus 175842 Tools Extensions
Shell Menu ‐ Changing user with the button at the bottom bar using Tab throws and 
10.1.500 Tools and Technologies Menus 176409 Tools error

Page 117
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Menu Maintenance ‐ Detail tab should be the first to be displayed on Menu 
10.1.500 Tools and Technologies Menus 176648 Tools Maintenance
10.1.500 Tools and Technologies Menus 177742 Tools Menu Maintenance & Service Security ‐ User can modify System Security in tenancy
10.1.500 Tools and Technologies Menus 177760 Tools Menu Maintenance ‐ User is forced to enter "www." on a URL link
10.1.500 Tools and Technologies Menus 177950 Tools Shell Menu ‐ Unable to view Help from the modern shell when running Epicor64.exe
Shell Menu ‐ Touch does not work on Add To Favorites dialog when opened from 
10.1.500 Tools and Technologies Menus 178388 Tools Menu app
Shell Menu ‐ Add a New Tile drop‐down lists for Form and Company do not work in 
10.1.500 Tools and Technologies Menus 178423 Tools Modern Shell (Also fixed in 10.1.400.x)
10.1.500 Tools and Technologies Menus 179475 Tools Shell Menu ‐ Usability of Color Change Options
Shell Menu ‐ User without access to any standard menu items gets an index out of 
10.1.500 Tools and Technologies Menus 179701 Tools range error
Classic Menu ‐ After adding a favorite, "epicor.exe has stopped working" error 
10.1.500 Tools and Technologies Menus 179982 Tools occurs when logging in Classic style
10.1.500 Tools and Technologies Menus 180181 Tools Shell Menu ‐ BAQ Line Links are not Functional (Also fixed in 10.1.400.x)
Menu Maintenance ‐ Add Language Maintenance, Customization Maintenance and 
10.1.500 Tools and Technologies Menus 180901 Tools Context Menu links to ICE Extend
MES Menu Framework ‐ Need to add Erp.UI.PkgControlLib to the list of valid MES 
10.1.500 Tools and Technologies Menus 183754 Tools assemblies in RestrictedLicenseLib
10.1.500 Tools and Technologies Menus 185440 Tools Shell Menu ‐  Tile groups order on the Modern Menu is not  saved when rearranged
Shell Menu ‐ When changing language, Home page is not translated until you go 
10.1.500 Tools and Technologies Menus 187499 Tools back to English
Shell Menu ‐ In the Menu, Add to Favorites and Add to Home buttons do not appear 
10.1.500 Tools and Technologies Menus 188057 Tools when right click multiple times a form
10.1.500 Tools and Technologies Menus 189257 Tools Menu Maintenance ‐ Menu Performance Canvas Link type does not work
10.1.500 Tools and Technologies Menus 189420 Tools Shell Menu ‐ Unable to open forms
Part ‐ Global Parts Search Results grid displays records as Phantom BOM when they 
10.1.500 Tools and Technologies Open Active Planner 179508 Application are not marked as Phantom BOM
10.1.500 Tools and Technologies Order Management 173452 Application Part ‐ UD Field can be updated by two users at the same time
ConfigCheck ‐ Adjust free space of MDF to have text: "less than 25% free.  Please 
10.1.500 Tools and Technologies Performance/Diagnostics 175921 Tools increase so that more than 25% free space is available"

10.1.500 Tools and Technologies Performance/Diagnostics 176101 Tools ICE Perf Diag Tool ‐ G001 prime number test is not reporting FAIL as expected

10.1.500 Tools and Technologies Performance/Diagnostics 181699 Tools Epicor.ServiceModel.Trace.ClientTracing.UserTracer ‐ Thread safety issue

10.1.500 Tools and Technologies Performance/Diagnostics 181699 Tools Epicor.ServiceModel.Trace.ClientTracing.UserTracer ‐ Thread safety issue

10.1.500 Tools and Technologies Performance/Diagnostics 182648 Tools LoadtestWorkbench ‐ Support for new <executionTime/> node format

Page 118
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description

10.1.500 Tools and Technologies Performance/Diagnostics 183449 Tools Data Health / Fix scripts still runnable even when expired

10.1.500 Tools and Technologies Performance/Diagnostics 186161 Tools ICE Perf Diag Tool ‐ Missing Internal Methods on transformed file

10.1.500 Tools and Technologies Performance/Diagnostics 186348 Tools ICE Perf Diag Tool ‐ Error while trying to export an excel file from


ICE Perf Diag Tool ‐ Log Capture Scripts to run are not displayed immediately after a 
10.1.500 Tools and Technologies Performance/Diagnostics 187176 Tools new server is added

10.1.500 Tools and Technologies Performance/Diagnostics 187489 Tools ICE Perf Diag Tool ‐ Log Capture Plugin ‐ Error when launching


Task Agent Service ‐ Correct exception details should be reported (Also fixed in 
10.1.500 Tools and Technologies Process Management 169008 Tools 10.1.400.x)
System Monitor ‐ After changing Company, Reports cannot be printed unless System 
10.1.500 Tools and Technologies Process Management 173897 Tools Monitor is closed and opened
Task Agent Service ‐ Cannot delete others server task agent from the Task Agent 
10.1.500 Tools and Technologies Process Management 175332 Tools Configurator
10.1.500 Tools and Technologies Process Management 176188 Tools Task Agent Service ‐ Possible to get a timeout exception when purging old records
Task Agent Service ‐ SaaS environment 10.1.301.3 restarts processes after several 
10.1.500 Tools and Technologies Process Management 176753 Tools hours of running
System Monitor ‐ The Print and Print Preview buttons are disabled (Also fixed in 
10.1.500 Tools and Technologies Process Management 176922 Tools 10.1.400.x)
Security Group ‐ Multi‐Tenant with Multi Company Users can only have Security 
10.1.500 Tools and Technologies Process Management 177016 Tools Group from one company (Also fixed in 10.1.400.x)
Task Agent Service ‐ Frequent deadlocks when running multiple task agents against 
10.1.500 Tools and Technologies Process Management 177464 Tools the same database (Also fixed in 10.1.400.x)
System Monitor ‐ The System Monitor does not respond for Crystal reports (Also 
10.1.500 Tools and Technologies Process Management 178329 Tools fixed in 10.1.400.x)
10.1.500 Tools and Technologies Process Management 178677 Tools System Monitor ‐ User Description does not display value for process set
10.1.500 Tools and Technologies Process Management 178992 Tools Task Agent Service ‐ Specific task/report function does not work
System Agent ‐ The Schedules available on the program drop‐down selection should 
10.1.500 Tools and Technologies Process Management 178993 Tools be saved when added to System Agent
System Agent ‐  "Invalid username or password" error when  configuring System 
10.1.500 Tools and Technologies Process Management 179077 Tools Agent Task Agent rules with a Windows endpoint binding appserver
Task Agent Service ‐ Specific task/report function does not work if a user group is 
10.1.500 Tools and Technologies Process Management 179146 Tools specified
System Agent ‐ On Task Agent Rules form, DNS Identity field is disabled when 
10.1.500 Tools and Technologies Process Management 179152 Tools selecting the UsernameSslChannel binding
Task Agent Service ‐ DNS Endpoint Identity field is not wiped out when being 
10.1.500 Tools and Technologies Process Management 181714 Tools changed to a non‐SSL binding

Page 119
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


10.1.500 Tools and Technologies Process Management 181716 Tools System Agent ‐ Set Purge Frequency is only enabled when Task Agent Rule is opened
Task Agent Service ‐ Task agent stops working in SaaS Pilot environments (Also fixed 
10.1.500 Tools and Technologies Process Management 181949 Tools in 10.1.400.x)
Process Set Maintenance ‐ The zScheduleLoadGraph process set does not contain 
any tasks (because of this, the Resource Schedule Load Graph is not triggering and 
10.1.500 Tools and Technologies Process Management 182591 Tools displays empty columns)
10.1.500 Tools and Technologies Process Management 184027 Tools Process Set Maintenance ‐ Unexpected Add New Confirmation window displays
Process Set Maintenance ‐ Unable to save a report to a process set for a specific 
10.1.500 Tools and Technologies Process Management 184566 Tools company (Also fixed in 10.1.400.x)
Task Agent Service ‐ Ice.Services.Lib.RunTask::RunSystemTask should include stack 
10.1.500 Tools and Technologies Process Management 184602 Tools trace in the message that is logged for unexpected errors
System Agent ‐ Scheduled MRP Process does not run according to schedule 
10.1.500 Tools and Technologies Process Management 184933 Tools configured by user
Project Entry ‐ "Object reference" message displays when updating the Parent of a 
10.1.500 Tools and Technologies Project Management 172290 Application Phase
10.1.500 Tools and Technologies Reports Framework 154234 Tools SSRS Reports in Landscape are printed in Portrait (Also fixed in 10.1.400.x)
Report Data Definition ‐ UD column disappears from the Field Name list in Report 
10.1.500 Tools and Technologies Reports Framework 165476 Tools Table > Criteria sheet
PRINT if you press clear on any print screen, it does not reset the Output Format 
10.1.500 Tools and Technologies Reports Framework 172305 Tools drop‐down on the front end, but does in the dataset
Report Style ‐ When a report style is copied, the Printers and Routing Rules should 
10.1.500 Tools and Technologies Reports Framework 172893 Tools also be copied
10.1.500 Tools and Technologies Reports Framework 172921 Tools Report Style ‐ Using Recent Items under File Menu loads all the Reports
Report Style ‐ In Multi‐Tenant, a non‐GSM should not be able to modify the Base 
10.1.500 Tools and Technologies Reports Framework 172926 Tools Style
Report Style ‐ EDI Outbound as Plain Text exports accentuated characters as 
10.1.500 Tools and Technologies Reports Framework 172990 Tools question marks
10.1.500 Tools and Technologies Reports Framework 173019 Tools Report Data Definition ‐ Format is not set automatically when changing data type
If the Report Style references a Baseline Report, an option to disable the Sync 
10.1.500 Tools and Technologies Reports Framework 173127 Tools Button should be provided
10.1.500 Tools and Technologies Reports Framework 173554 Tools Report Data Definition ‐Validate format for calculated fields
Report Data Definition ‐ Cannot add ERP.Company table to RDD (Also fixed in 
10.1.500 Tools and Technologies Reports Framework 174255 Tools 10.1.400.x)
10.1.500 Tools and Technologies Reports Framework 174634 Tools Report Style ‐ New menu button still functions if Print Routing license is not enabled
Report Style ‐ Report Style Copy dialog does not display text in edit mode for non‐
10.1.500 Tools and Technologies Reports Framework 174658 Tools default themes
10.1.500 Tools and Technologies Reports Framework 175584 Tools Menu Security Report needs to be updated (Crystal rpt)
Report Style ‐ Download SSRS Report and Upload SSRS report should be disabled 
10.1.500 Tools and Technologies Reports Framework 175776 Tools when selecting a Crystal Style

Page 120
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


10.1.500 Tools and Technologies Reports Framework 175777 Tools Remove code that sets the Margins in the PageSettings from the client
10.1.500 Tools and Technologies Reports Framework 175779 Tools Remove code that uses user‐defined margins
Report Style ‐ Provide an Upgrade which removes the Margins from the serialized 
10.1.500 Tools and Technologies Reports Framework 175784 Tools Breaking/Routing rule in 500
Printing direct PDF SSRS Reports from Epicor to a printer produces huge size files 
10.1.500 Tools and Technologies Reports Framework 175833 Tools (compared to printing from a print preview window)
10.1.500 Tools and Technologies Reports Framework 176125 Tools Breaking/Routing rule designer does not display persisted Client Printer settings
Report Style ‐ Report Style Maintenance "Sync Dataset" operation on a new Packing 
10.1.500 Tools and Technologies Reports Framework 176164 Application Slip style results in error (Also fixed in 10.1.400.x)
Report Style ‐ Error during Sync Dataset "The dataset ‘CustomerBillTo’ refers to the 
10.1.500 Tools and Technologies Reports Framework 176317 Tools data source “dsPackSlip”, which does not exist"
10.1.500 Tools and Technologies Reports Framework 176419 Tools Printing EMF  causes System error that occurs in System Monitor
10.1.500 Tools and Technologies Reports Framework 177042 Tools Report Data Definition ‐ Add export and import capability
Report Data Definition ‐ Link tables do not support UD fields (Also fixed in 
10.1.500 Tools and Technologies Reports Framework 177772 Tools 10.1.400.x)
10.1.500 Tools and Technologies Reports Framework 178056 Tools Report Data Definition ‐ Child Field Name drop‐down displays duplicate field names
Modified Report Data Definition (RDD) does not display UD fields for added tables 
10.1.500 Tools and Technologies Reports Framework 178140 Tools until saving and re‐entering the RDD
Crystal reports does not display correct UIs when selecting print and the parameters 
10.1.500 Tools and Technologies Reports Framework 178199 Tools are ignored
10.1.500 Tools and Technologies Reports Framework 178396 Tools BAQ Reports  Dynamic Dates do not flow into Crystal report heading 
10.1.500 Tools and Technologies Reports Framework 179312 Tools Report Style ‐ SyncDataset does not exclude excluded UD fields
Report Data Definition ‐ Incorrect message when user loads an RDD that exists on 
10.1.500 Tools and Technologies Reports Framework 179682 Tools other tenant
10.1.500 Tools and Technologies Reports Framework 179893 Tools Report Style ‐ Error when clicking the Sync Dataset button
10.1.500 Tools and Technologies Reports Framework 180816 Tools SSRS report files can be written anywhere
10.1.500 Tools and Technologies Reports Framework 181104 Tools Index ‐1 error occurs twice when Payment Entry > Process Payment is selected
Report Style ‐ In Style Maintenance when  Dataset is synchronized, it does not 
10.1.500 Tools and Technologies Reports Framework 181345 Tools include the linked table fields in the SSRS report dataset
Report Style ‐ Spelling error in the Sync Dataset functionality in E10.1.400.2  "SSRS 
10.1.500 Tools and Technologies Reports Framework 181377 Tools report is synchronized(sic) with report data definition"
10.1.500 Tools and Technologies Reports Framework 181474 Tools Print Routing can be configured but cannot be selected for AP Payment form
Report Data Definition ‐ ImportReport unable to import a 10.0 RDD that includes a 
Criteria in the definition; "This property cannot be set to a null value" error displays  
10.1.500 Tools and Technologies Reports Framework 181498 Tools (Also fixed in 10.1.400.x)
10.1.500 Tools and Technologies Reports Framework 182138 Tools Crystal Reports do not work with back slashes in path
10.1.500 Tools and Technologies Reports Framework 182139 Tools Crystal BAQ Reports for multi‐tenant cannot be run
10.1.500 Tools and Technologies Reports Framework 182710 Tools Allow Bartender files to overwrite existing files

Page 121
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


SSRS Packing Slip Report ‐ Report Data sync issue when SaleTaxReport copied and 
only the Percent field in included.  or when Pack skip is copied and synced without 
10.1.500 Tools and Technologies Reports Framework 182896 Application any changes.
10.1.500 Tools and Technologies Reports Framework 184315 Tools Generate EDI Definition button should be disabled when XML File option is selected
10.1.500 Tools and Technologies Reports Framework 184441 Tools Generate EDI Definition should only be available for GSM in multi‐tenant
Users should be able to create Forms and Reports in SSRS with parameters that can 
10.1.500 Tools and Technologies Reports Framework 184908 Tools be chosen before showing the actual document
10.1.500 Tools and Technologies Reports Framework 185673 Tools Report Style ‐ Remove UI RptStyleExtEntry.dll
10.1.500 Tools and Technologies Reports Framework 187338 Tools Auto Print ‐ Exception when opening Client Printer dialog on Auto Print
Orderby requires to use DB.ColumnName and select parameter requires Name of 
10.1.500 Tools and Technologies REST Framework 185183 Tools the column that displays the service
ICE SDK and Dev Utilities ‐ FxCop rule to validate EpiGuid is a valid guid should be 
10.1.500 Tools and Technologies SDK 171183 Tools eliminated
10.1.500 Tools and Technologies SDK 177791 Tools ICE SDK and Dev Utilities ‐ Unhandled exception on ICE application generator
ICE SDK and Dev Utilities ‐ GenApp tool has misspelling: "Vale" is displayed instead of 
10.1.500 Tools and Technologies SDK 178409 Tools "Value" on error message
10.1.500 Tools and Technologies SDK 179171 Tools ICE SDK and Dev Utilities ‐ Issues in Client UIRpt template
10.1.500 Tools and Technologies SDK 181080 Tools ICE SDK and Dev Utilities ‐ ICE Explorer 2015 requires Visual Studio 2012/2013
ICE SDK and Dev Utilities ‐ Get Latest ZData cannot be executed if it does not exist in 
10.1.500 Tools and Technologies SDK 181158 Tools source control
10.1.500 Tools and Technologies SDK 181363 Tools ICE SDK and Dev Utilities ‐ ICE Explorer cannot reliably select item in a tree
ICE SDK and Dev Utilities ‐ Support Get Latest and Collect actions from top level 
10.1.500 Tools and Technologies SDK 181802 Tools ZData nodes in ICE Explorer
BL Tester ‐ Error when instantiating input parameter controls for DateTime? type 
10.1.500 Tools and Technologies SDK 182646 Tools parameters
10.1.500 Tools and Technologies SDK 183757 Tools ICE SDK and Dev Utilities ‐ cannot enter negative values in decimal parameters
ICE SDK and Dev Utilities ‐ ICE Explorer should use database connection information 
10.1.500 Tools and Technologies SDK 183758 Tools from web.config
10.1.500 Tools and Technologies Security Framework 171396 Tools Security Report ‐ No tenancy isolation on Users/Groups Report 
Process Security ‐ Process Security function configuration on "DeleteByID in bo.PO" 
10.1.500 Tools and Technologies Security Framework 171972 Tools does not transfer down to all configurations
Process Security ‐  UI does not display Allow/Disallow Access selections when trying 
10.1.500 Tools and Technologies Security Framework 172098 Tools to reload just added new method
Setting Default Access to READ does not affect the UI when it was previously set to 
10.1.500 Tools and Technologies Security Framework 172105 Tools NONE
Menu Security Report ‐ Security groups are not displayed if multi‐tenancy license  is 
10.1.500 Tools and Technologies Security Framework 172384 Tools installed in Company
Field Security ‐ All Companies check box is not saved when it is the only object 
10.1.500 Tools and Technologies Security Framework 172734 Tools updated

Page 122
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Field Security ‐ Explicity user access does not take effect when user is part of a group 
10.1.500 Tools and Technologies Security Framework 172812 Tools and it has explicity access type
SecurityFramework ‐ It should not be possible to make a non‐GSM user to be a part 
10.1.500 Tools and Technologies Security Framework 172830 Tools of more than one tenant
It should not be possible to assign a Multi‐Tenant (MT) license on an environment 
10.1.500 Tools and Technologies Security Framework 172832 Tools that is not a MT, making normal users x‐tenants
Modern Menu users who do not have 'Allow Multiple Sessions' assigned, do not get 
10.1.500 Tools and Technologies Security Framework 172844 Tools the company specific menu listings when moving between companies
10.1.500 Tools and Technologies Security Framework 173354 Tools User Security ‐ Password Policy exception for GSM in tenancy
Process Security ‐ Change form name"Process security maintenance" to "Service 
10.1.500 Tools and Technologies Security Framework 173442 Tools Security"
Process Security ‐ Blocking access to bo.Tip process throws incorrect application 
10.1.500 Tools and Technologies Security Framework 173448 Tools error instead of "Access denied (BO.Tip)"
10.1.500 Tools and Technologies Security Framework 173843 Tools Process Security ‐ Method name list displays only ERP methods
Menu Security Report ‐ Unable to generate report when radio button is selected and 
10.1.500 Tools and Technologies Security Framework 174370 Tools having Sec Managers check box is cleared
Menu Security Report ‐ Current company security items for global menu items do 
10.1.500 Tools and Technologies Security Framework 174617 Tools not display in report
User ‐ Company can be added manually to authorized company list outside the 
10.1.500 Tools and Technologies Security Framework 174688 Tools tenancy
Field Security ‐ When a user is granted with explicit access, and the group he or she 
10.1.500 Tools and Technologies Security Framework 175749 Tools is a part of does not have this access, user explicit access is denied
10.1.500 Tools and Technologies Security Framework 176224 Tools Menu Security Report ‐ When report is empty the count is <> than 0
10.1.500 Tools and Technologies Security Framework 176498 Tools Security Service ‐ Proper handling of SystemFlag and SysRowId should be confirmed
Object Security Service ‐ Proper handling of SystemFlag and SysRowId should be 
10.1.500 Tools and Technologies Security Framework 176501 Tools confirmed
10.1.500 Tools and Technologies Security Framework 179748 Tools NonSM users can delete record from sys.userfile table
10.1.500 Tools and Technologies Security Framework 180007 Tools NonSM users can remove assigned companies
10.1.500 Tools and Technologies Security Framework 185019 Tools SM/GSM can see and delete companies that they do have access to
10.1.500 Tools and Technologies Social Enterprise 142920 Tools Data Notifications ‐ Deleting a notification source does not delete related icons
Resolve web browser control issues for Epicor Social Enterprise embedded in Epicor 
10.1.500 Tools and Technologies Social Enterprise 159592 Tools ERP 10
Switch over Epicor Social Enterprise to use Epicor ERP 10 Token for security 
10.1.500 Tools and Technologies Social Enterprise 164117 Tools identification
10.1.500 Tools and Technologies Social Enterprise 166407 Tools Add a pin column icon to collapsed columns in the my columns column
Data Notifications ‐ Creating a Notification Source with a " . " does not function 
10.1.500 Tools and Technologies Social Enterprise 167253 Tools when creating a BPM
10.1.500 Tools and Technologies Social Enterprise 168063 Tools Links in Social Tile are not opened when clicked

Page 123
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Data Notifications ‐ When a Notification Source is inactive, a user can enter and use 
10.1.500 Tools and Technologies Social Enterprise 168145 Tools Social without issues on ERP Modern Shell
10.1.500 Tools and Technologies Social Enterprise 168909 Tools All links are opened in the same window
10.1.500 Tools and Technologies Social Enterprise 168911 Tools Notes on image links are not updated after a link replacement
Epicor Social Enterprise should not display the database name or login in error 
10.1.500 Tools and Technologies Social Enterprise 169113 Tools messages
Medium formatting controls display but to do actually format text in Internet 
10.1.500 Tools and Technologies Social Enterprise 170627 Tools Explorer
10.1.500 Tools and Technologies Social Enterprise 170860 Tools Send Private Message on Notification Center page does not work
10.1.500 Tools and Technologies Social Enterprise 171027 Tools Social tile is not updated when changing companies
Labels for attachment, image and link do not display when the message is in editing 
10.1.500 Tools and Technologies Social Enterprise 171074 Tools mode
10.1.500 Tools and Technologies Social Enterprise 173662 Tools Notification Messages in modern shell do not display message contents
Application Server URL Valid/ Error legend needs to be more aligned to center 
10.1.500 Tools and Technologies Social Enterprise 173852 Tools instead of to the left
10.1.500 Tools and Technologies Social Enterprise 175341 Tools Data Notifications ‐ Update the Register Notification Source section in Online Help
10.1.500 Tools and Technologies Social Enterprise 175446 Tools Links on post message do not work properly
Creating a Notification Rule (named with numbers) does not work, even when the 
10.1.500 Tools and Technologies Social Enterprise 175659 Tools user has a premium license for Epicor Social Enterprise
Profile ‐ Auto creation of Epicor Social Enterprise profile from Epicor ERP 10 does not 
10.1.500 Tools and Technologies Social Enterprise 175956 Tools work when using Windows endpoint binding (Also fixed in 10.1.400.x)
Cannot open replies for a conversation as a single message column by clicking on the 
10.1.500 Tools and Technologies Social Enterprise 175976 Tools time ago link
10.1.500 Tools and Technologies Social Enterprise 176154 Tools Deployment Name should be non‐editable
Uninstall process does not work, need to run it two times to uninstall Epicor Social 
10.1.500 Tools and Technologies Social Enterprise 176161 Tools Enterprise
10.1.500 Tools and Technologies Social Enterprise 176462 Tools Testing of Activity Streams in general and an UWP in particular
Rule ‐ Exporting a rule does not work in Internet Explorer, Edge (v13+) (Also fixed in 
10.1.500 Tools and Technologies Social Enterprise 177490 Tools 10.1.400.x)
Installing Epicor Social Enterprise on a different DB instead of the ActivityStreams 
10.1.500 Tools and Technologies Social Enterprise 177627 Tools default, multi‐tenant configuration setting are not applied
10.1.500 Tools and Technologies Social Enterprise 177777 Tools Fix part of Epicor ERP 10 integration (Also fixed in 10.1.400.x)
10.1.500 Tools and Technologies Social Enterprise 177826 Tools Exporting a notification rule disconnects Signal R connection in Firefox
When viewing a message attachment in UWP, it is opened in a separate browser 
10.1.500 Tools and Technologies Social Enterprise 177928 Tools window with error 500 
On the invite users dialog, when open it once, and cancel to close it, then reopen it 
and click on the access level, the form automatically closes and none of the buttons 
10.1.500 Tools and Technologies Social Enterprise 178320 Tools or links in Epicor Social work
10.1.500 Tools and Technologies Social Enterprise 178429 Tools Social UWP application stops working on Lumia 635

Page 124
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


10.1.500 Tools and Technologies Social Enterprise 178430 Tools Errors when using cortana commands in UWP application
10.1.500 Tools and Technologies Social Enterprise 178790 Tools Link to standalone page on private messages does not work
10.1.500 Tools and Technologies Social Enterprise 179180 Tools Help is not updated as part of nightly builds
10.1.500 Tools and Technologies Social Enterprise 179181 Tools Support needs a document explaining how to work with tracing
10.1.500 Tools and Technologies Social Enterprise 179588 Tools Error from Epicor Social when changing companies in menu list of modern shell
10.1.500 Tools and Technologies Social Enterprise 179789 Tools Social sheet is not updated when changing companies on classic style
Social Icons on forms in Epicor ERP 10 display in too many places, should only 
10.1.500 Tools and Technologies Social Enterprise 179852 Tools display on formal detail forms
10.1.500 Tools and Technologies Social Enterprise 179856 Tools Follow form in Epicor ERP 10 integration is not resized correctly
10.1.500 Tools and Technologies Social Enterprise 180078 Tools Selection of links auto‐inserted by medium editor does not work correctly
Need to update cortana commands documentation based on changes to voice 
10.1.500 Tools and Technologies Social Enterprise 180230 Tools commands
Activity Streams ‐After creating a Notification Source, the back button redirects you 
10.1.500 Tools and Technologies Social Enterprise 180297 Tools to the same form
Rapidly closing multiple columns can cause errors or get columns assigned the 
10.1.500 Tools and Technologies Social Enterprise 180550 Tools incorrect IDs
When adding a notification column on my stream, the buttons do not fit on the 
10.1.500 Tools and Technologies Social Enterprise 180582 Tools screen
Forms with Save/Cancel buttons need to be fixed for the browser Back button to go 
10.1.500 Tools and Technologies Social Enterprise 180811 Tools through history correctly
10.1.500 Tools and Technologies Social Enterprise 180821 Tools SQL exceptions when indexing messages (Also fixed in 10.1.400.x)
Windows Authentication does not work when Epicor ERP 10 connects to Epicor 
10.1.500 Tools and Technologies Social Enterprise 181054 Tools Social Enterprise with Windows binding (Also fixed in 10.1.400.x)

10.1.500 Tools and Technologies Social Enterprise 181269 Tools Data Notifications ‐ Investigate and fix any issues related to BPM directive upgrades


10.1.500 Tools and Technologies Social Enterprise 181590 Tools Install/Deployment should validate user/password
10.1.500 Tools and Technologies Social Enterprise 182012 Tools Groups and notification columns do not get messages pushed in real time
10.1.500 Tools and Technologies Social Enterprise 182013 Tools Logout method in user profile sends out two sets of cookies
10.1.500 Tools and Technologies Social Enterprise 182017 Tools Editing a message with context duplicates the context header
10.1.500 Tools and Technologies Social Enterprise 182021 Tools Mentions after a new line character do not work in message post
10.1.500 Tools and Technologies Social Enterprise 182023 Tools Mentions at the beginning of a line are not auto linked

10.1.500 Tools and Technologies Social Enterprise 182056 Tools Update profiles action on Notification Source takes user back to Administration page


10.1.500 Tools and Technologies Social Enterprise 182065 Tools Actions on Notification Sources should not be able to be run simultaneously
Eight cortana commands are removed from application, need to be removed from 
10.1.500 Tools and Technologies Social Enterprise 182268 Tools documentation
10.1.500 Tools and Technologies Social Enterprise 182375 Tools Modifying the URL on Company Maintenance causes error 401
10.1.500 Tools and Technologies Social Enterprise 182446 Tools Test latest Round of UWP fixes based on QED testing from Microsoft
10.1.500 Tools and Technologies Social Enterprise 182495 Tools Using @mention in message causes all other markdown to be lost
10.1.500 Tools and Technologies Social Enterprise 182612 Tools Error trying to enable External BAQ  generated from social validations

Page 125
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


10.1.500 Tools and Technologies Social Enterprise 182653 Tools Need to check all forms, review for ability to scroll down and click buttons
10.1.500 Tools and Technologies Social Enterprise 182668 Tools Four ellipses display over UI when they should not in UWP
10.1.500 Tools and Technologies Social Enterprise 182893 Tools Need a note explaining the purpose of SMTP email address field
10.1.500 Tools and Technologies Social Enterprise 183524 Tools Epicor Social should not be hard coded in the path to Signal R hub
10.1.500 Tools and Technologies Social Enterprise 183763 Tools Error when updating database to 10.1.400.x with two or more notification sources
Forgot Password displays an error message even when a valid SMTP account is 
10.1.500 Tools and Technologies Social Enterprise 183785 Tools available
Forgot Password link looks disabled but still works in Internet Explorer, Edge when 
10.1.500 Tools and Technologies Social Enterprise 183797 Tools selecting an ERP Source
Files, text, and page elements can be dragged and dropped even when user is not 
10.1.500 Tools and Technologies Social Enterprise 183802 Tools logged in
10.1.500 Tools and Technologies Social Enterprise 183876 Tools Daily digest is not sent after the first time
10.1.500 Tools and Technologies Social Enterprise 183948 Tools Inactive users should not receive mail alerts or daily digest
10.1.500 Tools and Technologies Social Enterprise 184019 Tools Home button is missing on Create Notification Source page 
10.1.500 Tools and Technologies Social Enterprise 184020 Tools Notification Source help needs to be updated
10.1.500 Tools and Technologies Social Enterprise 184021 Tools Forgot password/set password token does not work when token has /
Activity Streams ‐In Multi‐Tenant environment, refreshing as global admin 
10.1.500 Tools and Technologies Social Enterprise 184175 Tools incorrectly returns user to main page
In Multi‐Tenant environment, admin should not configure Mail Server options or 
10.1.500 Tools and Technologies Social Enterprise 184177 Tools Epicor Social Website URL
10.1.500 Tools and Technologies Social Enterprise 184184 Tools Need to divide the Epicor Social Website URL into 2 values
10.1.500 Tools and Technologies Social Enterprise 184205 Tools IsPremiumCheck needs to be tenancy aware
10.1.500 Tools and Technologies Social Enterprise 184208 Tools 404 error when Server Source ID is blank
10.1.500 Tools and Technologies Social Enterprise 184219 Tools Notifications sheet on User Profile does not refresh when unfollowing  the last rule
10.1.500 Tools and Technologies Social Enterprise 184224 Tools Epicor ERP 10 user without email address cannot be auto‐created in Epicor Social
Data Notifications ‐ Database upgrade does not function if there are related tables 
10.1.500 Tools and Technologies Social Enterprise 184455 Tools defined in notification profile (Also fixed in 10.1.400.x)
10.1.500 Tools and Technologies Social Enterprise 184607 Tools Https bindings do not require the DNS Identity
10.1.500 Tools and Technologies Social Enterprise 186639 Tools Does not dispose of UserFileImpl leads to memory pressure on social website
In mulit tenant configuration, MessageQueueProcessor calls methods that wind up 
10.1.500 Tools and Technologies Social Enterprise 187017 Tools with wrong tenantid
10.1.500 Tools and Technologies Social Enterprise 187318 Tools Cannot deploy or upgrade existing Social installation in 10.1.500
Data Notifications ‐ Preprocessing message directives do not work since notifications 
10.1.500 Tools and Technologies Social Enterprise 188571 Tools are only generated if the primary table has rows in it
10.1.500 Tools and Technologies Social Enterprise 189278 Tools Follow me Action under E10 does not work properly
10.1.500 Tools and Technologies Solution Workbench 161512 Tools Add the ability to track the Menu element
10.1.500 Tools and Technologies Solution Workbench 164539 Tools Solution Install accepts NULL and then an error occurs
10.1.500 Tools and Technologies Solution Workbench 167654 Tools Unhandled exception when right‐clicking on Advanced Element Search window
10.1.500 Tools and Technologies Solution Workbench 170229 Tools "Starts At" for Solution search does not filter results
10.1.500 Tools and Technologies Solution Workbench 170514 Tools Report Table Criteria (RptWhereItem) is not imported with modified ARForm

Page 126
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


QuickSearch is not  imported successfully when the record already exists in the 
10.1.500 Tools and Technologies Solution Workbench 172122 Tools database
Dashboards without global BAQs can be installed as "All Companies" through a 
10.1.500 Tools and Technologies Solution Workbench 174139 Tools solution
Solution Workbench allows user to create a Solution with a Description that is 
10.1.500 Tools and Technologies Solution Workbench 175221 Tools greater than 29 characters which causes an error and the solution is not saved
10.1.500 Tools and Technologies Solution Workbench 176874 Tools User can type anything on Solution Type but all changes are lost when saving
Unable to process import for 'DynamicReport' when importing BAQ Reports (Also 
10.1.500 Tools and Technologies Solution Workbench 177272 Tools fixed in 10.1.400.x)
10.1.500 Tools and Technologies Solution Workbench 177512 Tools Import Error related to decimal character choice (Also fixed in 10.1.400.x)
When a Solution Workbench.cab file containing a Process Task is installed, the 
following error is received: "The assembly 'Ice.Adapters.ProcessTask.dll' could not be 
10.1.500 Tools and Technologies Solution Workbench 179160 Tools found"
10.1.500 Tools and Technologies Solution Workbench 179610 Tools Cannot import BAQReport because it is associated with another report
Import of menu from 10.0 stops working with error: "This property cannot be set to 
10.1.500 Tools and Technologies Solution Workbench 182088 Tools a null value"
10.1.500 Tools and Technologies Solution Workbench 188663 Tools Add a Report Style then a Report Data Definition in a solution displays an error
10.1.500 Tools and Technologies Solution Workbench 188883 Tools Cannot add a dashboard set for CGC Code to a Solution
10.1.500 Tools and Technologies Tax Connect 177104 Application Tax Connect ‐ Unable to calculate taxes for more than 5,000 lines
10.1.500 Tools and Technologies Themes 137181 Tools Decimal point is not visible on a disabled text box using the default theme
Themes management in Preferences must not ignore the “Can Maintain Themes” 
10.1.500 Tools and Technologies Themes 166255 Tools option
Group bar when collapsed is not highlighted when clicked upon; this works when 
10.1.500 Tools and Technologies Themes 182671 Tools themes are disabled
Database Migration ‐ Some FIN tables look different when migrating from 905 to 
10.1.500 Tools and Technologies Tools 189017 Tools 700.4 to 500 in comparison with 905 to 500 directly
10.1.500 Tools and Technologies Translation 170532 Tools Language is not updated when is selected from Change Current Language
Translation ‐ Either negative or above rows count message is displayed after record 
10.1.500 Tools and Technologies Translation 179371 Tools is saved
10.1.500 Tools and Technologies Web Access 140033 Tools Check Digit Usage is empty via EWA
10.1.500 Tools and Technologies Web Access 140390 Tools Context Menu entries without a MenuID do not work
10.1.500 Tools and Technologies Web Access 147392 Tools Serial number status window does not work properly (Also fixed in 10.1.400.x)
Combo box drop‐down lists remain displayed on the web form even when there is 
10.1.500 Tools and Technologies Web Access 149188 Tools no row; drop‐down contains blank lines
Unable to set the Workstation, StageShipConfirm stops working (Also fixed in 
10.1.500 Tools and Technologies Web Access 149451 Tools 10.1.400.x)
10.1.500 Tools and Technologies Web Access 152857 Tools EWA Serial Number ‐ EWA Issue only ‐ search by serial number cannot be activated
Enterprise Search switch to grid view cannot be performed due to object reference 
10.1.500 Tools and Technologies Web Access 155740 Tools error

Page 127
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


10.1.500 Tools and Technologies Web Access 157222 Tools Bank Receipt File Import issues with Import Payments
10.1.500 Tools and Technologies Web Access 157352 Tools Incorrect conversion to EWA Components
10.1.500 Tools and Technologies Web Access 158637 Tools Attachments uploaded from EWA are not using the attachment settings correctly
10.1.500 Tools and Technologies Web Access 160018 Tools New TaskID entered is not saved if it is added by tabbing out
10.1.500 Tools and Technologies Web Access 161546 Tools Cannot add second row if the view is sorted
10.1.500 Tools and Technologies Web Access 161657 Application Part (EWA) Tag record function does not work correctly in EWA
10.1.500 Tools and Technologies Web Access 162084 Tools The password on the Custom Reports form is not masked in EWA
10.1.500 Tools and Technologies Web Access 162471 Tools Start and End Dates are not supported in Parameters webpage dialog
10.1.500 Tools and Technologies Web Access 162972 Tools Open With options differs from the ones in Smart Client
10.1.500 Tools and Technologies Web Access 163237 Tools EpiUltracomboPlus binding does not work for EWA using a UD Table as Child
In PO Entry, suboperations and operations display on drop‐down from line of 
10.1.500 Tools and Technologies Web Access 164198 Tools suboperation tab
The "Save As" dialog does not save the entered file name in COA Export and GL 
10.1.500 Tools and Technologies Web Access 164761 Tools export (EWA)
Some folders from EWA zips are not included (or are not created) within the 
10.1.500 Tools and Technologies Web Access 165434 Tools Resources folder which causes charts and other elements to stop working in EWA
10.1.500 Tools and Technologies Web Access 165656 Tools Error when deleting a row with empty SysRowID in Price Groups
Incorrect behavior when adding a new Service Call or Contract and a record is 
10.1.500 Tools and Technologies Web Access 165659 Tools already existing
"Input Prompts only" option does not work correctly in EWA for updatable 
10.1.500 Tools and Technologies Web Access 167120 Tools dashboards with tracker views (Also fixed in 10.1.400.x)
"Return column" drop‐down list displays columns that are not corresponding to the 
10.1.500 Tools and Technologies Web Access 168285 Tools selected BAQ after using "Clear" button in Quick search entry
10.1.500 Tools and Technologies Web Access 168347 Application Receipt Entry ‐ The packing slips are not displayed for intercompany receipt in EWA
10.1.500 Tools and Technologies Web Access 168411 Tools Allow to Type Decimals on Qty Field When UOM Allow Decimals = 0
10.1.500 Tools and Technologies Web Access 169455 Tools Style BackColor is displayed incorrectly in Rate Type Entry Grid 
10.1.500 Tools and Technologies Web Access 169554 Application Change PO Suggestions ‐ Accepting a suggestion is not clearing the screen in EWA
Microsoft Edge browser is currently  not supported; an informational message 
10.1.500 Tools and Technologies Web Access 169663 Tools should be displayed if a user accidently accesses ERP using Edge
10.1.500 Tools and Technologies Web Access 169675 Tools Error when Cash Receipt Tracker is opened from the context menu
10.1.500 Tools and Technologies Web Access 169762 Tools Unable to Enter a date using calendar function
10.1.500 Tools and Technologies Web Access 170164 Tools Epicor Social displays an error when opening Planning Contract Entry
10.1.500 Tools and Technologies Web Access 171856 Tools Session is not terminated if browser is closed
10.1.500 Tools and Technologies Web Access 172047 Tools Clear button on Search does not work
10.1.500 Tools and Technologies Web Access 172138 Tools Journal Entry Line grid issues
10.1.500 Tools and Technologies Web Access 172187 Tools Void Pack screen does not open in EWA
In EWA, when selecting a named search created on Smart Client, the radio button is 
10.1.500 Tools and Technologies Web Access 172257 Tools not selected
10.1.500 Tools and Technologies Web Access 172276 Tools Error when creating named search with quick search
10.1.500 Tools and Technologies Web Access 172284 Tools Error when saving named search with quick search

Page 128
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


10.1.500 Tools and Technologies Web Access 172302 Tools Firefox loads EWA home page incorrectly after refreshing the web browser
When creating more than one named search in a row, the application field is empty 
10.1.500 Tools and Technologies Web Access 172364 Tools (but it is filled when saving the named search)
When a named search has auto‐execute enabled, it does not auto‐execute it right 
10.1.500 Tools and Technologies Web Access 172365 Tools after creating the named search
10.1.500 Tools and Technologies Web Access 172369 Tools Maximum Rows Returned ignored on Named Searches
Basic tab on Named Search is empty after creating and closing the named search 
10.1.500 Tools and Technologies Web Access 172372 Tools options
10.1.500 Tools and Technologies Web Access 172517 Tools Disabled controls using Configurator
10.1.500 Tools and Technologies Web Access 172523 Tools Issue with multi‐level configurator
When clicking Print Preview on BAQ Reports, the following message displays:  
10.1.500 Tools and Technologies Web Access 172600 Tools "Object doesn't support this action"
Object does not support property or method 'ShowHelp', when clicking Help button 
10.1.500 Tools and Technologies Web Access 172758 Tools on MES site
10.1.500 Tools and Technologies Web Access 172769 Tools MES Close button does not work on Firefox
Unexpected message displayed in report launcher after timeout has been reached in 
10.1.500 Tools and Technologies Web Access 172780 Tools EWA and printing action is made (Also fixed in 10.1.400.x)
10.1.500 Tools and Technologies Web Access 172819 Tools Incorrect format when exporting a file on forecast entry
Delegate methods subscribed to PaneDisplayed event from baseDockManager are 
10.1.500 Tools and Technologies Web Access 172977 Tools not executed
Web browsers allow EWA users to enter credentials implementing user that is not 
10.1.500 Tools and Technologies Web Access 173000 Tools the one that is currently logged on
EWA cannot use CRM, MES, or TE licenses to be launched in URL when Windows 
10.1.500 Tools and Technologies Web Access 173049 Tools binding is configured for Epicor ERP 10 Appserver and EWA (SSO)
10.1.500 Tools and Technologies Web Access 173248 Tools SSRS reports cannot preview a CSV output format from EWA
10.1.500 Tools and Technologies Web Access 173310 Tools Row Rule is ignored on EWA
10.1.500 Tools and Technologies Web Access 173332 Tools Numeric UD field on a dashboard does not save its value (Internet Explorer)
10.1.500 Tools and Technologies Web Access 173438 Tools Product configurations with initial value for combo boxes do not default for EWA
10.1.500 Tools and Technologies Web Access 173479 Tools Inspection Results Entry ‐ Configurator screen does not display correctly
10.1.500 Tools and Technologies Web Access 173601 Tools EWA MES disabled form
10.1.500 Tools and Technologies Web Access 173690 Tools EWA Petty Cash Entry tree view does not work as Smart Client
Radio buttons from Named searches are ignored when the named search is created 
10.1.500 Tools and Technologies Web Access 173900 Tools from EWA
All MES Menu buttons in EWA open new instances of MES instead of performing 
10.1.500 Tools and Technologies Web Access 173965 Tools their expected actions when EWA is configured for SSO
Base Default when set in QS does not replace base search as it does in the smart 
10.1.500 Tools and Technologies Web Access 174331 Tools client
Petty Cash Entry changing the Cash Apply Date causes other fields to become 
10.1.500 Tools and Technologies Web Access 174641 Tools disabled (Also fixed in 10.1.400.x)

Page 129
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


10.1.500 Tools and Technologies Web Access 174938 Tools EWA cannot open target URLs configured in Menus
10.1.500 Tools and Technologies Web Access 175009 Tools AR Invoice Entry does not work in EWA
10.1.500 Tools and Technologies Web Access 175139 Tools Exception text is not displayed in Firefox/Mozilla correctly
URL character size is reached when server name, site name, and/or configuration 
10.1.500 Tools and Technologies Web Access 175142 Tools name are too long
Customize server messages when closing Log In dialog after timeout (Also fixed in 
10.1.500 Tools and Technologies Web Access 175285 Tools 10.1.400.x)
PO Approval Search screen displays an error message and does not retrieve any 
10.1.500 Tools and Technologies Web Access 175288 Tools records
Web form generation from Dashboard maintenance form causes an incorrect web 
10.1.500 Tools and Technologies Web Access 175578 Tools Access status in Menu Maintenance
Configurator EWA ‐ Combo Boxes do not display the Dynamic List values for Lookup 
10.1.500 Tools and Technologies Web Access 175759 Tools and UD Methods (Also fixed in 10.1.400.x)
New instances of EWA MES opened when you click any of "Job" buttons from forms 
10.1.500 Tools and Technologies Web Access 176695 Tools launched through EWA MES menu (SSO implemented)
10.1.500 Tools and Technologies Web Access 177005 Tools Sorting by clicking column headers does not work
10.1.500 Tools and Technologies Web Access 177053 Tools GL Book Entry cannot be used
10.1.500 Tools and Technologies Web Access 177139 Tools BAQ reports cannot be printed in EWA
10.1.500 Tools and Technologies Web Access 177311 Tools Payment Tracker fields are not initialized correctly
On EWA, two queries are auto‐refreshed when loading a dashboard, but just one of 
10.1.500 Tools and Technologies Web Access 177538 Tools them is marked as auto‐refresh on load
10.1.500 Tools and Technologies Web Access 177593 Tools Unable to save empty UD fields on a customized web form
Fix ticket/token creation when communicating with Enterprise Search (Also fixed in 
10.1.500 Tools and Technologies Web Access 177704 Tools 10.1.400.x)
10.1.500 Tools and Technologies Web Access 177976 Tools All fields on Transfer Order Workbench become enabled when screen opens
Dashboard that uses a Tracker View that has EpiCombos bound to the User Codes 
10.1.500 Tools and Technologies Web Access 178427 Tools table, overwrites the values when executed in EWA
10.1.500 Tools and Technologies Web Access 178471 Tools Context Panel cannot be resized or moved
10.1.500 Tools and Technologies Web Access 178472 Tools Radio Button labels are not displayed in configurations (Also fixed in 10.1.400.x)
Fix ticket/token creation when communicating with Enterprise Search (Also fixed in 
10.1.500 Tools and Technologies Web Access 178474 Tools 10.1.400.x)
10.1.500 Tools and Technologies Web Access 178694 Tools Inconsistencies when selecting multiple records from search results
Financial Management > AP > Setup > Electronic Interface menu item not available 
10.1.500 Tools and Technologies Web Access 178878 Tools in EWA
10.1.500 Tools and Technologies Web Access 178975 Tools Unable to print Crystal Report in EWA, the button is disabled
"The DisplayMember is required" message displays immediately after adding a new 
10.1.500 Tools and Technologies Web Access 179016 Tools quick search value item
10.1.500 Tools and Technologies Web Access 179075 Tools EWA report monitor does not display printed/previewed reports
10.1.500 Tools and Technologies Web Access 179233 Tools Sales Order Entry works incorrectly

Page 130
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


10.1.500 Tools and Technologies Web Access 179307 Tools Additional tests for SCR 169554
10.1.500 Tools and Technologies Web Access 179511 Tools Https protocol cannot be used since 10.1.400 (Also fixed in 10.1.400.x)
Message "Object doesn't support property or method 'ToLowerInvariant'" after 
10.1.500 Tools and Technologies Web Access 179552 Tools selecting new BAQ data
10.1.500 Tools and Technologies Web Access 180185 Tools Several issues with Configurator (Also fixed in 10.1.400.x)
Warning message  "You cannot select more than 5 serial numbers" when you select 
10.1.500 Tools and Technologies Web Access 180290 Tools less than five serial numbers on Issue Material

10.1.500 Tools and Technologies Web Access 180293 Tools When selecting Serial Numbers on Issue Material, only the last one remains selected


Multiple issues with Configurations (incorrect description box contents, website 
10.1.500 Tools and Technologies Web Access 180668 Tools launching, other issues) (Also fixed in 10.1.400.x)
10.1.500 Tools and Technologies Web Access 180684 Tools GetFileNameWithoutExtension function has incorrect implementation
10.1.500 Tools and Technologies Web Access 180897 Tools Refresh All option is not visible on EWA forms
Dashboard tracker search/filter not accessible on EWA, if set as Auto‐Hide (Also 
10.1.500 Tools and Technologies Web Access 180898 Tools fixed in 10.1.400.x)
Tracker filter docked on the top of the page (first item in the display) is not visible in 
10.1.500 Tools and Technologies Web Access 180899 Tools EWA (Also fixed in 10.1.400.x)
10.1.500 Tools and Technologies Web Access 180970 Tools GLAccountEditor does not fill in SegValues fields
Refresh works incorrectly in case dataset has more than one row and changes were 
10.1.500 Tools and Technologies Web Access 181109 Tools made outside current form
EpiDateTimeEditor control displays incorrect time for columns with {datetime} 
10.1.500 Tools and Technologies Web Access 181112 Tools format
10.1.500 Tools and Technologies Web Access 181151 Tools Cannot select the same file via OpenFile Dialog
10.1.500 Tools and Technologies Web Access 181233 Tools Incorrect function for checking the https protocol
When dynamically binding a grid to a Data Table, the headers are not displayed 
10.1.500 Tools and Technologies Web Access 181266 Tools correctly
Error displays on EWA configurations when current company for the user does not 
10.1.500 Tools and Technologies Web Access 181314 Tools match the company which opened the configuration
In Purchase Order release, G/L Account field does not recognize account code with 
10.1.500 Tools and Technologies Web Access 181602 Tools fourth Segment value
Prompt field from a tracker view ignores condition on a dashboard (Also fixed in 
10.1.500 Tools and Technologies Web Access 181817 Tools 10.1.400.x)
On Sales order / Order line / Price List screen, the Quantity field does not accept any 
10.1.500 Tools and Technologies Web Access 181940 Tools numbers and remains empty
Configurator issues with description fields and message boxes (Also fixed in 
10.1.500 Tools and Technologies Web Access 181958 Tools 10.1.400.x)
10.1.500 Tools and Technologies Web Access 182140 Tools Unable to modify Salesperson in Order Entry in EWA (Also fixed in 10.1.400.x)
No data can be entered on DMR Num field from OpenDMRActionStatus dashboard 
10.1.500 Tools and Technologies Web Access 182271 Tools in EWA (Also fixed in 10.1.400.x)

Page 131
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Headers for Report Parameters part are missing in EWA Reports (Trial Balance 
10.1.500 Tools and Technologies Web Access 182397 Tools report)
10.1.500 Tools and Technologies Web Access 182467 Tools EWA should support List<KeyValuePair<string,byte[]>>
Web Dashboards ‐ Fields from Tracker views are updating cells from the grid when 
the implied field from the tracker view is not set to allow updates (Also fixed in 
10.1.500 Tools and Technologies Web Access 182538 Tools 10.1.400.x)
10.1.500 Tools and Technologies Web Access 182551 Tools Performance related enhancements for EWA Configurator (Also fixed in 10.1.400.x)
10.1.500 Tools and Technologies Web Access 182678 Tools JScript causes an error due to case‐sensitive property names
10.1.500 Tools and Technologies Web Access 182942 Tools Job Entry form does not work
10.1.500 Tools and Technologies Web Access 183151 Tools Issue when paging backward into a new configuration on multi level configurations
10.1.500 Tools and Technologies Web Access 183227 Tools Financial reports do not work in EWA due to an unexpected message on preview
Outbound EDI reports are not being in the configured output location from the 
10.1.500 Tools and Technologies Web Access 183300 Tools corresponding report style
10.1.500 Tools and Technologies Web Access 183365 Tools Prevent the sliding context sensitive menu from opening in the EWA Configurator
10.1.500 Tools and Technologies Web Access 183473 Tools Generate Legal Number for Quantity Adjustment does not work in EWA
EWA Configurator ‐ Issues with image resizing and loading of browser URLs that 
10.1.500 Tools and Technologies Web Access 183514 Tools have "https" prefixes (Also fixed in 10.1.400.x)
10.1.500 Tools and Technologies Web Access 184079 Tools It should not e possible to enter any value on a combo box from a configuration
10.1.500 Tools and Technologies Web Access 184345 Tools Status Retrieving Data remains on the Image Maintenance form (Internet Explorer)
10.1.500 Tools and Technologies Web Access 184895 Tools Issues with changed events on radio buttons and check boxes
10.1.500 Tools and Technologies Web Access 184959 Tools System Monitor is not loaded
Saved Image cannot be displayed if the name of the Image is entered directly in the 
10.1.500 Tools and Technologies Web Access 184990 Tools ImageName field
10.1.500 Tools and Technologies Web Access 185069 Tools "Invoice Payment Selection" web form issues
When a combo near the bottom of the screen is opened, the pop‐up should display 
10.1.500 Tools and Technologies Web Access 185087 Tools above
10.1.500 Tools and Technologies Web Access 185167 Tools Web Forms ‐ UD fields does not save values from EWA
10.1.500 Tools and Technologies Web Access 185350 Tools Cannot print preview BAQ Reports that have filters
Filters from Rebate contract Summary report and Rebate transaction report do not 
10.1.500 Tools and Technologies Web Access 185438 Tools working from EWA
Web Framework ‐ Errors displayed when creating a Named Search and deleting it 
10.1.500 Tools and Technologies Web Access 187355 Tools leaving empty fields, then adding a new Named Search
Web Framework ‐ Named search takes parameters from the latest created named 
10.1.500 Tools and Technologies Web Access 187367 Tools search
Web Framework ‐ "Unable to get property 'ldx' of undefined or null reference" 
message when selecting available quick search on named search options, on sales 
10.1.500 Tools and Technologies Web Access 187369 Tools order entry
Web Framework ‐ Disabled radio buttons even if a customer is entered on Named 
10.1.500 Tools and Technologies Web Access 187383 Tools Search

Page 132
Change List ‐ Resolved Issues Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


10.1.500 Tools and Technologies Web Access 187417 Tools Web Framework ‐ Return All Rows is not selected by default on Named Search

Page 133
Change List ‐ Application Enhancements Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Part On Hand Status ‐ All quantity fields in dashboard now uses the Quantity 
10.1.500 Executive Management Executive Dashboard 167967 Application Display Decimal setting
10.1.500 Financial Management Accounts Payable 52028 Application Payment Entry ‐ In Select Invoices screen the 'Selected' checkbox does not function.
10.1.500 Financial Management Accounts Payable 111478 Application Invoice Entry AP ‐ New Receipt line option is disable for Tax inclusive pricing invoice
10.1.500 Financial Management Accounts Payable 153251 Application Payment Proposal Report ‐ Include Total amounts in the report
10.1.500 Financial Management Accounts Payable 167042 Application Invoice Entry AP ‐ Allow to manually update Due Date field in Invoice Header
10.1.500 Financial Management Accounts Payable 176828 Application Tax Type ‐ Allow Payment Discount Treatment option for Collection Method = 
RMA Processing ‐ It is possible to generate as many Credit Memo requests as 
10.1.500 Financial Management Accounts Receivable 117699 Application wanted for a single RMA entry
10.1.500 Financial Management Accounts Receivable 118157 Application Posted Invoice Update AR  ‐ Need ability to change payment method
10.1.500 Financial Management Accounts Receivable 139459 Application Reverse Cash Receipt ‐ Now allows Misc Cash Receipts to be reversed
10.1.500 Financial Management Accounts Receivable 140724 Application Cash Receipt Entry ‐ does not retrieve last credit card information processed for 
10.1.500 Financial Management Accounts Receivable 179684 Application Invoice Entry AR ‐ Add the ability to transfer multiple lnvoices to another group at 
10.1.500 Financial Management Accounts Receivable 180031 Application Cash Receipt Entry ‐ AR Unable to select overpaid invoice on cash receipt
10.1.500 Financial Management Accounts Receivable 182546 Application Tax Box Entry ‐ track changes for manual entries (Epic 1141)
10.1.500 Financial Management CSF All 175117 Application CSF APAC ‐ Stock movement report, Non‐nettable
10.1.500 Financial Management CSF Belgium 176160 Application CSF EMEA ‐ SEPA Using Payment Ref Numbers in Remittance Info (Epic 824)
10.1.500 Financial Management CSF China 175116 Application Zero Rate Type Invoice in GTI
Denmark CSF Installation procedure should be enhanced to load 
10.1.500 Financial Management CSF Denmark 97140 Application UserDefinedCodeTypes automatically.
10.1.500 Financial Management CSF European Union 175159 Application CSF EMEA ‐ Exporting Intrastat data for IDEP platform (Epic 660)
10.1.500 Financial Management CSF France 176739 Application Be sure that EI to export AR PI LCR File was uplifted from E9 to E10
10.1.500 Financial Management CSF Mexico 175282 Application Electronic Accounting ‐ MX GL Journals report should show transaction description
Electronic Accounting ‐ A filter for GL account segment should be added to the List 
10.1.500 Financial Management CSF Mexico 176336 Application of Accounts and Trial Balance reports
10.1.500 Financial Management CSF Mexico 176459 Application AP Invoice Line details in PJ GL Journal (EPIC 940)
10.1.500 Financial Management CSF Mexico 177707 Application Account Num on invoice should come from customer
10.1.500 Financial Management CSF Mexico 177716 Application allows to import files saved only on the server and SaaS customers don’t have 
10.1.500 Financial Management CSF Mexico 178145 Application AP Invoice field for TAR code required
Error message after Account Number validation should be corrected for Customer 
10.1.500 Financial Management CSF Mexico 178224 Application and AR Invoice
10.1.500 Financial Management CSF Mexico 179179 Application CSF Mexico ‐ Added Electronic Invoice for Partial Payments ‐ Migration to 10.1.500
10.1.500 Financial Management CSF Netherlands 175152 Application CSF Netherlands ‐ Electronic VAT Declaration Report/Files (Epic 373)
10.1.500 Financial Management CSF Netherlands 175154 Application CSF Netherlands ‐ ICP Reporting (Epic 374)
10.1.500 Financial Management CSF Netherlands 175156 Application CSF Netherlands ‐ SEPA SCT Payment File Formats (Epic 394)
10.1.500 Financial Management CSF Netherlands 175157 Application CSF Netherlands ‐ SEPA DD Format (Epic 395)
10.1.500 Financial Management CSF Netherlands 178722 Application CSF Netherlands ‐ VAT ID and Format Check (Epic 843)
10.1.500 Financial Management CSF Netherlands 178725 Application CSF Netherlands ‐ GL Audit file (Epic 697)
10.1.500 Financial Management CSF Netherlands 179658 Application CSF EMEA ‐ Intrastat Dashboard (Epic 826)
10.1.500 Financial Management CSF Netherlands 182730 Application CSF Netherlands ‐ Revenue & Expense Analysis with Tax Details (Epic 393)

Page 134
Change List ‐ Application Enhancements Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


10.1.500 Financial Management CSF Peru 167131 Application SUNAT V1.3.1 Include all partner Reports into the CSF for delivery in 10.1
10.1.500 Financial Management CSF Taiwan 175115 Application GUI Registration Number
10.1.500 Financial Management CSF Taiwan 175717 Application Consolidate Packing Slips
10.1.500 Financial Management CSF Thailand 151840 Application Data in stock card report is not arranged in Date and time sequence.
Currency Master ‐ Not possible to link currency 2nd time to other global currency, 
10.1.500 Financial Management Currency Management 172091 Application from the same or from other external company
Rate Type ‐Not possible to link Rate Type 2nd time to other global Rate Type, from 
10.1.500 Financial Management Currency Management 172100 Application the same or from other external company
Currency Master ‐ ‘Link Currency’ Tab in Currency Master main form to be moved 
10.1.500 Financial Management Currency Management 179265 Application to separate form
10.1.500 Financial Management Currency Management 180123 Application Rate Type ‐ ‘Link Rate Type’ Tab in to be moved to separate form
10.1.500 Financial Management General Ledger 181157 Application Make 10800 conversion program available as user‐runnable optional conversion for 
Conversion ‐ Made 10800 conversion program available as user‐runnable optional 
10.1.500 Financial Management General Ledger 181157 Application conversion for E10.1
Legal Number ‐ Add new number and document type "Manual GRNI" for legal 
10.1.500 Financial Management General Ledger 181659 Application number generation
Supplier Maintenance ‐ Link Supplier ‐ Primary contact flag is now copied to new 
10.1.500 Financial Management Multi‐Site Management 81126 Application global contact
10.1.500 Financial Management Multi‐Site Management 166920 Application Multi‐Company Direct Server Process ‐ Fixed possible memory leak code
Multi‐Company Direct Server Process ‐ Log now shows the Database Port or 
10.1.500 Financial Management Multi‐Site Management 168109 Application Identifier hitting the log
Multi‐Company Direct Server Process ‐ Part entry link global parts skip button is not 
10.1.500 Financial Management Multi‐Site Management 178877 Application longer disabled and skipped parts can now be deselected
Customer Maintenance ‐ Link Customer ‐ Global Primary Contact checkboxes are 
10.1.500 Financial Management Multi‐Site Management 181709 Application now selected automatically
Enhanced all MT Exp, Reg and Val classes to use enhanced FW to send ForceSeek as 
10.1.500 Financial Management Multi‐Site Management 182151 Application an additional lockhint
HH‐PackageControlAdhocReceiptToInventory ‐ Created a new HH screen to move 
10.1.500 Production Management Data Collection 170249 Application the staged Adhoc PCIDs into Inventory.
HH Package Control Parent Master & Mixed ‐ Transactions PKG‐MIXD & PKG‐MSTR 
10.1.500 Production Management Data Collection 176816 Application now validate Printers (Also fixed in 10.1.400.x)
HH Package Control ‐ Repack Reclass By PCID ‐ Added ability to generate pcid for 
10.1.500 Production Management Data Collection 177784 Application remaining qty but not print label
HH Package Control Parent Master & mixed‐  Child PCID information is not 
10.1.500 Production Management Data Collection 178041 Application displayed on the Item
HH Package Control Job Receipt To Inventory ‐ Search screens are clunky and will 
10.1.500 Production Management Data Collection 180234 Application not work for a warehouse user.
10.1.500 Production Management Data Collection 185315 Application HH Package Control Confirm Master and Mixed ‐ Confimed message now does not 

Page 135
Change List ‐ Application Enhancements Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Electronic Interface ‐ It shall be possible to invoke company specific Electronic 
10.1.500 Production Management Engineering 176730 Application Interfaces when CompanyID contains non‐alphanumeric characters
10.1.500 Production Management Field Service 173492 Application Service Call Center ‐ Replace BillServiceRate patch field with DB field in LaborDtl 
10.1.500 Production Management Job Management 166529 Application Quick Job Entry ‐ Added a new checkbox for Mass Print similar to Job Status 
10.1.500 Production Management Job Management 171965 Application Job Tracker ‐ Job Type "Service" is now displayed in Job Tracker (or on three Job 
10.1.500 Production Management Job Management 173694 Application Kanban Receipts ‐ Now allows Kanban Receipts to create jobs for Non stock items
Job Tracker ‐ Job Type "Service" is now displayed in two Job Reports (Production 
10.1.500 Production Management Job Management 174559 Application Detail and Job Traveler reports)
Planning Workbench ‐ Suggestion is now removed from Grid when you use Submit 
10.1.500 Production Management Job Management 174636 Application Process to create new Job
10.1.500 Production Management Job Management 174813 Application Job Traveler ‐ The "To Order" and "To Stock" columns are now displayed in the 
10.1.500 Production Management Job Management 177072 Application Backflush Labor Server Process ‐ Added ability to enter time but backflush quantity
10.1.500 Production Management Job Management 188008 Application Backflush Labor Serve Process ‐ Enhanced the log file for this process to give more 
Backflush Labor Serve Process  ‐ Added an option to report the back flush labor 
10.1.500 Production Management Job Management 188770 Application transaction against the Employee that  trigger the back flush
Material Requirements  Generate Suggestions ‐ Provided the ability to optionally skip the logic that looks for 
10.1.500 Production Management Planning 163814 Application the last PO in order to get prices and suppliers
Material Requirements  Process MRP ‐ Now uses Dynamic days of supply in Lead Time to consider 
10.1.500 Production Management Planning 173638 Application production calendars
Material Requirements 
10.1.500 Production Management Planning 174008 Application Warehouse and Bin Validations
Material Requirements  Process MRP ‐ Logic that explodes details from a Job is only working for the first 
10.1.500 Production Management Planning 177790 Application level ASM
Material Requirements 
10.1.500 Production Management Planning 183608 Application New PO Suggestions ‐ Approved Purchase Orders need to generate taxes
Material Requirements 
10.1.500 Production Management Planning 183608 Application New PO Suggestions ‐ Approved Purchase Orders now generate taxes
10.1.500 Production Management Planning Contracts 173992 Application Planning Contract ‐ Validated the warehouses and bin when the contract is 
10.1.500 Production Management Planning Contracts 177780 Application Planning Contract ‐ Added part description to the demand and supply tabs
Preventive Maintenance  Maintenance Job Entry ‐ List Panel is not needed in Maintenance Job Entry or any 
10.1.500 Production Management Management 152801 Application other Job Entry UI.
DMR Processing ‐ Debit Memo Record created for Reject Material has Unit Cost 
10.1.500 Production Management Quality Assurance 174832 Application field disabled
Scheduling Engine ‐ Multi job ‐ Now includes all the multi job options in the job 
10.1.500 Production Management Scheduling 155102 Application scheduling board
Scheduling Engine ‐ Added flexibility to Scheduling by allowing the user to set the 
10.1.500 Production Management Scheduling 185987 Application default scheduling time at the Site level
10.1.500 Production Management Time Management 183102 Application ERP/HCM integration ‐ Added Pay Hours field and validations to Labor records

Page 136
Change List ‐ Application Enhancements Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Time Sheet Entry ‐ For the HCM integration, they are unable to delete LaborDtl 
10.1.500 Production Management Time Management 189302 Application records through Service Connect
Customer Relationship  RMA Processing ‐ When a legal number is selected the customer field should be 
10.1.500 Sales Management Management 165040 Application populated
Customer Relationship  Price List ‐ Import and Export path should refer to a Client path, instead of a Server 
10.1.500 Sales Management Management 183660 Application path
10.1.500 Sales Management Demand Management 185644 Application Demand Import Process ‐ Added ability to add more UD fields to the inbound EDI 
10.1.500 Sales Management EDI 174448 Schema EDI Inbound ‐ PO Line field is restricted to support only 5 digits, instead of 20 digits
10.1.500 Sales Management Order Management 175546 Application Fulfillment Work Bench ‐ Clear All button does now deselect all records
10.1.500 Sales Management Order Management 176179 Application Order Entry ‐ When 'No Job' is selected as JobType, the Order Job Wizard is now 
10.1.500 Sales Management Order Management 177819 Application Order Entry ‐ Unselecting Lock Unit Price flag, doesn't defaults to price defined at 
10.1.500 Sales Management Order Management 184051 Schema Order Entry ‐ Added new DB fields to Erp.OrderHed table
Configurator Entry ‐ Added a duplicate configurator option to create a new copy of 
10.1.500 Sales Management Product Configuration 155346 Application a configuration
Configurator Document Rules ‐ Now shows a tooltip when hovering over expression 
10.1.500 Sales Management Product Configuration 165219 Application like method rules
Enterprise Configurator Server Process ‐ Now transfers Local variables along with 
10.1.500 Sales Management Product Configuration 171994 Application configurations
Configurator Conversion ‐ ConvertPCInValues process log includes additional info 
10.1.500 Sales Management Product Configuration 175566 Application explaining which records it processed values (Also fixed in 10.1.400.x)
10.1.500 Sales Management Product Configuration 176581 Application Configurator Designer ‐ Added Publish to Document to Text Editor
Configurator Run Time ‐ Changing/improving the messages displayed to the user 
10.1.500 Sales Management Product Configuration 179532 Application during get details
10.1.500 Sales Management Product Configuration 182293 Application Configurator User Definable Functions ‐ Added the ability to filter by method type
Project Analysis Export ‐ Allows submission of several processes with different 
10.1.500 Sales Management Project Management 179299 Application parameters at the same time (Also fixed in 10.1.400.x)
10.1.500 Sales Management Quote Management 174848 Application Service Job Tracker ‐ Removed Save and Delete Icons on Tool bar from Service Job 
10.1.500 Sales Management Quote Management 183492 Application Opportunity / Quote Entry ‐ Created a unit test to cover certain quote calculations
Advanced Material 
10.1.500 Supply Chain Management Management 179018 Application Material Request Queue ‐ Change Priority 0 to Priority 9 to be the lowest.
Advanced Material  Material Request Queue / Mtl Queue Mgr ‐ Add search buttons as labels for filter 
10.1.500 Supply Chain Management Management 183577 Application dropdown lists.
10.1.500 Supply Chain Management Handheld MES 169519 Application HH PackVerify By PCID ‐ Initial Design and creation of the PackVerify By PCID HH 
10.1.500 Supply Chain Management Handheld MES 183663 Application HH PackVerify By PCID ‐ Phase 2 updates and coding for Pack Verify UI
Issue Material ‐ Remove logic that prevents users without Can Override Allocation 
10.1.500 Supply Chain Management Inventory Management 166249 Application rights from overriding allocations
Package Control Maintenance PCID ‐ Add a Printer Icon to the tools bar to allow for 
10.1.500 Supply Chain Management Inventory Management 171497 Application reprints of a single PCID at a time.

Page 137
Change List ‐ Application Enhancements Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Inventory Transfer ‐ Multiple sessions transferring the same inventory causes an 
10.1.500 Supply Chain Management Inventory Management 176172 Application immediate error (Also fixed in 10.1.400.x)
10.1.500 Supply Chain Management Inventory Management 176593 Application Package Control PCID ‐ Handheld screens are not behaving as design says
10.1.500 Supply Chain Management Inventory Management 176838 Application Package Control ID Type Config PCID ‐ Need ability to set numeric last value for go 
10.1.500 Supply Chain Management Inventory Management 176928 Application Package Control PCID ‐ Need ability to supress all PCID generation messages
Package Control Label Type PCID ‐ If part has been entered populate package code 
10.1.500 Supply Chain Management Inventory Management 177000 Application with valid only package codes for part
10.1.500 Supply Chain Management Inventory Management 177006 Application Package Control Label Type PCID ‐ Provide a copy from option
Package Control PCID ‐ Hide Package Control transactions for WMG in the 
10.1.500 Supply Chain Management Inventory Management 177082 Application Productization Module
10.1.500 Supply Chain Management Inventory Management 177509 Application Package Control ID Adhoc PCID ‐ Warehouse & Bin should be disabled when Stage 
10.1.500 Supply Chain Management Inventory Management 177702 Application Package Control ID ‐ Partial PCID ‐ Should only allow use of label type Internal
Package Control Maintenance PCID ‐ Add and redesign the Activites tab on the 
10.1.500 Supply Chain Management Inventory Management 178938 Application Package Control ID Maintenance screen. Add  Source and Target PCID textboxes 
Package Control ID Job Receipt To Inventory ‐ Need to add Allow to scan into either 
10.1.500 Supply Chain Management Inventory Management 179126 Application STOCK or QUALITY warehouse.  Restriction exists today to go to STOCK only
Package Control PCID  MASTER & MIXED ‐   Update the Transaction Type values in 
10.1.500 Supply Chain Management Inventory Management 179246 Application the  PKGControlHeader table.
10.1.500 Supply Chain Management Inventory Management 179247 Application Package Control PCID ‐  schema change for 
Package Control ID Job Output ‐ When a partial PCID is consumed the system needs 
10.1.500 Supply Chain Management Inventory Management 179796 Application to write out a record into the Split Merge table
Warehouse Team ‐ Create a combo for AvailTranTypes and fix non‐translatable 
10.1.500 Supply Chain Management Inventory Management 180076 Application descriptions and other issues
Package Control PCID ‐ Part number is required to retrieve a label type (Also fixed in 
10.1.500 Supply Chain Management Inventory Management 180709 Application 10.1.400.x)
10.1.500 Supply Chain Management Inventory Management 181833 Application Package Control ID Type Config PCID ‐  Archive PCID History flag is always able
10.1.500 Supply Chain Management Inventory Management 183261 Application Package Control PCID ‐ Printing a Master/Mixedmaster PCID is not updating its 
Package Control PCID ‐ Fixed that packing an EMPTY PCID on Cust Ship Entry was 
10.1.500 Supply Chain Management Inventory Management 187708 Application giving message: 'Ship lines must be created before packing PCID'
10.1.500 Supply Chain Management Purchasing Management 181393 Application Company Configuration ‐  New settings to calculate taxes in Purchase Orders
Purchase Order Entry ‐ Add Ready to Process, Tax Liability, Tax Category, Taxable 
10.1.500 Supply Chain Management Purchasing Management 181396 Application (at Release) and Tax Exempt
10.1.500 Supply Chain Management Purchasing Management 181397 Application Purchase Order Entry ‐ New upgrade program to populate new fields.
10.1.500 Supply Chain Management Purchasing Management 181704 Application Purchase Order Entry ‐ Add capability to add manual taxes to Purchase Orders
10.1.500 Supply Chain Management Purchasing Management 182309 Application Purchase Order Entry ‐ Added PO Totals onto POHeader
10.1.500 Supply Chain Management Purchasing Management 183540 Application Purchase Order Entry ‐ Duplicating a PO is not copying across all tax related 
Purchase Order Entry ‐ Now allows Withholding Taxes collection method for Tax 
10.1.500 Supply Chain Management Purchasing Management 184081 Application Inclusive Pricing Tax Liability
10.1.500 Supply Chain Management Shipping / Receiving 164818 Schema Customer Shipment Entry ‐ Now possible to create a 1000 lines shipment

Page 138
Change List ‐ Application Enhancements Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


10.1.500 Supply Chain Management Shipping / Receiving 166104 Application Customer Shipment Entry ‐ Removed any and all logic that uses "Can Override 
Transfer Order Shipment Entry ‐ Removed any and all logic that uses "Can Override 
10.1.500 Supply Chain Management Shipping / Receiving 166114 Application Allocations"
10.1.500 Supply Chain Management Shipping / Receiving 181661 Application Receipt Entry ‐ register new receipts or delete them in case of erroneous entry
Customer Shipment Summary ‐ Created a new screen to retrieve and display 
10.1.500 Supply Chain Management Shipping / Receiving 181713 Application customer shipment header information
Customer Shipment Summary ‐ Added Order Releases grid to new Customer 
10.1.500 Supply Chain Management Shipping / Receiving 182032 Application Shipment Summary screen
Customer Shipment Summary ‐ Added searches & Context Menu items to new 
10.1.500 Supply Chain Management Shipping / Receiving 182223 Application customer shipment summary screen
10.1.500 Supply Chain Management Shipping / Receiving 183047 Application Customer Shipment Summary ‐ Added “Total Ship Qty” and “Remaining Qty” to grid
Product Lifecyle 
10.1.500 System Wide Enhancements Management 175205 Application PLM Server Process ‐ Revision sent to PLM needs to be adjusted
Setup Environment ‐ "Application Pool Name" on Education tab now does not allow 
10.1.500 Tools and Technologies Admin Console 163026 Tools user to type in it
10.1.500 Tools and Technologies Admin Console 169295 Tools Changed error message for adding a dup license to be more user‐friendly
10.1.500 Tools and Technologies Admin Console 175811 Tools Added additional protocols support to App Server Properties in Admin Console
10.1.500 Tools and Technologies Admin Console 177735 Tools Setup Environment ‐ Added the ability to deliver only changed help files in an 
Setup Environment ‐ Added the ability to delivery only changed education courses 
10.1.500 Tools and Technologies Admin Console 177736 Tools in an Update.
10.1.500 Tools and Technologies Admin Console 178670 Tools Setup Environment ‐ Changed Warning message to keep the setup environment 
10.1.500 Tools and Technologies Admin Console 179537 Tools Setup Environment ‐ Added help to setup enviroment
SetupEnvironment and DBMigration files arenow auto extract when Admin Console 
10.1.500 Tools and Technologies Admin Console 182004 Tools is installed
10.1.500 Tools and Technologies Admin Console 182066 Tools Setup Environment ‐ Application Name field is now disabled after appserver is 
Setup Environment ‐ Using the Epicor Administraction Console in 10.1.400.x it is 
10.1.500 Tools and Technologies Admin Console 182388 Tools now possible to specify a Custom Directory if it is within the main application server 
10.1.500 Tools and Technologies Admin Console 183588 Tools Added check for conflicting Custom Assemblies when installing an Update
If the EAC unzip DBMigration.zip it now checks to see if updates are available and 
10.1.500 Tools and Technologies Admin Console 184052 Tools apply them
Setup Environment ‐ published extensions ‐ NetTcp, http and https protocol prefix 
10.1.500 Tools and Technologies Admin Console 188906 Tools from AppserverURL field now changes based on the selected binding
IQS ‐ Updated zip file of AQM Tool Kit (.bat and .ini) files received and need to be 
10.1.500 Tools and Technologies Advance Quality 168311 Application uploaded to EPICWeb
10.1.500 Tools and Technologies Advance Quality 186160 Application IQS ‐ Customer ship to contact export now works correctly
Attachments ‐ Attachments can now be retrieved from a secured location and 
10.1.500 Tools and Technologies Attachments 179868 Tools receives an http err 500 on GetResponse
10.1.500 Tools and Technologies BAQ Designer 161735 Tools Updated BAQ integration wiht iScala to recognize new types
10.1.500 Tools and Technologies BAQ Designer 170042 Tools External BAQs ‐ Multi‐company/multi‐tenancy visibility and Update Control ‐ 

Page 139
Change List ‐ Application Enhancements Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Replaced usage of IsSystem column with SystemFlag column and drop IsSystem off 
10.1.500 Tools and Technologies BAQ Designer 171766 Tools the schema for BAQ‐owned tables
BAQ Import ‐ User can now select ESC server when updatable queries are imported 
10.1.500 Tools and Technologies BAQ Designer 180104 Tools via Solution Workbench (Also fixed in 10.1.400.x)
10.1.500 Tools and Technologies BAQ Designer 180120 Tools New button now works more consistenlty for ubaq via workflow
It is now not possible to create datasource type and datasource in the company 
10.1.500 Tools and Technologies BAQ Designer 180794 Tools different from current one through context menu
10.1.500 Tools and Technologies BAQ Designer 183610 Tools Removed "Settings" column from list view of External Datasources
Method Directives ‐ Compilation error creating BPM (Method Directive) on 
10.1.500 Tools and Technologies BPM Designer 158888 Tools Erp.CustShip.POUpdateAndDisplay
10.1.500 Tools and Technologies BPM Designer 169415 Tools BPM ‐ Allow checking expressions for correctness and applicability ‐ Part 1
BPM ‐ Support marking bindings/mappings in FillTable/UpdateTable/InvokeBO as 
10.1.500 Tools and Technologies BPM Designer 171600 Tools invalid and propagate this up to the state of the action
10.1.500 Tools and Technologies BPM Designer 172789 Tools BPM ‐ UI issues in InfoMessage dialog
10.1.500 Tools and Technologies BPM Designer 174135 Tools BPM ‐ Programming Interface ‐ generate method with context tableset argument
10.1.500 Tools and Technologies BPM Designer 174405 Tools BPM/BAQ ‐ Table relation search algorithm should be more predictable
10.1.500 Tools and Technologies BPM Designer 174431 Tools BPM ‐ Now allows checking custom code syntax
10.1.500 Tools and Technologies BPM Designer 176099 Tools BPM ‐ Provided the way to filter assemblies when adding a reference
10.1.500 Tools and Technologies BPM Designer 176128 Tools BPM ‐ Now allows user to save empty expression/custom code
10.1.500 Tools and Technologies BPM Designer 176569 Tools BPM ‐ (Epic) BPM code generators should be updated to new design
10.1.500 Tools and Technologies BPM Designer 177201 Tools Added ability to resize "Select variable type" form
10.1.500 Tools and Technologies BPM Designer 177210 Tools BPM Designer now does not hang after closing "Select variable type" form
ICE‐BPM ‐ Added “BCC” and “Reply‐To” as exposed properties on the Email Form  in 
10.1.500 Tools and Technologies BPM Designer 177831 Tools the BPM designer
10.1.500 Tools and Technologies BPM Designer 178100 Tools BPM ‐ Investigated possibility to use Avalon code editor
10.1.500 Tools and Technologies BPM Designer 179253 Tools BPM ‐ Improved type resolving in BPM data serialization/deserialization
10.1.500 Tools and Technologies BPM Designer 179491 Tools BPM ‐ Usings & References are now only availalble to Advanced BPM users
10.1.500 Tools and Technologies BPM Designer 184872 Tools Prevent to paste directive portion with variables intersected with method 
BPM ‐ Call SC Workflow ‐ Now does not open Select Workflow form if invalid 
10.1.500 Tools and Technologies BPM Designer 185534 Tools credentials were specified on Logon to Service Connect form
10.1.500 Tools and Technologies Businesss Activity  180847 Tools BAM ‐ Now allows user to disable report routing from the UI
10.1.500 Tools and Technologies Conversions 169920 Tools Extended BAQ Upgrade to work in presence of BAQs belonging to absent 
10.1.500 Tools and Technologies Conversions 169921 Tools BPM ‐ Extended BPM Upgrade to work in presence of BPMs belonging to absent 
10.1.500 Tools and Technologies Conversions 171899 Tools Database Migration ‐ Applied F1 logic to DB Migration windows
10.1.500 Tools and Technologies Conversions 178339 Tools Extended BAQ Upgrade to work in presence of BAQs belonging to absent 
10.1.500 Tools and Technologies Conversions 178341 Tools Extended BPM Upgrade to work in presence of BPMs belonging to absent 
10.1.500 Tools and Technologies Database Administration 182136 Tools Command Line/headless execution of Datamodel generator
Added or modified the existing index of all IM tables to include the 
10.1.500 Tools and Technologies Database Administration 182152 Tools IncomingOutgoing column
10.1.500 Tools and Technologies Database Administration 182701 Tools Schema Changes ‐ Created table GlbPcExpVar

Page 140
Change List ‐ Application Enhancements Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


10.1.500 Tools and Technologies Enterprise Search 127269 Tools Replace "local socket timeout" error with a user‐friendly dialog
Validate message should mention that Enterprise Search is not installed as one of 
10.1.500 Tools and Technologies Enterprise Search 143635 Tools the potential reasons for connection failure
Workflow in memory: synchronous sub‐workflow in batch mode is shown as 
10.1.500 Tools and Technologies ESC Admin Console 182145 Tools independent workflow
10.1.500 Tools and Technologies ESC DES Router 178164 Tools Add "Workflows in memory" information plug‐in with ability to jump to Document 
Debug logging for creation and removing Epicor sessions misses some important 
10.1.500 Tools and Technologies ESC DES Router 178862 Tools information
10.1.500 Tools and Technologies ESC DES Router 181906 Tools Cleanup of DESRouter temp folder affects startup time unpredictably.
10.1.500 Tools and Technologies ESC Input Channel 139335 Tools It should be possible to assign asynchronous pool for input  channel
10.1.500 Tools and Technologies ESC Other 174796 Tools After restart of SC services, InProgress workflow status be set to Abortive
10.1.500 Tools and Technologies ESC Other 175737 Tools Add Document Tracking setup on business event Object and Action (iScala)
10.1.500 Tools and Technologies ESC Other 175740 Tools Client would like to be notified in case of some particular ESC channel is 
After ScaDESRouter.exe unexpectedly termination the “enqueued requests” for 
10.1.500 Tools and Technologies ESC Other 178867 Tools Asynchronous Pools should be set to correct value.
10.1.500 Tools and Technologies ESC Other 183199 Tools Update Rebex libraries to 2016 R1.1
10.1.500 Tools and Technologies ESC Other 183200 Tools Mail communicator should be updated with the latest mail.dll library
10.1.500 Tools and Technologies ESC Other 183207 Tools Running workflows result pane columns default order has to be changed.
Customer needs to specify sorting order in which receive xml files and process with 
Service connect. Files are received using FTP type input chanell. In  FTP type input 
10.1.500 Tools and Technologies ESC Other 183897 Tools chanell  there is no possibility to set‐up sequence in which receive files
In this view of running workflows would be nice to have one more column for a 
10.1.500 Tools and Technologies ESC Other 183919 Tools timestamp, time when workflow was started.
10.1.500 Tools and Technologies General 131300 Application Putaway transaction priority should be used for xxx‐STK transactions
10.1.500 Tools and Technologies General 147010 Application Added criteria to CVXA0041 to only run on a part by part basis
10.1.500 Tools and Technologies General 175108 Schema Tax Engine ‐ still uses Patchfld record instead of physical 'LACTaxCalcEnabled'
MES ‐ Access to all MES and HH PkgControl menu items are keyed off Material 
10.1.500 Tools and Technologies General 176884 Application Handler access
Tax Engine ‐ Now allows Withholding Taxes collection method for Tax Inclusive 
10.1.500 Tools and Technologies General 181586 Application Pricing Tax Liability
10.1.500 Tools and Technologies General 181658 Application Company Configuration ‐ Added option to allow or disallow multiple invoicing of 
Data Directive ‐ ChangeLog icon not available in Tax tables (OrderRelTax, 
10.1.500 Tools and Technologies General 184011 Application POHeaderTax, PORelTax)
Conversion Workbench ‐ Added ability to run User Conversion Workbench for one 
10.1.500 Tools and Technologies General 184772 Application company (not for all)
10.1.500 Tools and Technologies General Framework 155385 Tools Add logging of Assembly Loading to a new Profile
10.1.500 Tools and Technologies General Framework 155726 Tools Trick Windows to avoid the Program Compatibility Assistant on E10 exe's
Education Launch Pad ‐ sysconfig Ed url does not override Company Maintenance 
10.1.500 Tools and Technologies General Framework 159249 Tools ed URL as it should

Page 141
Change List ‐ Application Enhancements Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


10.1.500 Tools and Technologies General Framework 167112 Tools Add node count to MethodTreeBinding and/or method tree class.
10.1.500 Tools and Technologies General Framework 167942 Tools Integration.cs IntParamDef memory leak
10.1.500 Tools and Technologies General Framework 169290 Tools ICE Performers ‐ Add a background task that runs task on client and server
10.1.500 Tools and Technologies General Framework 169660 Tools SysConfig table and service not multitenant aware
10.1.500 Tools and Technologies General Framework 171230 Tools Default value is not being honored by GetByID/GetRows for external columns
10.1.500 Tools and Technologies General Framework 172052 Tools Service Designer ‐ Allow byte[] as a column datatype for external columns
10.1.500 Tools and Technologies General Framework 172725 Tools Show length of lock out time when user is locked out
10.1.500 Tools and Technologies General Framework 172804 Tools Client Session and Impls should support taking Windows Credentials to create auth 
Add a copy all button on exception dialogs to provide users with a quick way to 
10.1.500 Tools and Technologies General Framework 173756 Tools copy error messages.
10.1.500 Tools and Technologies General Framework 173848 Tools Review and fix Ice,XFileAttach index
10.1.500 Tools and Technologies General Framework 173896 Tools Add the ability to execute a data model regen via the command line
10.1.500 Tools and Technologies General Framework 174865 Tools Service Designer ‐ Generated Test project should be output to configurable path.
10.1.500 Tools and Technologies General Framework 175102 Tools UpdateExt should allow to change values for an integer key field
10.1.500 Tools and Technologies General Framework 175430 Tools Fix duplicate EpiGuid in client framework
10.1.500 Tools and Technologies General Framework 175809 Tools New protocols should be added as options in Setup of App Servers
10.1.500 Tools and Technologies General Framework 175813 Tools New protocols should be added as options in configuring Task Agent
10.1.500 Tools and Technologies General Framework 175815 Tools New protocols should be added as options in configuring BLTester
10.1.500 Tools and Technologies General Framework 175820 Tools New protocols should be added as options in configuring Social
10.1.500 Tools and Technologies General Framework 175821 Tools New protocols should be added as options in configuring Search
10.1.500 Tools and Technologies General Framework 175822 Tools New protocols should be added as options in configuring IW
10.1.500 Tools and Technologies General Framework 176029 Tools Server File Download ‐ Add ability to see file details like windows explorer
Installation ‐ import report flag on the deployment tab should be automatically 
10.1.500 Tools and Technologies General Framework 177377 Tools checked if the patch release has any new or updated reports.
10.1.500 Tools and Technologies General Framework 177382 Tools Add new TCP binding to use .NET binding compression
10.1.500 Tools and Technologies General Framework 177694 Tools Improve client tracing
10.1.500 Tools and Technologies General Framework 177747 Tools Service Designer ‐ BO Regen needs to support C# 6.
ConfigSys moves key items to the User Setting section so that they are not 
10.1.500 Tools and Technologies General Framework 177880 Tools overridden during updates (Also fixed in 10.1.400.x)
Core Framework Services ‐New protocols should be added as options in configuring 
10.1.500 Tools and Technologies General Framework 178316 Tools .sysconfig
Automatically exclude tables from data model regen that do not conform to 
10.1.500 Tools and Technologies General Framework 178584 Tools standards (Also fixed in 10.1.400.x)
New protocols should be added as options in configuring task agent rules in system 
10.1.500 Tools and Technologies General Framework 179234 Tools agent entry
10.1.500 Tools and Technologies General Framework 180253 Tools New protocols should be supported in SubTaskLauncher for tasks like MRP
10.1.500 Tools and Technologies General Framework 180292 Tools Make server side Session class mockable
10.1.500 Tools and Technologies General Framework 180388 Tools Additional protocols should be added as options in configuring Education Courses
10.1.500 Tools and Technologies General Framework 181813 Tools Extend the Label Control to allow the WrapText property to be False
10.1.500 Tools and Technologies General Framework 182150 Tools Integration.cs ‐ Enhance to allow multiple lockhints to be passed to the GetIMTable 

Page 142
Change List ‐ Application Enhancements Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


10.1.500 Tools and Technologies General Framework 182226 Tools Status and Logging Class/Methods for common use by Command‐line tools
10.1.500 Tools and Technologies General Framework 183293 Tools REST Service Installation Option & Warning
10.1.500 Tools and Technologies General Framework 184304 Tools Epinum2Words doesn't have an option to format the strings in a valid format for 
10.1.500 Tools and Technologies Help System 178944 Tools Help System ‐ Updated user validation (Also fixed in 10.1.400.x)
10.1.500 Tools and Technologies Help System 179159 Tools Help installer ‐ Added target directory validation (Also fixed in 10.1.400.x)
10.1.500 Tools and Technologies ICE Installations 178762 Tools Deployment ‐ Update Existing AppServer at Release Version
10.1.500 Tools and Technologies ICE Installations 181893 Tools Deployment ‐ Command Line/headless execution of initial Installation package
IW Framework ‐ Do not display a message that requires user interaction when going 
10.1.500 Tools and Technologies Information Worker 178791 Tools on or off the network
10.1.500 Tools and Technologies Installation Scripts 169622 Application Package Control ID Job Output ‐ Generate requires label type to have a customer
10.1.500 Tools and Technologies Menus 129732 Tools Shell Menu ‐ BAQ Tile behavior needs to be improved.
10.1.500 Tools and Technologies Menus 176147 Tools Menu Maintenance ‐ Security search result is including bo.names from menu 
10.1.500 Tools and Technologies Performance/Diagnostics 165727 Tools ICE Perf Diag Tool ‐ Returned data for last 5 backups against database in config 
ConfigCheck ‐ Remove trace flag T2453 from recommended flags and add warning 
10.1.500 Tools and Technologies Performance/Diagnostics 177356 Tools when this flag is set
10.1.500 Tools and Technologies Performance/Diagnostics 177383 Tools ICE Perf Diag Tool ‐ Added new Query search tab to the PDT
10.1.500 Tools and Technologies Performance/Diagnostics 181316 Tools Client Tracing ‐ Bring back the persist flag removed in 10.1.400
Tracing ‐ If an error message says "review log for more detailed information" we 
should provide the full path/name of the file so that customers are able to find it 
10.1.500 Tools and Technologies Performance/Diagnostics 181605 Tools without calling support.
10.1.500 Tools and Technologies Performance/Diagnostics 185255 Tools ICE Perf Diag Tool ‐ Added ability to export Trace Files (Server/Client) to a SQL 
Crystal Reports 2013 Upgrade ‐ Smart Client: Crystal runtime is now "SAP Crystal 
Reports runtime engine for .Net FrameWork 13 SP14"; Crystal Designer is now "SAP 
CRYSTAL REPORTS 2013 SP06 WINDOWS (32B)"; EWA Install, Report Application 
Server is now "SAP CR SERVER EMBEDDED 2013 SP06 OEM EDITION WINDOWS 
10.1.500 Tools and Technologies Reports Framework 169984 Tools (32B)"; .Net SDK Runtime is now "SBOP BI PLATFORM 4.1 SP06 ENTER .NET SDK 
10.1.500 Tools and Technologies Reports Framework 174184 Tools Create a Crystal Updater Tool to help testing Crystal Reports
Easy identification of Epicor print jobs on print server. Currently the names of print 
10.1.500 Tools and Technologies Reports Framework 174948 Tools jobs from Epicor provide no clue as the type of print job as the names are arbitrary.
10.1.500 Tools and Technologies Reports Framework 175774 Tools Report Style ‐ Copying Report Style is not working for Crystal Reports
10.1.500 Tools and Technologies Reports Framework 179298 Tools Report Style Enhancement for Output location for SSRS Database
10.1.500 Tools and Technologies Reports Framework 181219 Tools Report Style ‐ Support Copy Report Style for Bartender reports
10.1.500 Tools and Technologies Reports Framework 183181 Tools Provide an EDI definition for EDI reports (Also fixed in 10.1.400.x)
10.1.500 Tools and Technologies SDK 176197 Tools ICE SDK and Dev Utilities ‐ Now allows generation of resource strings with dashes in 
ICE SDK and Dev Utilities ‐ Created MSBuild extension for running Roslyn Diagnostic 
10.1.500 Tools and Technologies SDK 176794 Tools Analyzers
10.1.500 Tools and Technologies SDK 184878 Tools ICE SDK and Dev Utilities ‐ 10.1.500 release
10.1.500 Tools and Technologies Security Framework 153443 Tools External Datasources ‐ Hidden password is revealed by "Connection String" textbox
10.1.500 Tools and Technologies Security Framework 172727 Tools There is no report for Log On Failures

Page 143
Change List ‐ Application Enhancements Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


User Security ‐ User Account security maintenance ‐ User is able to Type on the 
10.1.500 Tools and Technologies Security Framework 173509 Tools "Language" and "Format Culture"  fields
10.1.500 Tools and Technologies Security Framework 182746 Tools SecurityFramework ‐ Capture User ID in the context information sent to the db
10.1.500 Tools and Technologies Security Framework 183083 Tools Field Security ‐ GUI Usability enhancements
10.1.500 Tools and Technologies Social Enterprise 130051 Tools Change password button should work for E10 generated profiles
10.1.500 Tools and Technologies Social Enterprise 131490 Tools Modern Shell ‐ Should not be able to pick social tilie if not configured ‐ or better 
Need a setting in the Admin area in ESE (or in the User Security Maintenance to 
10.1.500 Tools and Technologies Social Enterprise 157596 Tools allow you to disable a user from being able to run ESE.
10.1.500 Tools and Technologies Social Enterprise 177122 Tools Build script to autoupdate the version information of the UWP app to the version of 
Installing ESE against a Windows App server should change the Site Authentication 
10.1.500 Tools and Technologies Social Enterprise 179035 Tools to use the Windows auth.
10.1.500 Tools and Technologies Social Enterprise 179855 Tools Follow menu action in E10 right click for social shows too much
10.1.500 Tools and Technologies Social Enterprise 180635 Tools Modify loging to store peformance timing information in stand alone numeric field
10.1.500 Tools and Technologies Solution Workbench 155534 Tools Import now correctly uses the migrated legacy UD Data (Also fixed in 10.1.400.x)
10.1.500 Tools and Technologies Solution Workbench 173592 Tools Solution Element Entry ‐ Quick Search not included as part of predefined SW 
verify the deployment path is writable when the cab includes file deployment prior 
10.1.500 Tools and Technologies Solution Workbench 175197 Tools to installing the cab
10.1.500 Tools and Technologies Solution Workbench 182353 Tools Add notification message that regen DM is required after install solution
BAQ Import ‐ Let user select destination ESC workflow package when updatable 
10.1.500 Tools and Technologies Solution Workbench 185089 Tools queries are imported
10.1.500 Tools and Technologies Web Access 171915 Tools Web Forms ‐ When calling Epicor help need to pass the company ID in the 
Web Framework ‐ standarize outputs when using SetcontrolValue() and 
10.1.500 Tools and Technologies Web Access 172660 Tools TriggerControlChange()

Page 144
Change List ‐ Performance Enhancements Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


AP Invoice Balance Report ‐ Analyze sub reports and remove them  to improve 
10.1.500 Financial Management Accounts Payable 170646 Application performance
G/L Distribution Report ‐ Analyze sub reports and remove them to improve 
10.1.500 Financial Management Accounts Payable 170651 Application performance

10.1.500 Financial Management Accounts Payable 175955 Application Invoice Entry AP ‐ Corrected deadlock on PatchFld when tax connect is used

10.1.500 Financial Management Accounts Payable 176609 Application Invoice Entry AP ‐ Corrected deadlock on PatchFld when tax connect is used


Payment Entry ‐ Improved time on Group search which was taking 4.5 seconds to 
10.1.500 Financial Management Accounts Payable 180921 Application bring results
10.1.500 Financial Management Accounts Receivable 174984 Application Cash Receipt Entry ‐ Improved time during paste insert of lines
Cash Receipt Entry ‐ Improved time it takes to paste/insert invoices in the 
10.1.500.0 Financial Management Accounts Receivable 183295 Application Allocate Tab
Database 
10.1.500.0 Financial Management Accounts Receivable 187343 Specific Cash Receipt Entry ‐ Improved performance retreiving Customer
Bank Statement Processing ‐ Improved time to navigate between lines on the 
10.1.500 Financial Management Cash Management 179722 Application Bank statement for large groups (Also fixed in 10.1.400.x)
10.1.500 Financial Management Currency Management 148551 Application Currency Master ‐ Improved time when adding reporting currency
General Ledger Report ‐ Improved time to preview a fiscal period (Also fixed in 
10.1.500 Financial Management General Ledger 179894 Application 10.1.400.x)
Journal Detail Tracker ‐ Improved time for the the System to retreive 100 records 
10.1.500 Financial Management General Ledger 182960 Application in Journal Number Search
Journal Entry ‐ Improved performance in GLBook::GetByID() and 
10.1.500 Financial Management General Ledger 184633 Application GLJournalEntry::Update()
Consolidate to Parent ‐ Improved time in Consolidation Delta mode comparing to 
10.1.500 Financial Management Multi‐Site Management 174060 Application override mode (Posting)
Consolidate to Parent ‐  Improved time in Consolidation in Delta mode 
10.1.500 Financial Management Multi‐Site Management 175072 Application comparing to override mode (Report)
Consolidate to Parent ‐  Improved time in Consolidation in Delta mode 
10.1.500 Financial Management Multi‐Site Management 175073 Application comparing to override mode (Transfer process)

10.1.500 Financial Management Multi‐Site Management 175245 Application Consolidate to Parent ‐ Added option to prevent logging to increase performance

10.1.500 Financial Management Multi‐Site Management 180987 Application Consolidate to Parent ‐ Improved performance in Delta and retro consolidations


Work Queue ‐ Improved performance when the work queue for an employee 
10.1.500 Production Management Data Collection 176064 Application contains millions of records (Also fixed in 10.1.400.x)

10.1.500 Production Management Engineering 185186 Application Engineering Workbench ‐ Improved performance when expanding materials

Page 145
Change List ‐ Performance Enhancements Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


Job Entry ‐ Corrected possible blocking in the RFQSugg table while doing the 
10.1.500 Production Management Job Management 176381 Application GetDetails (Also fixed in 10.1.400.x)
Production Calendar ‐ Corrected toggling days in when calendar is used in a 
10.1.500 Production Management Job Management 178211 Application resource group with more than 800 resources
Shop Tracker ‐ Improved performance on a database with a lot of information 
10.1.500 Production Management Job Management 179133 Application (Also fixed in 10.1.400.x)
Job Entry ‐ Improved ATE/PDT performance for Get details with 3 operations/3 
10.1.500 Production Management Job Management 182166 Application materials
Calculate Global Scheduling Order ‐ Improved performance based on SQL 
10.1.500 Production Management Scheduling 148122 Application analysis

10.1.500 Production Management Scheduling 177217 Application Scheduling Engine ‐ Improved performance issue (Also fixed in 10.1.400.x)


10.1.500 Production Management Scheduling 180562 Application Calculate Global Scheduling Order ‐ Improved performance
10.1.500 Production Management Scheduling 180575 Application Job Scheduling Board ‐ Improved performance in Scheduling Boards
Time Sheet Entry ‐ Improved performance to approve a labor time record for a 
10.1.500.0 Production Management Time Management 181966 Application specific project
Customer Relationship  Customer ‐ Improved performance when adding a Ship To record on Customer 
10.1.500 Sales Management Management 176692 Application having multiple Ship To records (Also fixed in 10.1.400.x)

OrderDtl Write trigger ‐ Added a new IF clause to avoid blocking in PartSug when 
10.1.500 Sales Management Order Management 177385 Application the part does not have PartSug records (Also fixed in 10.1.400.x)
Fulfillment Work Bench ‐ Added Where Part of update statement to E9 to E10 
10.1.500 Sales Management Order Management 181388 Application migration in AutoAllocateTransfer.Queries.cs

10.1.500 Sales Management Order Management 181983 Application Order Entry ‐ Improved Order Entry performance with 20 Sales Kit Order lines

10.1.500.0 Sales Management Order Management 188357 Application Order Entry ‐ Improved performance between versions for order with 100 lines


Verify Existing Configurations ‐ Improved performance for existing process (Also 
10.1.500 Sales Management Product Configuration 176308 Application fixed in 10.1.400.x)
Configurator Conversion ‐ Corrected on demand conversions that run for any 
10.1.500 Sales Management Product Configuration 177503 Application record converted or newly added
Configurator Run Time ‐ Improved performance for Partition configurator (Also 
10.1.500 Sales Management Product Configuration 182221 Application fixed in 10.1.400.x)
Configurator Run Time ‐ Reduced the round trips to the server when a page 
10.1.500 Sales Management Product Configuration 182442 Application loads for Images
Advanced Material 
10.1.500 Supply Chain Management Management 178880 Application Material Request Queue ‐ Improved performance when retreiving many rows
Purchase Schedule Approval ‐ Added right query in 
10.1.500 Supply Chain Management Purchase Scheduling 181384 Application \Source\Server\Services\BO\POSchedule\POSchedule.Queries.cs

Page 146
Change List ‐ Performance Enhancements Epicor ERP 10.1.500

Release Functional Area Module SCR Type Description


500 ‐ Receipt Entry ‐ Improved time to add a Line when having too many Bin 
10.1.500.0 Supply Chain Management Shipping / Receiving 186891 Application records
Supplier Relationship  Database  Supplier Tracker ‐ Improved the length of time for the retieval of All invoices and 
10.1.500.0 Supply Chain Management Management 184689 Specific all purchase orders
10.1.500 Tools and Technologies BAQ Designer 173378 Tools BAQ Designer ‐ Improved performance on query with aggregate
10.1.500 Tools and Technologies BPM Designer 175897 Tools Improved responsiveness of assembly reference related UI

Supplier ‐  Corrected query in \Source\Server\Services\BO\PerCon\PerCon.cs  
10.1.500 Tools and Technologies General 181386 Application which is converted during E9 to E10 migration
Generic Import Process ‐ Improved performance for GL Control calculation for 
10.1.500 Tools and Technologies General 183552 Application bigger groups

10.1.500 Tools and Technologies General 183998 Application Conversion ‐ Improved conversion program cvbm0002 (Also fixed in 10.1.400.x)


Stored Procedures ‐ Improved performance in join in SD generated Sproc results 
10.1.500 Tools and Technologies General Framework 163670 Tools when join between differing types
Removed ZFieldDecimal from being a global cache item in the data layer (Also 
10.1.500 Tools and Technologies General Framework 166103 Tools fixed in 10.1.400.x)
EpiControls ‐ Improved performance when binding the Custom EpiCombo with a 
10.1.500 Tools and Technologies General Framework 173585 Tools field in Empbasic
UD Table Entry ‐ Updated Table/Page Lock settings to be more consistent when 
10.1.500 Tools and Technologies General Framework 177996 Tools UD tables created (Also fixed in 10.1.400.x)
General Framework ‐ Fixed memory that was not being released/reclaimed when 
10.1.500 Tools and Technologies General Framework 178278 Tools caching multiple of same form

10.1.500 Tools and Technologies Security Framework 180856 Tools Security ‐ Fixed Audit Log Policy check to not hit the database on every call

10.1.500 Tools and Technologies Social Enterprise 166192 Tools Upgrade ‐ Improved performance results in untrusted foreign key relationships


Improved performance in Solution installation since import of 1 RDD element 
10.1.500 Tools and Technologies Solution Workbench 171748 Tools takes up 5‐8 min
Improved performance when importing a Solution with a RDD in a version lower 
10.1.500 Tools and Technologies Solution Workbench 176769 Tools than that of a user (Also fixed in 10.1.400.x)

Page 147
Change List ‐ Education Courses Epicor ERP 10.1.500

Release Functional Area Course Name SCR Description


All All Courses 177952 Added Modules License topic to the Before You Begin section of all courses; Populated
10.1.500 topic with required module licenses appropriate to each course
Country Specific Accounts Payable 183477 Added a step on selecting a Standard or Extended report style to the View the Results in
10.1.500 the Tax Reconciliation Report topic
Country Specific Bank Statement Processing 184810 Added new sections: Custom Electronic Interfaces and Multi-Currency Processing
10.1.500
Country Specific Payroll 184810 Added new section Matching Payroll Checks
10.1.500
Country Specific Tax Engine 183477 Added a step on selecting a Standard or Extended report style to the Review Taxes in
10.1.500 the Tax Reconciliation Report topic
Financial Accounts Payable 180275 Updated content with information on the Select Group Payments button in the Group
10.1.500 sheet and the Actions > Select Group Payment option
10.1.500 Financial Accounts Payable 183355 Updated workshop - Create a Miscellaneous Debit Memo: Print a Debit Memo
Financial Accounts Payable 185684 Updated Partial Invoicing/Mass Create GRNI topics; Updated Daily Accounts Payable
10.1.500 Processing > AP Invoice Entry > AP Partial Invoicing
10.1.500 Financial Accounts Payable 52028 Added references to the hidden Invoice Payment Selection fields
10.1.500 Financial Accounts Receivable 175176 Fixed navigation issue in all databases
10.1.500 Financial Accounts Receivable 179684 Updated content describing the new functionality for transferring multiple AR invoices
10.1.500 Financial Advanced General Ledger 185274 Updated content to improve the course flow
10.1.500 Financial Credit Card Processing 140724 Updated content with updated information about credit card processing
Financial Deferred Revenue Accounting 185151 Updated the Posted Invoice Update topic based on the functionality of changing
10.1.500 payment method.
10.1.500 Financial Delta Financials 185119 Added the 10.1.500 Delta Financials Course.
Financial Posting Engine 185286 Removed the following workshops due to the data being created in the pristine database
(so they are unnecessary) or because they no longer work: Workshop - Create a Chart
of Accounts, Workshop - Add a Query to a Posting Rule (BAQ), Workshop - Use the
Modified Posting Rule (BAQ), Workshop - Use Lookup Table (Steps to add a chart of
account, segments, and segment values); Updated content to improve the course flow
10.1.500
Financial Tax Engine 129894 Updated course to have step-by-step approach; Added workshops on functionalities and
10.1.500 reports
Financial Tax Engine 181584 Updated Supplier Tax Setup with information about the Tax Liability, Tax Category, and
Tax Exempt fields defaulting from the purchase order when creating AP invoices with a
10.1.500 receipt line, an unreceived line, or an advanced billing line.
Manufacturing Delta Manufacturing and 184828 Added 10.1.500 version of the delta course.
10.1.500 Supply Chain
Manufacturing Engineering 173558 Added a note to the Resource Group Maintenance overview to explain that you cannot
view or maintain resource groups or resources that were created in a site other than the
10.1.500 current site

Page 148
Change List ‐ Education Courses Epicor ERP 10.1.500

Release Functional Area Course Name SCR Description


Manufacturing Introduction to Project 184821 Updated these workshops: Workshop - Define Project Costs (Step 8 - Calculated CTC
Management Column results changed from 80 to 0 for Labor Hours and Burden Hours), Workshop -
Review Project Costs (Step 7 - Calculated CTC Costs results changed from 80 to 0 for
Labor Hours and Burden Hours), Workshop - Complete and Close Project (Step 3 -
Changed 'In the Status field, select Completed' to 'In the Status field, verify the
Completed status displays, Step 4 - Changed 'In the Date Complete field, select today's
date' to 'In the Date Complete field, verify today's date displays', Step 6 - Changed 'The
Closing a Project is an irreversible action. Do you want to continue? message displays.'
to 'Do you want to close the Project?' message displays.')
10.1.500
Manufacturing Job Management, Quality 182692 Updated labor reporting workshops from using MES to Time and Expense
Assurance, Knowledge Camp
10.1.500
Manufacturing Job Splits 184818 Updated these workshops: Create a Duplicate Sales Order, Split the Job, Review the
10.1.500 Results
Manufacturing Manufacturing Execution 184817 In Company Configuration, removed ‘Detail’, ‘General’, and ‘Job’ sheets topics; In
System Employee Maintenance, removed the ‘Detail and Production Info’ topic; In the Workshop
- Modify an Employee Record, removed setup steps for Linda Carter. The course is
using Jack Sawyer only; Removed ‘Start Indirect Activity’, ‘Start Rework Activity’, ‘End
Activity Options’ topics; Updated workshops: Workshop - Start and End Activity, Start
Setup Activity, End Setup Activity, Start Production Activity, End Production Activity,
Clock Out; Deleted 'Job Tracker’, ‘Part Tracker’ and ‘Work Queue Functionality’ topics;
Updated Review the Work Queue, and Adjust Inventory workshops.

10.1.500
Manufacturing Planning Contracts 184845 Updated these workshops: Workshop - Create Warehouses and Bins (Deleted step 5),
Workshop - Review Material Request Transaction (Added step 1)

10.1.500
10.1.500 Manufacturing Project Billing 122580 Added the Capture Revenue workshop
Manufacturing Project Billing - Fixed Fee 184824 Updated workshop: Record Activity Detail - Foundation (Step 3: Added a new row to the
table as follows: Field: Date of Customer Approval; Data: Same date as the Date on
10.1.500 Site)
Manufacturing Project Management 153320 Updated the Company Configuration Setup to add content on the new Allow Move Jobs
10.1.500 Across Sites field on the Production sheet
Manufacturing Project Management 175007 Added instructions to create the primary project job
10.1.500

Page 149
Change List ‐ Education Courses Epicor ERP 10.1.500

Release Functional Area Course Name SCR Description


Manufacturing Project Management 175007 Redesigned the flowchart and it now includes the creation of a "primary" project job;
Foundation Added a workshop to create the primary project job; Updated references to tabs that
10.1.500 have now been combined on the Related tab; Updated paths
Manufacturing Quality Assurance 180537 Added these workshops to the Job Material Inspection Setup topic: Workshop - Create
Part, Workshop - Adjust Quantities, Workshop - Create Demand, Workshop - Enter Job

10.1.500
Manufacturing Scheduling 156746 Updated the Multi-Job functionality description to include the new choices in the
Schedule a Job option; Updated the workshop Reschedule the Successor Job Using
10.1.500 Schedule Multi-Job to explain you can select Job-All Jobs from the dropdown box
Supply Chain Advanced Material 176821 Added content to explain that the Time Zone Offset field in Site Configuration is disabled
10.1.500 Management
Supply Chain Advanced Material 182692 Updated content to include Package Control related functionalities
10.1.500 Management
Supply Chain Multi-Company 178877 Added content about the Unskip function to the Global Record Maintenance > Global
10.1.500 Parts topic
Supply Chain Multi-Company Configurator, 176179 Added a note that the Order Job Wizard is disabled if No Job is selected as the Job
Job Management, Order Type
10.1.500 Management
Supply Chain Purchase Management 181393 Added content about the Calculate PO Taxes and Ready to Process check boxes to the
Company Configuration topic; Updated accompanying workshop and PO Entry
10.1.500 workshops accordingly
Supply Chain Purchase Management 182781 Updated the New PO Suggestions > Workshop - Review Suggestions > Generate
Purchase Orders topic to include content about the Review Suggestions enhancements
10.1.500
Supply Chain Shipping and Receiving 156190 Added Site Configuration Control topic to explain how the Receiving Warehouse,
Receiving Bin, Shipping Warehouse and Shipping Bin defaults work, and how they can
also be set at the part level; Added content to the Company Configuration topic to
explain some of the factors that work with the Use Last Warehouse/Bin check box to set
10.1.500 defaults at the receipt line level
10.1.500 Supply Chain Shipping and Receiving 183465 Added overview for new Customer Shipment Summary program
Supply Chain Suppliers 174692 Added a new Supplier Tracker > Links > Purchase Orders topic
10.1.500

Page 150
Change List ‐ Education Courses Epicor ERP 10.1.500

Release Functional Area Course Name SCR Description


Tools Advanced BPM 183528 Updated workshops: Populate Data in Updatable Dashboard (No longer asks users to
download & import dashboard definition. It is now part of the Demo Database. The
dashboard is named CustContUpdate. This workshop requires Advanced BAQ rights.
Both manager & epicor have these rights in MT); Set Text Properties (Example no
longer uses Custom Code action. The same logic is now done using the Set Field
action.); Create a Form for User Input (Example no longer uses Custom Code action.
The same logic is now done using the Set Field action.); Added workshop Populate
Additional Fields from a Related Table; Updated section Debugging Using Visual Studio
10.1.500
Tools BAQ 181378 Identified which workshops are not available in a Multi-Tenant environment so that users
10.1.500 are aware of limitations
Tools BPM 183528 Removed Workshop - Set Log Created By and Date; Added workshops:
Method Directives > Workshop Set Default Fields, Data Directives > Workshop -
Monitor Data Changes Using Change Log; Updated workshop: Create and Use Hold
10.1.500 Type
Tools BPM, Advanced BPM 181366 Identified which workshops are not available in a Multi-Tenant environment so that users
10.1.500 are aware of limitations
Tools Configurator, BPM, Advanced 182953 Updated steps to accommodate users in the Epicor Cloud ERP environment
BPM, SSRS, Customization
10.1.500
Tools Embedded Customization, 181373 Updated steps to accommodate users in the Epicor Cloud ERP environment
10.1.500 Advanced Customization
Tools Embedded Customization, 185505 Updated steps to accommodate users in the Epicor Cloud ERP environment; Added
Advanced Customization content to indicate the differences, including that you log in through an MT environment;
Updated workshops with custom columns; for the MT environment, users can skip the
10.1.500 Extended UD Tables workshops.
Tools Introduction to Dashboards, 181379 Updated steps to accommodate users in the Epicor Cloud ERP environment; including
Advanced Dashboards, Build in the Advanced Dashboards course that the CustContUpdate dashboard is now
10.1.500 an Executive Dashboard available to All Companies
Tools Introduction to Epicor ERP - 179928 Published Introduction to Epicor ERP - Foundations On Demand Course to the Epicor
10.1.500 Foundations Learning Center
Tools Performance and Diagnostic 175790 Added details about the components involved in load distribution; Added brief
10.1.500 Advanced Course description of Application Request Routing (ARR)
Tools System Setup 183517 Updated the examples in the Configuration Settings File workshop and Run Time
Arguments workshops to use customize search options through the configuration
10.1.500 settings file
10.1.500 Tools Trackers Foundations 183755 Created new Trackers Foundations On Demand Course

Page 151
Additional information is available at the Education and
Documentation areas of the EPICweb Customer Portal. To access
this site, you need a Site ID and an EPICweb account. To create an
account, go to http://support.epicor.com.

You might also like