Sunteți pe pagina 1din 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


EpicorERP10.1ChangeList
10.1.400to10.1.500

Disclaimer
Thisdocumentisforinformationalpurposesonlyandissubjecttochangewithoutnotice.Thisdocumentandits
contents,includingtheviewpoints,datesandfunctionalcontentexpressedhereinarebelievedtobeaccurateasofits
dateofpublication.However,EpicorSoftwareCorporationmakesnoguarantee,representationsorwarrantieswith
regardtotheenclosedinformationandspecificallydisclaimsanyapplicableimpliedwarranties,suchasfitnessfora
particularpurpose,merchantability,satisfactoryqualityorreasonableskillandcare.AseachuserofEpicorsoftwareis
likelytobeuniqueintheirrequirementsintheuseofsuchsoftwareandtheirbusinessprocesses,usersofthisdocument
arealwaysadvisedtodiscussthecontentofthisdocumentwiththeirEpicoraccountmanager.Allinformationcontained
hereinissubjecttochangewithoutnoticeandchangestothisdocumentsinceprintingandotherimportantinformation
aboutthesoftwareproductaremadeorpublishedinreleasenotes,andyouareurgedtoobtainthecurrentrelease
notesforthesoftwareproduct.Wewelcomeusercommentsandreservetherighttorevisethispublicationand/or
makeimprovementsorchangestotheproductsorprogramsdescribedinthispublicationatanytime,withoutnotice.
TheusageofanyEpicorsoftwareshallbepursuanttoanEpicorenduserlicenseagreementandtheperformanceof
anyconsultingservicesbyEpicorpersonnelshallbepursuanttoEpicor'sstandardservicestermsandconditions.Usage
ofthesolution(s)describedinthisdocumentwithotherEpicorsoftwareorthirdpartyproductsmayrequirethepurchase
oflicensesforsuchotherproducts.Whereanysoftwareisexpressedtobecompliantwithlocallawsorrequirements
inthisdocument,suchcomplianceisnotawarrantyandisbasedsolelyonEpicor'scurrentunderstandingofsuchlaws
andrequirements.Alllawsandrequirementsaresubjecttovaryinginterpretationsaswellastochangeandaccordingly
Epicorcannotguaranteethatthesoftwarewillbecompliantanduptodatewithsuchchanges.Allstatementsof
platformandproductcompatibilityinthisdocumentshallbeconsideredindividuallyinrelationtotheproductsreferred
tointherelevantstatement,i.e.,whereanyEpicorsoftwareisstatedtobecompatiblewithoneproductandalso
statedtobecompatiblewithanotherproduct,itshouldnotbeinterpretedthatsuchEpicorsoftwareiscompatible
withbothoftheproductsrunningatthesametimeonthesameplatformorenvironment.Additionallyplatformor
productcompatibilitymayrequiretheapplicationofEpicororthirdpartyupdates,patchesand/orservicepacksand
Epicorhasnoresponsibilityforcompatibilityissueswhichmaybecausedbyupdates,patchesand/orservicepacks
releasedbythirdpartiesafterthedateofpublicationofthisdocument.Epicorisaregisteredtrademarkand/or
trademarkofEpicorSoftwareCorporationintheUnitedStates,certainothercountriesand/ortheEU.Allother
trademarksmentionedarethepropertyoftheirrespectiveowners.CopyrightEpicorSoftwareCorporation2016.
Allrightsreserved.Nopartofthispublicationmaybereproducedinanyformwithoutthepriorwrittenconsentof
EpicorSoftwareCorporation.
Epicor10.1.500
Revision:November2016
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


SalesOrderShipmentStatusIncorrectShipToisdisplayedwhennotusingdefault
10.1.500 ExecutiveManagement ExecutiveDashboard 71101 Application ShipTo
10.1.500 ExecutiveManagement ExecutiveDashboard 83286 Application PartWhereUsedReferencedesignatorsarenotfilteredcorrectly
PlantPerformancezSVPlantPerformanceBAQdisplayserrorbecauseformatfor
10.1.500 ExecutiveManagement ExecutiveDashboard 169973 Application calculatedfield"EffPerc"isinsufficient
10.1.500 ExecutiveManagement ExecutiveDashboard 178239 Application SalesOrderBacklogStatusOpenValueisnotcalculatedproperly
SalesOrderBacklogStatusOpenQtyvaluedisplayedwithoutapplyingUOM
10.1.500 ExecutiveManagement ExecutiveDashboard 178663 Application Conversion
InvoiceTrackerAPInvoiceTrackerisnotrefreshedwhennewrecordisselectedin
10.1.500 FinancialManagement AccountsPayable 84072 Application SupplierTracker
10.1.500 FinancialManagement AccountsPayable 91735 Application AgedPayablesPOreferenceisnotdisplayedforDMRdebitmemos
InvoiceEntryAPGroup>Detaildisplaysamountswithoutsignorconversiontothe
10.1.500 FinancialManagement AccountsPayable 93049 Application basecurrency
10.1.500 FinancialManagement AccountsPayable 103436 Application LoggedinvoiceEntryCannotdeletegroupifGroupIDwasusedbefore
10.1.500 FinancialManagement AccountsPayable 106524 Application InvoiceEntryAPCentralPaymentcheckboxisnotselectedforDMRdebitmemo
PaymentEntryTotalAPAmountdifferenceof0.01afterchangingpayment
10.1.500 FinancialManagement AccountsPayable 124032 Application exchangerate(Alsofixedin10.1.400.x)
10.1.500 FinancialManagement AccountsPayable 124947 Application PaymentInstrumentStatusValidationerrorisdisplayedwhenStatusischanged
VoidPaymentEntryLegalNumbernotvoidedafterCancellingTransactionin
10.1.500 FinancialManagement AccountsPayable 134641 Application ReviewJournal
CustomerTrackerUnknownisdisplayedasdescriptionandtheamountiswitha
10.1.500 FinancialManagement AccountsPayable 153775 Application negativesymbol,whenthetransactionisanadjustment(Alsofixedin10.1.400.x)
10.1.500 FinancialManagement AccountsPayable 159051 Application ElectronicInterfaceEWATheprogramisnotavailableinEWA
10.1.500 FinancialManagement AccountsPayable 159056 Application APLetterofCreditClosingProcess(EWA)SupplierbuttontriggersnoactioninEWA
10.1.500 FinancialManagement AccountsPayable 161468 Application PaymentInstrumentPayableMultipleinterfaceissues
10.1.500 FinancialManagement AccountsPayable 161473 Application PaymentInstrumentStatusMultipleinterfaceissues
10.1.500 FinancialManagement AccountsPayable 161494 Application PaymentInstrumentTrackerAPMultipleinterfaceissues
InvoiceEntryAPTransactiondoesnotbalanceforIntercompanyTax,duetoan
10.1.500 FinancialManagement AccountsPayable 165780 Application incorrectupdateofnondeductibletax
PaymentInstrumentReceivable(EWA)CannotgenerateorvoidLegalNumbers,
10.1.500 FinancialManagement AccountsPayable 170901 Application optionisnotactive
PaymentInstrumentPayableBalancefielddisplaysNewbalanceinsteadoforiginal
10.1.500 FinancialManagement AccountsPayable 172393 Application Balance
PaymentInstrumentWriteOffItispossibletomovePItoSettledstage,evenwhen
10.1.500 FinancialManagement AccountsPayable 172452 Application previousstagewasnotposted
10.1.500 FinancialManagement AccountsPayable 173340 Application AdjustmentAPUnabletodoanadjustmenttoaDebitMemo,errorisdisplayed
10.1.500 FinancialManagement AccountsPayable 173415 Application PaymentTrackerBank/RemitToinformationisnotdisplayed
ElectronicInterfaceWhenusingtheListtabtocreateanewrecord,anerror
10.1.500 FinancialManagement AccountsPayable 174062 Application messageisdisplayed

Page2
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


PaymentEntryIncorrecttaxcalculationformanualnegativetaxeswhendoing
10.1.500 FinancialManagement AccountsPayable 174445 Application partialpayment
FinancialManagement AccountsPayable 174942 Application PaymentEntryPaymentAmountdoesnotreverttosystemamountwhenEnter
10.1.500 PaymentTotalisunchecked
InvoiceEntryAPADJCSTTransactioniscalculatingincorrectamountcausing
10.1.500 FinancialManagement AccountsPayable 175420 Application incorrectinventoryacctbalance
10.1.500 FinancialManagement AccountsPayable 175431 Application PaymentEntryInvoicepaymenttaxgeneratesanoutofbalancetransaction
10.1.500 FinancialManagement AccountsPayable 175452 Application PaymentInstrumentPayableTransactionDatesonGroupandPIcanbeblank
InvoiceEntryAPADJMTLtransactionisnotcreatedafterperforminglatecostin
10.1.500 FinancialManagement AccountsPayable 176539 Application Jobmaterialforfullyissuedtransaction
InvoiceEntryAPDuplicatevoidloggedinvoicetransactionspostedwhenpostingan
10.1.500 FinancialManagement AccountsPayable 178266 Application overriddenloggedinvoicewithissues(Alsofixedin10.1.400.x)
PaymentInstrumentUpdateUsing2PIwithsameIDmakes1nonselectable(Also
10.1.500 FinancialManagement AccountsPayable 178323 Application fixedin10.1.400.x)
TaxResultsWhenSalesTaxismarkedasRoundDown,themanualTaxrecords
10.1.500 FinancialManagement AccountsPayable 178324 Application resultsarenotroundedcorrectly
10.1.500 FinancialManagement AccountsPayable 178530 Application TaxBoxReportWhenSummaryOnlyisselected,reportignoresthecurrency
InvoiceEntryAPAttachmentsaddedatLoggedInvoiceEntrydonotdisplayinAP
10.1.500 FinancialManagement AccountsPayable 178630 Application Invoiceentryortracker
10.1.500 FinancialManagement AccountsPayable 178810 Application PaymentEntryChecksaregeneratebyinvoicesinsteadofsupplier
10.1.500 FinancialManagement AccountsPayable 179015 Application InvoiceEntryAPBankRemitInfodisplaysincorrectlyonAPInvoiceHeader
InvoiceEntryAPTaxlineautopopulatedeventhoughinvoicedateisentered
10.1.500 FinancialManagement AccountsPayable 179113 Application earlierthantaxrateeffectivedate
TaxBoxReportSummaryreportdoesnotprintModulewhenAmountTypeisTax
10.1.500 FinancialManagement AccountsPayable 179467 Application AmountandBoxSignis+
APInvoiceEditListSelfAssedTaxamountisnotprintedforinvoicecurrency<>
10.1.500 FinancialManagement AccountsPayable 179885 Application basecurrency
InvoiceEntryAPIncorrectRateTypeusedwhensetdifferentlyfromPurchaseand
10.1.500 FinancialManagement AccountsPayable 180199 Application ExpenditureinCompanyConfig
PaymentEntryFixeddiscountwithoutdiscountdatedoesnotbringthediscount
10.1.500 FinancialManagement AccountsPayable 180535 Application whenpaying
PaymentEntryAPprocessPaymentsformBankexportfilepathgetsremoved
10.1.500 FinancialManagement AccountsPayable 181245 Application onceyouchangethenameofthefile
PaymentEntrySelectionwindownotcalculatingthecandidatesandtheremaining
10.1.500 FinancialManagement AccountsPayable 182044 Application amount
PaymentInstrumentPayableSystemdisplaysanerrorwhentryingtocalculate
10.1.500 FinancialManagement AccountsPayable 182110 Application morethan1APinvoicestosamePaymentInstrument(Alsofixedin10.1.400.x)
10.1.500 FinancialManagement AccountsPayable 182345 Application PaymentInstrumentPayableTreeviewcollapseswhendeletingallocatedinvoices

Page3
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


PurchaseListReportUnabletolaunchform;Epicor10stopsworkingwiththe
10.1.500 FinancialManagement AccountsPayable 182350 Application message:Epicorhasstoppedworking
APLetterOfCreditReportFilterSupplierlistrowisdisabledonNewToolbar
10.1.500 FinancialManagement AccountsPayable 182632 Application buttonclick
InvoiceEntryAPExpenseInvoiceamountsaregeneratedwiththeexchangerate
10.1.500 FinancialManagement AccountsPayable 183023 Application fromtheExpenseDate
PaymentEntryErrormessagewhenoverridingchecknumberaftersystem
10.1.500 FinancialManagement AccountsPayable 183209 Application consideringpaymentsnotinthecheck
APInvoiceBalanceReportIncorrectlycalculatingClosingCreditandtakeasDebit
10.1.500 FinancialManagement AccountsPayable 183440 Application theRevaluationamounts
APInvoiceBalanceReportCalculatesincorrectlytheClosingCreditandtakeas
10.1.500 FinancialManagement AccountsPayable 183440 Application DebittheRevaluationamounts
InvoiceEntryAPDueDatenotsetonAPInvoiceHeadersaveaccordingtoTerms
10.1.500 FinancialManagement AccountsPayable 184010 Application DueNumberofDays
10.1.500 FinancialManagement AccountsPayable 184420 Application PaymentEntryEditlistprintsblankpageswhenselectingA4page
FinancialManagement AccountsPayable 184498 Application PaymentInstrumentStatusImpossibletochangestatusiflegalnumberisassigned
10.1.500 toPIPayables
10.1.500 FinancialManagement AccountsPayable 184629 Application OpenInvoiceLoadAPHavingblanktermscode,systemallowssavingtheinvoice
APInvoiceBalanceReportReportdoesnotworkwhenthereisadebitmemo
10.1.500 FinancialManagement AccountsPayable 184703 Application involved
InvoiceEntryAPInvoicewithselfassessmenttaxisdebitingAccrualandcrediting
10.1.500 FinancialManagement AccountsPayable 184771 Application Contra
PaymentInstrumentWriteOffUnnecessaryURiscreatedforOnAccountPayment
10.1.500 FinancialManagement AccountsPayable 185165 Application Instruments(Alsofixedin10.1.400.x)
PaymentEntryAPPaymentEntrydoesnotreducetheinvoicebalanceofan
10.1.500 FinancialManagement AccountsPayable 185341 Application overflowedcheckrun
ReceivedbutnotInvoicedTheReportisnotgroupingthePOfromthesame
10.1.500 FinancialManagement AccountsPayable 185569 Application Supplier
1099ProcessingConversionProgramcvap0042(9010)runsforallcompanieswith
10.1.500 FinancialManagement AccountsPayable 186239 Application CSFUS
InvoiceEntryAPIncorrectUnitCostforDropShipmentreceiptlinewhenusinga
10.1.500 FinancialManagement AccountsPayable 186423 Application CostPerdifferentthan/1
PaymentTrackerClearedDateshowsBankStatementProcessingApplyDate
10.1.500 FinancialManagement AccountsPayable 187616 Application insteadoftheClearDateassignedtotheline
TaxReconciliationReportIncorrectreferenceonLegal/DocNumberforInvoice
10.1.500 FinancialManagement AccountsPayable 188617 Application PaymentandApplyDebitMemotransactions
PaymentEntryUnabletoenterbankaccountdetailsinPaymentEntryfor
10.1.500 FinancialManagement AccountsPayable 189390 Application electronicpaymentinBank/Remittab
10.1.500 FinancialManagement AccountsReceivable 64802 Application InvoiceEntryARPackingSlipBrowsedisplaysbilltocustomerinSoldTocolumn

Page4
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


PaymentInstrumentReceivableUnabletoupdateHeaderdetailwithUnapplied
10.1.500 FinancialManagement AccountsReceivable 145595 Application amountofzero
ARInvoiceFormDiscountamountisprintedaspositiveamountanddiscountlabel
10.1.500 FinancialManagement AccountsReceivable 150817 Application has%sign
10.1.500 FinancialManagement AccountsReceivable 153879 Application InvoiceEntryAREditlistdoesnotprocessazerovalueinvoice
PaymentInstrumentStatusChangeApplicationErrormessageisdisplayedwhen
10.1.500 FinancialManagement AccountsReceivable 155425 Application BankAccountischanged
PaymentInstrumentStatusChangeNopostprocessismadeifafterselectthePI
10.1.500 FinancialManagement AccountsReceivable 156760 Application thetargetstatusischanged
PaymentInstrumentTrackerARGLTransactiondescriptionisdisplayedemptyfora
10.1.500 FinancialManagement AccountsReceivable 156820 Application CancellationofaPI
FinancialManagement AccountsReceivable 157463 Application CashReceiptEntryInvoicebalancebecomesnegativeinbasecurrencywhenitis
10.1.500 positiveindoccurrency
ARLetterofCreditClosingProcess(EWA)Customerbuttontriggersnoactionin
10.1.500 FinancialManagement AccountsReceivable 158978 Application EWA
10.1.500 FinancialManagement AccountsReceivable 160594 Application PaymentInstrumentReceivable(EWA)PaymentinstrumentTypeisnotfiltered
10.1.500 FinancialManagement AccountsReceivable 161463 Application PaymentInstrumentReceivableMultipleinterfaceissues
10.1.500 FinancialManagement AccountsReceivable 161483 Application PaymentInstrumentUpdateMultipleinterfaceissues
PaymentInstrumentStatusChangeErrormessageappearswhenselecting
10.1.500 FinancialManagement AccountsReceivable 162734 Application PaymentInstrument:Avalidgroupisrequired
FinancialManagement AccountsReceivable 165285 Application ARInvoiceBalanceReportWhenfilterismadebyPIOptionthenonlyUR(PI)
10.1.500 displaysbutnotPIandPIappliedtoinvoice
FinancialManagement AccountsReceivable 165676 Application InvoiceEntryARTaxvalueisaddedtoremainingdepositamountinshipment
10.1.500 invoicewhenusingTaxShipmentNetmovement
SalesAnalysisTheInvDatecolumnisnotlargeenoughtoaccommodateadatein
10.1.500 FinancialManagement AccountsReceivable 165708 Application thedd/mm/yyyyformat
PaymentInstrumentStatusChangeSavingaftertryingtodeletelineusing
10.1.500 FinancialManagement AccountsReceivable 167074 Application keyboarddisplaysanerror
IntrastatRemove'BlockZeroWeight"fromCompanyConfiguration,anduseonly
10.1.500 FinancialManagement AccountsReceivable 168417 Application "WeightRequired"inHSCommoditycodetovalidateweight
ProcessFinance/LateChargeUnabletoruntwoprocessatthesametime,error
10.1.500 FinancialManagement AccountsReceivable 170625 Application validationisdisplayed
10.1.500 FinancialManagement AccountsReceivable 171002 Application PaymentInstrumentStatusChangeSeveralIssueschangingtheStatus
PaymentInstrumentStatusChangeLegalNumbersarenotvoidedafternotposting
10.1.500 FinancialManagement AccountsReceivable 172116 Application thestatuschange
PaymentInstrumentReceivableGroupshouldnotbedeleted,ifthereare
10.1.500 FinancialManagement AccountsReceivable 172519 Application unpostedpaymentinstruments
PaymentInstrumentStatusChangeWhencanceling,theheaderoftheARPIisnot
10.1.500 FinancialManagement AccountsReceivable 172524 Application updatedtocancel

Page5
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


PaymentInstrumentStatusChangeVoidingARPIwithonAccountBalanceissent
10.1.500 FinancialManagement AccountsReceivable 172547 Application toReviewJournal
CashReceiptEntryMiscPaymentdoesnotrecalculateTaxesfortheTaxLiability
10.1.500 FinancialManagement AccountsReceivable 173675 Application selected
10.1.500 FinancialManagement AccountsReceivable 173808 Application PaymentInstrumentReceivableSeveralissuesfound
SalesListReportRibbonMenuinterfaceisnotdisplayedcorrectforPrintSalesList
10.1.500 FinancialManagement AccountsReceivable 174577 Application form
InvoiceEntryARCreditMemoLinewithProductTaxCategory,errorswhenclicking
10.1.500 FinancialManagement AccountsReceivable 174662 Application GetDefaultbutton
10.1.500 FinancialManagement AccountsReceivable 174797 Application CashReceiptEntryCombinedfixforgeneralperformanceofPEandCashReceipt
10.1.500 FinancialManagement AccountsReceivable 174888 Application InvoiceEntryARWhenpostingPaymentInstrument,PITypeischanged
CashReceiptEntryTheExchangeRatefieldisdisabledwhenmodifyingRateor
10.1.500 FinancialManagement AccountsReceivable 174962 Application changetab
10.1.500 FinancialManagement AccountsReceivable 175174 Application PaymentInstrumentReceivableLegalnumbersoptionsdisabledwhenPIisloaded
PaymentInstrumentStatusChangeUnnecessaryGLJournalsaregeneratedforPI
10.1.500 FinancialManagement AccountsReceivable 175408 Application ReceivableAccountswhenareverseofstatusismade
ConversionWorkbenchGLConvertCurrencyRevalueAcctFormatdoesnotupdate
10.1.500 FinancialManagement AccountsReceivable 175435 Application the%completeintheConversionWorkbench(Alsofixedin10.1.400.x)
10.1.500 FinancialManagement AccountsReceivable 175655 Application InvoiceEntryARClickingRefreshresetsselectedlinebacktoline1
InvoiceEntryARCancellationandCorrectioninvoicedoesnotusethenewInvoice
10.1.500 FinancialManagement AccountsReceivable 175663 Application date
AgedReceivablesOnAccountPaymentInstrumentvalueisdoubledwhenchanging
10.1.500 FinancialManagement AccountsReceivable 175694 Application status
PaymentInstrumentReceivablePaymentInstrumentARcannotpostmultiplePIto
10.1.500 FinancialManagement AccountsReceivable 175701 Application PortfoliowhenFirstGLisBank
ARInvoiceBalanceReportInvalidCustomerBalanceinARInvoiceBalanceReport
10.1.500 FinancialManagement AccountsReceivable 176014 Application afterPIApproval
ProcessFinance/LateChargeDoesnotaddrowsonfiltertabswhenclickingthe
10.1.500 FinancialManagement AccountsReceivable 176575 Application Newbutton
CashReceiptEntryUnnecessaryRoundingremovedfromUnappliedCashReceipt,
10.1.500 FinancialManagement AccountsReceivable 176665 Application butisnotappliedinCM(Alsofixedin10.1.400.x)
PaymentInstrumentStatusChangeCannotCancelPIafterrevaluation(Alsofixed
10.1.500 FinancialManagement AccountsReceivable 176865 Application in10.1.400.x)
CashReceiptEntryTranGLCforcreditmemoisnotgeneratedformainbookwith
10.1.500 FinancialManagement AccountsReceivable 176937 Application mappedrevisionusingmanuallyreview
ARInvoiceBalanceReportDebitnotesappliedtoinvoicesarenottakenin
10.1.500 FinancialManagement AccountsReceivable 177262 Application considerationforB/F
PaymentInstrumentUpdateUsing2PIwithsameIDmakes1nonselectable(Also
10.1.500 FinancialManagement AccountsReceivable 177555 Application fixedin10.1.400.x)

Page6
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


10.1.500 FinancialManagement AccountsReceivable 177596 Application InvoiceEntryARPaymentMethodfield2issues
10.1.500 FinancialManagement AccountsReceivable 177626 Application InvoiceTrackerAROrderNumbersnotdisplayedinSummary/Headertab
PaymentInstrumentReceivableUnabletocreateanewgroupwiththesameIDas
10.1.500 FinancialManagement AccountsReceivable 177905 Application ananotheronepostedbefore
ARInvoiceFormGetRebateswithLSkipcheckboxdisplaying"Inputstringwasnot
10.1.500 FinancialManagement AccountsReceivable 178353 Application inacorrectformat"error
FinancialManagement AccountsReceivable 178507 Application InvoiceEntryARUnabletoprintInvoiceformswith"Prenumberedformats"in
10.1.500 legalnumber
CashReceiptEntryUnnecessaryRoundingremovedfromUnappliedCashReceipt,
10.1.500 FinancialManagement AccountsReceivable 178651 Application butisnotappliedinCM(Alsofixedin10.1.400.x)
PaymentInstrumentReceivablewindowisnotclosedwhensaveconfirmation
10.1.500 FinancialManagement AccountsReceivable 178795 Application messageisNO
InvoiceEntryARTaxisnotrecalculatedwhendeletingthediscountamountand%
10.1.500 FinancialManagement AccountsReceivable 179014 Application withcertainconditions
10.1.500 FinancialManagement AccountsReceivable 179195 Application G/LDistributionReportObjectErrorwhenrunningbyfiscalperiod
ARInvoiceFormGetRebatesformreturnsmorerebatecontractsthanselected
10.1.500 FinancialManagement AccountsReceivable 179241 Application (Alsofixedin10.1.400.x)
ApplyCreditMemoURPaymentInstrumentcannotbeapplied(Alsofixedin
10.1.500 FinancialManagement AccountsReceivable 179786 Application 10.1.400.x)
10.1.500 FinancialManagement AccountsReceivable 179880 Application CashReceiptsEditListIncorrectbankfeeaccountinEditlist
PERUCashReceiptEntryShouldcalculateWHtaxonInvoicetotalinclusiveoftaxes
10.1.500 FinancialManagement AccountsReceivable 179991 Application (Alsofixedin10.1.400.x)
FinancialManagement AccountsReceivable 179996 Application PaymentInstrumentReceivableUnabletochangeARPIstatustoApplytoBankif
10.1.500 bothCompanyandPITypehaveFirstGLUpdateStage=ApplytoBank
10.1.500 FinancialManagement AccountsReceivable 180288 Application PaymentInstrumentReceivableUnabletoenterbookandaccountforbankfee
10.1.500 FinancialManagement AccountsReceivable 180467 Application InvoiceEntryARRMAnotdisplayingcost,whentheUnitPriceiszero
InvoiceTrackerARInEpicor10.1,thePersonalizationToolsdonotworkinARInvc
10.1.500 FinancialManagement AccountsReceivable 180545 Application Tracker,Header>Paymentstab
PaymentInstrumentReceivableWhenRetrievingARgeneratedPI,thereisno
10.1.500 FinancialManagement AccountsReceivable 180705 Application allocatedInvoice
PaymentInstrumentReceivableOnaccountoptionissettotruewhenformis
10.1.500 FinancialManagement AccountsReceivable 180850 Application refreshed
10.1.500 FinancialManagement AccountsReceivable 180919 Application IntrastatIntrastatbuttonisdisabledinAPInvoiceEntry
InvoiceEntryARUnitCostvaluesaremissingintheInvcDtltableforacancellation
10.1.500 FinancialManagement AccountsReceivable 181482 Application invoicewithmorethan2parts
10.1.500 FinancialManagement AccountsReceivable 181691 Application ARInvoiceBalanceReportDebitandClosingBalanceareincorrectlycalculated
InvoiceTrackerARNotdisplayingcorrectdecimalssetoncompanyconfiguration
10.1.500 FinancialManagement AccountsReceivable 182003 Application untilselectingarecord
10.1.500 FinancialManagement AccountsReceivable 182333 Application InvoiceEntryARCancellationinvoicesignoreinvoicesdatesetup

Page7
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


ApplyCreditMemoBalanceisnotupdatedwhenapplyingaCMwithWithholding
10.1.500 FinancialManagement AccountsReceivable 182489 Application Taxtoaninvoice
PaymentInstrumentReceivableAfterchangingtheTranamountofanInvoiceit
10.1.500 FinancialManagement AccountsReceivable 182519 Application doesnotreflectthecorrectamountuntilrefreshing
10.1.500 FinancialManagement AccountsReceivable 182926 Application InvoiceTrackerARProjectIDshouldbeaddedtoHeader>Detail
10.1.500 FinancialManagement AccountsReceivable 182955 Application CashReceiptEntrySearchsortsindescendingorder
10.1.500 FinancialManagement AccountsReceivable 183088 Application ARInvoiceFormAdditionalblankpageisprinted
10.1.500 FinancialManagement AccountsReceivable 183203 Application ARInvoiceFormPrintInvoiceprintsSOlineinsteadofInvoiceline
InvoiceTrackerARInvoiceNumberisnotretrievedand0isdisplayedifthereisno
10.1.500 FinancialManagement AccountsReceivable 183342 Application lines
Electronic Interface - Incorrect selection of company specific or default
10.1.500 FinancialManagement AccountsReceivable 183455 Application interface occurs
10.1.500 FinancialManagement AccountsReceivable 183467 Application InvoiceTrackerARDifferencesforEuroCurrencyaredisplayeddueRounding
PaymentInstrumentStatusChangeIncorrectinvoicebalanceafterOnAcccountPI
10.1.500 FinancialManagement AccountsReceivable 183498 Application StatusChangefromportfoliotounapproved
InvoiceEntryARInvoicedStatusforRenewalContractisremovedaftererasing
10.1.500 FinancialManagement AccountsReceivable 183581 Application CancellationInvoice
10.1.500 FinancialManagement AccountsReceivable 183676 Application InvoiceEntryARUnabletocreateaCancellationInvoiceduetoUOMConversion
PaymentInstrumentStatusChangeCannotCancelPIafterrevaluation(Alsofixed
10.1.500 FinancialManagement AccountsReceivable 183847 Application in10.1.400.x)
FinancialManagement AccountsReceivable 184133 Application AdjustmentARInvoiceBalanceiscalculatedincorrectlyusingmultibookandcross
10.1.500 rate
CashReceiptsEditListARCashReceiptsEditListGLAccountDescriptionprinted
10.1.500 FinancialManagement AccountsReceivable 184179 Application thedescriptionwhichbelongstootherCOA
CashReceiptEntryBaseamountincashreceiptentryisnotupdatedwhenthe
10.1.500 FinancialManagement AccountsReceivable 184245 Application exchangerateisupdated
PaymentInstrumentReceivablePaymentInstrumenthasunappliedamount,blank
10.1.500 FinancialManagement AccountsReceivable 184431 Application errorsonBankFeedelete
Payment Instrument Receivable - Payment Instrument has unapplied amount,
184431
10.1.500 FinancialManagement AccountsReceivable Application blank errors on Bank Fee delete
CashReceiptEntryVariancesaregeneratedduetoBaseCurrenybeingupdated
10.1.500 FinancialManagement AccountsReceivable 184508 Application whenchangingthesettlementamount
10.1.500 FinancialManagement AccountsReceivable 184724 Application InvoiceEntryARRoundingisnotcalculatedatinvoicelevel
InvoiceEntryARErroroccurswhengettingashipmentthathasalockrateinSales
10.1.500 FinancialManagement AccountsReceivable 184750 Application Order
CashReceiptEntryARSummaryamountofDebitnotequalsummaryofARamount
10.1.500 FinancialManagement AccountsReceivable 185271 Application inDetail
ReverseCashReceiptThesamecashreceiptcanbereversedmultipletimesby
10.1.500 FinancialManagement AccountsReceivable 185354 Application differentusers

Page8
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


VATTaxJournalReportReportdoesnotshowinvoicenumberbutitshows
10.1.500 FinancialManagement AccountsReceivable 186304 Application numbersequence
PaymentInstrumentReceivableSearchFormallowsselectionofaPIGeneratedon
10.1.500 FinancialManagement AccountsReceivable 186575 Application ARInvoicethatitwasnotposted
10.1.500 FinancialManagement AccountsReceivable 186971 Application PaymentInstrumentReceivablePaymentInstrumentcannotbecreatedinEWA
InvoiceEntryARRelatedPCIDrecordsshouldnotbedeletedormovedinhistory
10.1.500 FinancialManagement AccountsReceivable 187001 Application untiltheinvoiceisposted
CashReceiptEntryErrormakesitunabletoreverseadepositpaymentthathasnot
10.1.500 FinancialManagement AccountsReceivable 187096 Application beenappliedyet
10.1.500 FinancialManagement AccountsReceivable 187116 Application InvoiceEntryARIntrastatIncorrecthandlingofSalesKitsandweight
PaymentInstrumentStatusChangeChangingbetweenstatuswithsameGLControl
10.1.500 FinancialManagement AccountsReceivable 187243 Application doesnotupdatetheAPPIHeaderStatus
10.1.500 FinancialManagement AccountsReceivable 187279 Application CashReceiptEntryInvoiceUnpostedbalancedisnotbeingcalculatedcorrectly
PaymentInstrumentReceivableInvoicesassignedtoGeneratedPIsarenot
10.1.500 FinancialManagement AccountsReceivable 187381 Application displayedfornewPis
CashReceiptEntryInvoiceselectiontabshowsthesoldtoinvoicesinsteadofthe
10.1.500 FinancialManagement AccountsReceivable 187430 Application billtoinvoices
InvoiceEntryARPaymentinstrumentisdeletedwhenseveralinvoicesarecreated
10.1.500 FinancialManagement AccountsReceivable 187454 Application withPaymentMethodGeneratePIatinvoiceentry
ARInvoiceBalanceReportPaymentcreatedwhenappliedthedebitnote;an
10.1.500 FinancialManagement AccountsReceivable 187547 Application invoiceisnotbeingdisplayedonthereport
ARInvoiceBalanceReportCreditMemoshowsasaCreditAmountforthecash
10.1.500 FinancialManagement AccountsReceivable 187880 Application transactiononthereport
10.1.500 FinancialManagement CashManagement 148140 Application BankStatementProcessingCSVformatcouldnotimportzeroopeningbalance
10.1.500 FinancialManagement CashManagement 157600 Application RecalculateBankBalancesAddNewanddeleteiconsforBankAccountsFilter
10.1.500 FinancialManagement CashManagement 166470 Application PettyCashEntryEWATreeviewdoesnotdisplaydocuments
PettyCashEntryBecomesobsoletewhenchangingApplyDateandunchecking
10.1.500 FinancialManagement CashManagement 168641 Application Draft
BankAdjustmentEntryTheBookisonlydisplayedinthepagewheretheRecapis
10.1.500 FinancialManagement CashManagement 170963 Application printed
10.1.500 FinancialManagement CashManagement 172540 Application BankAccountBankAccountCurrencycanbeinactive,andcannotbechanged
10.1.500 FinancialManagement CashManagement 172892 Application PettyCashEntryUnexpectederrormessageschangingthefocusintheTreeview
BankAdjustmentEntryBankBalanceisupdatedintheperiodoftheGroup
10.1.500 FinancialManagement CashManagement 173948 Application TransactionApplyDate
PettyCashEntryGeneralFrameworkInPettyCashentryUIoption"ResetLayouts
10.1.500 FinancialManagement CashManagement 174857 Application toBase"intoolsmenudisplaysanerror
BankStatementProcessingCleardateformanualstatementlinecreationshould
10.1.500 FinancialManagement CashManagement 174878 Application defaulttobankstatementApplyDate(insteadofOpeningDate)

Page9
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


BankAdjustmentEntryBankBalanceisnotupdatedintheperiodofAdjustment
10.1.500 FinancialManagement CashManagement 174943 Application ApplyDate
FinancialManagement CashManagement 175074 Application PettyCashOperationsA/PDebitNoteReceipt,A/PMiscCashReturnhave
10.1.500 unnecessaryRoundingamount
10.1.500 FinancialManagement CashManagement 175662 Application PettyCashEntryUnabletoupdatetheReason
BankStatementProcessingCashReceipt/APPaymentBatchtrackersand
Maintenancedonotfunctionandtheoutofmemoryerroroccursifnumberof
10.1.500 FinancialManagement CashManagement 177193 Application individualcashreceipts/APpaymentsexceeds6000(Alsofixedin10.1.400.x)
BankStatementProcessingWhenpostingdoesnotfunctioninBSPallocatedto
10.1.500 FinancialManagement CashManagement 177194 Application cashreceiptinvoicesmaybeupdatedincorrectly(Alsofixedin10.1.400.x)
PettyCashEntryApplicationstopsworkingwhenuserusesPasteinsert
10.1.500 FinancialManagement CashManagement 178612 Application functionality
BankAccountTaskAgentExtensiondoesnotupdatebankbalance(Alsofixedin
10.1.500 FinancialManagement CashManagement 178891 Application 10.1.400.x)
UpdateBankBalancesProcessconsumesveryhighCPUutilizationuntilitstops
10.1.500 FinancialManagement CashManagement 178978 DBSpecific working(Alsofixedin10.1.400.x)
BankStatementProcessingUnabletocreatestatementlinewhenhavinganAR
PaymentMethodinbatchmode(StatementGrouping=Grouped)andenteringa
10.1.500 FinancialManagement CashManagement 178998 Application CashReceiptwithanonnumericGroupID
BankStatementProcessingErrordisplayedwhenprintingEditListforposted
10.1.500 FinancialManagement CashManagement 179329 Application reconciliations(Alsofixedin10.1.400.x)

BankStatementProcessingBankStatementConversionincorrectlyprocessescash
10.1.500 FinancialManagement CashManagement 179806 Application receiptrecordsattachedtoCRPaylineasbankadjustments(Alsofixedin10.1.400.x)
BankAccountTrackerOpeningBankBalancesarenotcorrectlyretrievedfor
10.1.500 FinancialManagement CashManagement 179992 Application updatecurrentperiodbankbalances,andintracker(Alsofixedin10.1.400.x)
BankAccountTrackerBankBalDeferredrecordsarecreatedincorrectlyforopening
10.1.500 FinancialManagement CashManagement 180214 Application balanceupdates(Alsofixedin10.1.400.x)
BankAdjustmentEntryWhencancelingtransactionsinReviewJournalandthen
10.1.500 FinancialManagement CashManagement 180695 Application postingthemagain,BankBalanceisnotupdated
BankAccountTrackerAdjustmentarenotreflectedfortheyearpostedinBalance
10.1.500 FinancialManagement CashManagement 181436 Application onlyfortheCurrentdate
BankStatementProcessingSelectingmainaccountandcreatingalinetakes4575
10.1.500 FinancialManagement CashManagement 183680 DBSpecific minutesforeachtocomplete(Alsofixedin10.1.400.x)
PettyCashEntry(EWA)ErrorduringenteringPettyCashdocumentinPettyCash
10.1.500 FinancialManagement CashManagement 183770 Application EntryviaEWA
10.1.500 FinancialManagement CashManagement 184295 Application PaymentMethodUnabletoselectapathforoutputfileinEWA
BankStatementProcessingUnallocatedvariancecausesbeingunabletopost,
10.1.500 FinancialManagement CashManagement 184742 Application whenusing3decimalsonthePayment(Alsofixedin10.1.400.x)

Page10
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


10.1.500 FinancialManagement CashManagement 184870 Application BankStatementProcessingNotclearingthezerodollarAPpayments
BankAccountPatchFldBankAcct.Stateisnotmigratedtothephysicalfield(Also
10.1.500 FinancialManagement CashManagement 184986 Application fixedin10.1.400.x)
10.1.500 FinancialManagement CashManagement 186394 Application BankAccountTrackerReverseamountisnotreflectedontheBankBalance
BankStatementProcessingBankamountgetsrecalculatedwhenchanging
10.1.500 FinancialManagement CashManagement 186631 Application exchangerateforforeigncurrency
BankStatementProcessingBankstatementmanualunmatchingforARReceipts
10.1.500 FinancialManagement CashManagement 188029 Application takesalongtimewhentherearemanyopenreceipts
BankAdjustmentEntryGLAccountcontrolworksincorrectlyiftherearemapped
10.1.500 FinancialManagement CashManagement 188476 Application booksinTransactionType
BankStatementProcessingFixbalanceupdateforAR/APreversalswhenmode
10.1.500 FinancialManagement CashManagement 188724 Application BankExchangeRateisusedWhenClearing
PettyCashMismatchofApplyDateandFiscalPeriodwhilemakingPattyCash
10.1.500 FinancialManagement CashManagement 189006 Application entries
CSFSingaporeDataExportErrorontryingtogeneratefileswhenthereisnoGL
10.1.500 FinancialManagement CSFAll 176668 Application recordsinthecurrentperiod
10.1.500 FinancialManagement CSFAll 176669 Application TopandLeftform'spropertiesshouldberemovedforLocalizationforms
10.1.500 FinancialManagement CSFAll 177298 Application Companyexistsonatablebutisnotusedinthequery
CSFColombiaImpossibletolaunchCashreceiptreport,thefollowingerror
10.1.500 FinancialManagement CSFAll 179564 Application appears:Cannotremoveuniqueconstraint'CashHeadListBatchNum'
10.1.500 FinancialManagement CSFAll 179572 Application CSFBaseExtensionwasaddedincorrectly
BankReferenceNumberIsnotincludedinSEPApaymentfile;ifpaymentreference
10.1.500 FinancialManagement CSFAll 187777 Application ismissingoninvoice
10.1.500 FinancialManagement CSFArgentina 179989 Application CurrencyMasterArgentinatabwaslost
FileexportviaBelgiumelectronicinterfacescannotcreatefileslocally,onlyonthe
10.1.500 FinancialManagement CSFBelgium 175130 Application server
10.1.500 FinancialManagement CSFChina 173157 Application GTIStatusTrackerMergedinvoicesarenotretrieved
FinancialDataExportCNIncorrectYearandPeriodforIncomeStatement
10.1.500 FinancialManagement CSFChina 176823 Application document(Alsofixedin10.1.400.x)
PackingSlipsconsolidationdoesnotworkifCustomerandOrderTaxLiabilitiesare
10.1.500 FinancialManagement CSFChina 178093 Application notmatched(Alsofixedin10.1.400.x)
10.1.500 FinancialManagement CSFChina 179382 Application InvoiceEntryConsolidationPSSystemupdatesinvoicesinReview
BalanceSheetCNFiscalYearSuffixshouldberemovedfromquerytoeliminate
10.1.500 FinancialManagement CSFChina 179665 Application reportgenerationissues
CSFChina/CSFTaiwanGetShipmentsactionreturnsobjecterrorincasepacking
10.1.500 FinancialManagement CSFChina 181614 Application slipconsolidation
10.1.500 FinancialManagement CSFChina 183475 Application AddedCOACodetoGLAcctDispsearchfortransactionalreports
10.1.500 FinancialManagement CSFChina 184071 Application GTIExport:previouslyselectedforexportinvoicesarenotvisibleinthegrid

Page11
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


IMKardexreportmissingpartswhentheexcludepartswithzeroonhandbalanceis
10.1.500 FinancialManagement CSFColombia 174608 Application selected
COSAndWIPpostingruleTerceroislostinAGJPURandPURSTKincaseofusing
10.1.500 FinancialManagement CSFColombia 176090 Application Clearingaccount
10.1.500 FinancialManagement CSFColombia 176092 Application COSAndWIPpostingruleTerceroislostinSTKCUSincaseInventoryaccount
10.1.500 FinancialManagement CSFColombia 176108 Application COSAndWIPpostingruleTerceroislostinPURMTL
10.1.500 FinancialManagement CSFColombia 176234 Application VoidpaymentIncorrectTerceroforPostBankFeeTaxAmount
10.1.500 FinancialManagement CSFColombia 177614 Application SystemdoesnottakeGLaccountenteredontheformforARwriteofftransaction
APPIstatuschangereturnserrorObjectreferencenotsettoaninstanceofan
10.1.500 FinancialManagement CSFColombia 180280 Application object
10.1.500 FinancialManagement CSFColombia 181512 Application RevelationEntryandReportissues
10.1.500 FinancialManagement CSFColombia 182160 Application IFRSinventoryreportCostiscalculatedignoringUnitMaterialBurden
IFRSinventoryreportQuantityisincorrectwhenPOreceiptdate=currentandAs
10.1.500 FinancialManagement CSFColombia 182161 Application ofdate=current
10.1.500 FinancialManagement CSFColombia 182162 Application IFRSinventoryreportreportisincorrectincaseoftwofilters
RevelationsEntryCOmenuitemshouldbeplacedamongEntries,notProcesses;
10.1.500 FinancialManagement CSFColombia 182249 Application certainpostpeerissues
10.1.500 FinancialManagement CSFColombia 182978 Application IFRSinventoryreportIncorrectcostandmaterialburdenincasecostadjustment
10.1.500 FinancialManagement CSFColombia 183903 Application RevelationreportErrorduringprintingreportparameters
GLJournalReceiptreportJournalCodeandJournalNumfilterscannotbeentered
10.1.500 FinancialManagement CSFColombia 184849 Application together
10.1.500 FinancialManagement CSFColombia 189650 Application GeneralLedgerReportFilterfunctionalitynotworkingonGeneralLedgerReport
10.1.500 FinancialManagement CSFEuropeanUnion 173542 Application CSFGermanyDEIntrastatEIMonthpropertydocumentedincorrectly
10.1.500 FinancialManagement CSFEuropeanUnion 176918 Application SEPADD"CustomerType"fieldinCustomerMaintenanceshouldberenamed
10.1.500 FinancialManagement CSFEuropeanUnion 177965 Application IntrastatIntrastatbuttondisabledinARInvoiceEntry
SEPAAPPaymentsCreatingSEPAAPPaymentfileshouldbelimited,ifneitherIBAN
10.1.500 FinancialManagement CSFEuropeanUnion 179009 Application norCheckingAccountareenteredforCompanyBankAccount
10.1.500 FinancialManagement CSFEuropeanUnion 182149 Application SEPApaymentdoesnotworkfornonEUsupplier(Alsofixedin10.1.400.x)
BankReferenceNumberisnotincludedinSEPApaymentfile(pain.001.001.03)(Also
10.1.500 FinancialManagement CSFEuropeanUnion 183055 Application fixedin10.1.400.x)
PaymentNumberisnotincludedinSEPApaymentfile(pain.001.001.03)forpre
10.1.500 FinancialManagement CSFEuropeanUnion 183063 Application payments(Alsofixedin10.1.400.x)
10.1.500 FinancialManagement CSFEuropeanUnion 183347 Application SEPAIncorrectparameterUseBatchBooking
10.1.500 FinancialManagement CSFEuropeanUnion 186433 Application SemicoloncannotalwaysbeusedforSEPAremittanceinformation
UpdateEIforGLFRJournalExportaccordingtothenewlegalrequirements(Also
10.1.500 FinancialManagement CSFFrance 182389 Application fixedin10.1.400.x)
ConversionProgramGLControlsForE10fromConversionWorkbenchdoesnotcreate
10.1.500 FinancialManagement CSFGermany 172627 Application SourceValueFieldsandTargetValueFieldsforCSFGermanyLookupTables
10.1.500 FinancialManagement CSFMexico 175241 Application ElectronicAccountingCreditamountsshouldbedisplayedaspositiveamounts

Page12
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


ItisnecessarytocheckandcorrectreadonlypropertyofBankTran.MXRecDatefield
10.1.500 FinancialManagement CSFMexico 175904 Application inthegrid
10.1.500 FinancialManagement CSFMexico 176448 Application TaxRegimefield(CompanyConfiguration)isshort(16characters)
10.1.500 FinancialManagement CSFMexico 177453 Application SeparateroutineshouldbecreatedforTaxRegimemaintenance
ImpossibletoprintMexicoVATreportbecauseofthefollowingerror:Year,Month,
10.1.500 FinancialManagement CSFMexico 178849 Application andDayparametersdescribeanunrepresentableDateTime
10.1.500 FinancialManagement CSFMexico 178853 Application MXSATARInvoicereportprintsincorrecttaxdescriptions
"CannotfindcolumnTaxRegime"errormessageduringTaxRegimeselectiononAR
10.1.500 FinancialManagement CSFMexico 178854 Application Invoice>Header>Mexico
Warningmessage"Levelofprintedaccountmustbegreaterorequalto1"shouldbe
10.1.500 FinancialManagement CSFMexico 178863 Application changedto"Levelofprintedaccountsmustbegreaterthanorequalto1"
10.1.500 FinancialManagement CSFMexico 179986 Application MXElectronicAccountingandVATDIOTUpdateandaddAutoscriptstoPortal
10.1.500 FinancialManagement CSFMexico 180131 Application AccountAuxiliarycheckedonGLJournalscausesreporttostopworking
10.1.500 FinancialManagement CSFMexico 180793 Application AssetMexicoTabemptyTaxTypedropdown,valuecanonlybesetthroughSearch
10.1.500 FinancialManagement CSFMexico 181390 Application ReceiveMethoddropdownvaluescontaininvalidcharacters
AssetMexicotabFormissavedwithnowarningwiththeincorrectTaxRatefor
10.1.500 FinancialManagement CSFMexico 181507 Application selectedTaxType
10.1.500 FinancialManagement CSFMexico 181508 Application AssetMexicoTabTaxRatefieldshouldbeclearedafterchangingTaxType
10.1.500 FinancialManagement CSFMexico 181730 Application EnhancementofVAT/DIOTATEscripts
ARInvoicebasedonGet>Shipment>ManualSelectiondoesnotsettheFormof
10.1.500 FinancialManagement CSFMexico 182910 Application PaymenttoCustomer
10.1.500 FinancialManagement CSFMexico 183844 Application AccountNumisnottakenfromreferencedARInvoice
10.1.500 FinancialManagement CSFMexico 184235 Application ImpossibletosaveinvoicewithMultiplepaymentmethod
10.1.500 FinancialManagement CSFMexico 184848 Application PartialPaymentMXFoliofieldshouldbedisplayedasOriginalFolio
10.1.500 FinancialManagement CSFMexico 185036 Application Importcertificatewithonly.cerfiledisplaysanerror
10.1.500 FinancialManagement CSFMexico 185518 Application ErrorafterCFDinvoicegeneration
MXPartialPaymentPartialPaymentCreditMemogroupcannotbesaveddueto
10.1.500 FinancialManagement CSFMexico 185663 Application anerror
10.1.500 FinancialManagement CSFMexico 186379 Application ARSATReportignoreswithholdingtaxoninvoice
10.1.500 FinancialManagement CSFMexico 187860 Application CancellationofARInvoicewithMisc.Chargesstopstheapplication
CSFNewZealandBNZDDPaymentFromNameexceedsmaximumnumberof
10.1.500 FinancialManagement CSFNewZealand 180920 Application characters
10.1.500 FinancialManagement CSFNorway 182887 Application APBankFileImportcreatesnewAPPaymentGroupwithincorrectpaymentmethod
10.1.500 FinancialManagement CSFNorway 182890 Application AttachedxmlfilecannotbeopenedafterEInvoicegeneration
10.1.500 FinancialManagement CSFNorway 183064 Application EInvoiceTimeStampfieldshoulddisplaytimein24hourclockformat
EWATherearepartiallyvisiblefieldsonElectronicInterfacewindowwhen
10.1.500 FinancialManagement CSFNorway 183344 Application submittingEInvoice
EInvoicedocumenttypeshouldbeselectedinDepositInvoiceforEInvoice
10.1.500 FinancialManagement CSFNorway 184089 Application customerinsteadofonefromCompanysetup
10.1.500 FinancialManagement CSFNorway 185453 Application AvailableDocumentTypeListdoesnotrefreshcorrectlyforEInvoiceprocess

Page13
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


APbankfileimportworkbenchgeneratespaymentmatchingafterwhichthe
10.1.500 FinancialManagement CSFNorway 188270 Application paymentdateisincorrect
10.1.500 FinancialManagement CSFPeru 177610 Application ARBoEpostingrulemustpickupcorrectaccountcontextforInvoicesinCollections
MergechangesinpostingruleAPPaymentmadeinbaseunderSCR178679
10.1.500 FinancialManagement CSFPeru 180511 Rule regardingTaxDiscountAdjustmentforWithholdingInvoicingTax
10.1.500 FinancialManagement CSFPeru 180523 Application UpdateCSFPEruleARPIPaymentaccordingtochangesmadeinSCR179786
10.1.500 FinancialManagement CSFPeru 180735 Application Modify3.3ARBalanceInvoicereportPElayout
WhenusingapplicationinSpanish,nooptionsavailableforselectionwithBillof
10.1.500 FinancialManagement CSFPeru 182731 Application ExchangeStatusChanged(Alsofixedin10.1.400.x)
10.1.500 FinancialManagement CSFSweden 185157 Application EUSaleslisthasincorrectformatforSweden
10.1.500 FinancialManagement CSFSweden 186434 Application GLExportProcessIssueswithexportfileextensionandfileformat
CSFChinaPackingSlipsconsolidationdoesnotworkifCustomerandOrderTax
10.1.500 FinancialManagement CSFTaiwan 177801 Application Liabilitiesarenotmatched(Alsofixedin10.1.400.x)
Erroroccurswhentryingtoattachadocumenttypetosupplier(Alsofixedin
10.1.500 FinancialManagement CSFTaiwan 182970 Application 10.1.400.x)
10.1.500 FinancialManagement CSFTaiwan 187805 Application InvoiceEntryAPGUITaxTypecannotbeassignedforDMRDebitMemo
InvoiceEntryAPContextmenusearchshouldbeaddedforGUITaxTypeCodeand
10.1.500 FinancialManagement CSFTaiwan 188187 Application GUIDeductionCode
LegalNumberIsnotassignedautomaticallyforDebitMemoif'DefaultAPInvoice
10.1.500 FinancialManagement CSFTaiwan 189019 Application Number'isselectedassource
10.1.500 FinancialManagement CSFThailand 182464 Application IncorrectCostinthestockreport(Alsofixedin10.1.400.x)
10.1.500 FinancialManagement CSFTurkey 179170 Application RenumberJournalsProcessstopswithanExceptioninSystemMonitor
SetReportingCurrencyprocessDoesnotzeroAssetCostSummaryOpeningDepn
10.1.500 FinancialManagement CurrencyManagement 162838 Application andGrantDepnforDisposedAsset
CurrencyRevaluationProcessApplicationdoesnotrespondwithCurrency
10.1.500 FinancialManagement CurrencyManagement 171418 Application RevaluationProcessasactivetask
RateTypeAfterunlinkingaglobalratetypeandtryingtolinkforanewone,two
10.1.500 FinancialManagement CurrencyManagement 171922 Application errorsdisplayed
CurrencyRevaluationProcessTheReportisprintedforadatewhereisnobalance
10.1.500 FinancialManagement CurrencyManagement 174811 Application movement
CurrencyRevaluationProcessInimmediatereversemoderesetsAPinvoiceheader
10.1.500 FinancialManagement CurrencyManagement 175911 Application withrevaluationrate
CurrencyRevaluationProcessInimmediatereversemoderesetsARinvoiceheader
10.1.500 FinancialManagement CurrencyManagement 176034 Application withrevaluationrate
10.1.500 FinancialManagement CurrencyManagement 176258 Application ReportingCurrencyProcessdoesnotvalidateSysTaskParams
10.1.500 FinancialManagement CurrencyManagement 176603 Application ReportingCurrencyProcessdoesnotvalidateTaxTranTable
CurrencyMasterCreatedCurrencysentoutformulticompanyprocessingeven
10.1.500 FinancialManagement CurrencyManagement 176733 Application whenitisnotmarkedasglobal

Page14
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


CurrencyMasterIssueslinkingcurrencieswithdifferentCurrencyCodeand
10.1.500 FinancialManagement CurrencyManagement 176734 Application CurrencyID
CurrencyRevaluationProcessBankAccountsissueswhenthedatedefaultswith
10.1.500 FinancialManagement CurrencyManagement 177051 Application thelastdayofmonth
CurrencyMasterAnerrormessageisdisplayedwhencreatingacurrencywithno
10.1.500 FinancialManagement CurrencyManagement 178622 Application CurrencyID
10.1.500 FinancialManagement CurrencyManagement 179107 Application CurrencyMasterUnabletodeletetheGLControlofthebasecurrency
10.1.500 FinancialManagement CurrencyManagement 179216 Application RateTypeLinkingRateTypelogictobemodified
10.1.500 FinancialManagement CurrencyManagement 179230 Application CurrencyMasterIncorrectbehaviorwhenunlinkingaglobalcurrency
FinancialManagement CurrencyManagement 180121 Application CurrencyMasterNotpossibletochangeCurrencyIDafteritislinkedtoglobal
10.1.500 Currency
RateGroupRateTypecannotbelinkedwhentryingtolinktoonesthatdonot
10.1.500 FinancialManagement CurrencyManagement 181782 Application haveRulesdefined
RateGroupRateTypecan'tbelinkedwhenlinkingtoonethatdoesn'thaveRules
10.1.500 FinancialManagement CurrencyManagement 181782 Application defined
10.1.500 FinancialManagement CurrencyManagement 182405 Application CurrencyMasterItispossibletounlinkcurrencyafterRateTypeislinked
10.1.500 FinancialManagement CurrencyManagement 182565 Application RateTypeLabelforLinkStatusisincorrectlydescripted
CurrencyRevaluationProcessAPInvoiceRevaluationinimmediatereversemode
10.1.500 FinancialManagement CurrencyManagement 185337 Application GLtransactionisdoubledinsteadofreversing
CurrencyRevaluationProcessAPInvoiceRevaluationinimmediatereversemode
10.1.500 FinancialManagement CurrencyManagement 185432 Application Followingrevaluationsforthesamedateareincorrect
CurrencyRevaluationProcessAPInvoiceRevaluationinimmediatereversemode
10.1.500 FinancialManagement CurrencyManagement 186112 Application GLtransactionisdoubledinsteadofreversing
CurrencyRevaluationProcessAPInvoiceRevaluationinimmediatereversemode
10.1.500 FinancialManagement CurrencyManagement 186116 Application Followingrevaluationsforthesamedateareincorrect
10.1.500 FinancialManagement FixedAssets 148560 Application AssetAdditionEntryChangeerrormessageshouldbeuserfriendly
AssetOverviewGroupDescriptionandAssetDescriptionisnotfullydisplayed,field
10.1.500 FinancialManagement FixedAssets 151549 Application lengthtooshort
10.1.500 FinancialManagement FixedAssets 160041 Application AssetAdditionEntrySupplierDescriptionfieldshouldbedisabled
10.1.500 FinancialManagement FixedAssets 169093 Application AssetPostingProcessProcesstakesdaysonCustomerDBhaving18000Assets
10.1.500 FinancialManagement FixedAssets 171694 Application AssetAdditionforsecondregisterisnotimportedifadditionhaveintergroup
10.1.500 FinancialManagement FixedAssets 174566 Application SpreadCode,notabletoimportapreviouslyexportedfile
10.1.500 FinancialManagement FixedAssets 177290 Application AssetAdditionEntryProhibitInterGroupAdditionsinfutureyears
AssetDisposalEntryErroroccurwhendisposingofassetsintworegisterswhenthe
10.1.500 FinancialManagement FixedAssets 178941 Application mainbookisfullydepreciated(Alsofixedin10.1.400.x)
10.1.500 FinancialManagement FixedAssets 179820 Application AssetEditListCannotprinteditlistforaspecificperiod
AssetRevaluationEntryIncorrectcurrentdepreciationandcurrentbookvaluein
10.1.500 FinancialManagement FixedAssets 180544 Application newreportingcurrency

Page15
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


AssetDisposalEntryCannotdisposeanAssetduetothefollowingerror:BVcannot
10.1.500 FinancialManagement FixedAssets 180682 Application benegative
10.1.500 FinancialManagement FixedAssets 181383 Application AssetAnnualScheduleReportReportskipscatchupdepreciationtransactions
AssetAdditionEntryIncorrectbookvalueinassettrackerwhenclickingtheSave
10.1.500 FinancialManagement FixedAssets 181820 Application buttonbeforeenteringgrantamount
10.1.500 FinancialManagement FixedAssets 182838 Application AssetEditListcreatesDisposalAdjustmentRvlockwhichisnotreleased
HelpLinkfromAssetDepreciationreportopensSelectedFieldsforAsset
10.1.500 FinancialManagement FixedAssets 187863 Application DepreciationCalculationincorrectly
Severalcostaffectingtransactionspostedsimultaneouslydonotappearinthesame
10.1.500 FinancialManagement FixedAssets 189389 Application RJ;lockingisincorrect
ProcessSetMaintenanceAdjustUIReportsandProcesstouseall4parameters:
10.1.500 FinancialManagement General 163230 Application company,systemcode,processID,taskNum
10.1.500 FinancialManagement General 178994 Application ProcessSetMaintenanceAdjustUIReportsandProcesstosupportProcessSet
AccountSegmentSystemallowsaccountsegmentvaluetoincludecharacterwhich
10.1.500 FinancialManagement GeneralLedger 114551 Application matchestheseparatorcharacterinCOAsetup
JournalEntryJournalTotalsarezeroedoutafterchangingApplyDateinJournal
10.1.500 FinancialManagement GeneralLedger 117904 Application Header
10.1.500 FinancialManagement GeneralLedger 140340 Application JournalEntryMenucaptionhasadditionalspacebetweeniconandname
GeneralLedgerReportJournalNumberwithlengthgreaterthan3digitsis
10.1.500 FinancialManagement GeneralLedger 141560 Application displayedwithcomma
JournalTrackerJournalandTranGLCDetailsarenotclearedwhenrecordfrom
10.1.500 FinancialManagement GeneralLedger 143151 Application differentjournalisselected
10.1.500 FinancialManagement GeneralLedger 143156 Application JournalTrackerClearbuttonaffectgridsbutdoesnotclearbuffers
10.1.500 FinancialManagement GeneralLedger 143320 Application Updateerrormessagewhenincorrectsegmentwasenteredmanually
AutomaticTransactionReversalFiscalPeriodincorrectforMultiBookTransaction
10.1.500 FinancialManagement GeneralLedger 149756 Application updatingapplydate
GeneralLedgerImportIfPostoptionisnotmarkedthenSystemMonitordoesnot
10.1.500 FinancialManagement GeneralLedger 152192 Application showFinishmessages
JournalTrackerJournalCodeColumnsAllowStatisticalJournals,MXPolicy,
10.1.500 FinancialManagement GeneralLedger 152685 Application OkChgAllowStatJrnlshouldbehidden
10.1.500 FinancialManagement GeneralLedger 152690 Application BookNewLinkToSourceBookUIissues
BookWarningmessagedisplayswhentheREAccountisbeenmaskedfortheself
10.1.500 FinancialManagement GeneralLedger 154979 Application balancingsegment
10.1.500 FinancialManagement GeneralLedger 155469 Application BookItemsinValidationstabhavingdifferentsortingorderfordifferentbooks
BookREAccountDescriptionisunexpectedlychangedtoMaskedAccountif
10.1.500 FinancialManagement GeneralLedger 159480 Application Dynamicsegmentisused
10.1.500 FinancialManagement GeneralLedger 160029 Application BookWhentypebookID,thepreviousbookisactiveinaTreeview
10.1.500 FinancialManagement GeneralLedger 161644 Application GLTransactionTypeTimeouterroronfirstlauchafterserverreinstall

Page16
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


GeneralLedgerImportEWASelectedimportfileisnotloadedintoImport
10.1.500 FinancialManagement GeneralLedger 162412 Application Filenamepathfield
10.1.500 FinancialManagement GeneralLedger 162737 Application Chart/JournalTrackerExtraContextMenu"fred"displaysforJournalNumber
LegalNumberEWAWhenthesecondalternateprefixiscreated,allfieldsare
10.1.500 FinancialManagement GeneralLedger 163776 Tools disabledandcannotbeedited
TransferOpeningBalancesToNextYearErrorpreventsprocessfromrunningon
10.1.500 FinancialManagement GeneralLedger 165067 Application firstlogon;"Logfilepathisincorrect"
AutomaticTransactionReversalIncorrecttotalsaredisplayedwhenselect\unselect
10.1.500 FinancialManagement GeneralLedger 166144 Application lines
10.1.500 FinancialManagement GeneralLedger 170034 Application PostingEngineCannotpostSummarizedtransaction
10.1.500 FinancialManagement GeneralLedger 171124 Application BookWarningmessageshouldbeupdatedorcheckboxdisabled
ChartTrackerAutoRetrieveisnotworkingforTotaltabwhenswitchinbetween
10.1.500 FinancialManagement GeneralLedger 171484 Application accounts
PostingEngineValidationdisplayserrorsnotforalllinesinReviewJournalError
10.1.500 FinancialManagement GeneralLedger 171487 Application Log
JournalEntryEWAGLTaxlines,lineswithReferenceTypeaccountsmasksand
10.1.500 FinancialManagement GeneralLedger 172057 Application fromAllocationTemplatecannotbesaved
10.1.500 FinancialManagement GeneralLedger 172791 Application Segmentfiltertabshouldberedesigned
TrialBalancereportDailyBalancesoptionignoresmasksandshowsnorecords
10.1.500 FinancialManagement GeneralLedger 173083 Application selectedformask'%'
JournalTrackerATEscriptAssetRevaluationshowsdifferencesinTransactiongrid
10.1.500 FinancialManagement GeneralLedger 173544 Application recordssorting
ATEDiferencefoundbyAssetRevaluationscriptinJournal/SeqfieldinAssetAnnual
10.1.500 FinancialManagement GeneralLedger 173702 Application ScheduleReport
GlobalBAQHasdifferentruleofsearch,changedinlastframework,mustbe
10.1.500 FinancialManagement GeneralLedger 173715 Application correctedinposting
GeneralLedgerReportOpeningBalancenotincludedinEndingBalanceatLine
10.1.500 FinancialManagement GeneralLedger 173798 Application levelDetail
PostingEngineIfgrouppostingwaslaunchedineditlistmode,GLControlCodesare
notcalculated/foundandcorrectaccounts/amountscouldnotbeobtainedfrom
10.1.500 FinancialManagement GeneralLedger 173910 Application previouspostingingroup
10.1.500 FinancialManagement GeneralLedger 173911 Application BookTwoValidationRulesshouldberemovedfromUIasobsolete
GLTransactionTypeImporton'UpdateMode'IgnoresLowerCasetoUppercase
10.1.500 FinancialManagement GeneralLedger 173969 Application changesinpostingrules
10.1.500 FinancialManagement GeneralLedger 174410 Application VerifyBalancesPerformanceisnotgood
PostingEngineWhenusingSummarizationandRedStorno,notalltransactionsare
10.1.500 FinancialManagement GeneralLedger 174845 Application postedasnegative
10.1.500 FinancialManagement GeneralLedger 175127 Application (EWA)ChartofAccountsListingReporterrorwhenselectingCOAinEWA
10.1.500 FinancialManagement GeneralLedger 175640 Application GLSegmentReportSlowPerformancetakes1hourtoprint5pages

Page17
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


UpdateGLControlsconversionisnotupdatingthe%completeintheConversion
10.1.500 FinancialManagement GeneralLedger 175845 Application Workbench
ImportGLTransactionTypesconversionisnotupdatingthe%completeinthe
10.1.500 FinancialManagement GeneralLedger 175846 Application ConversionWorkbench
ChartTrackerPartCostTransactioncreditamountshaveincorrectsigncausing
10.1.500 FinancialManagement GeneralLedger 175948 Application wrongsummarization
TD:Erp.Internal.PE.ValidationRuledoesnotvalidateparametersbeingexecutedina
10.1.500 FinancialManagement GeneralLedger 176280 Application SQLStatement
10.1.500 FinancialManagement GeneralLedger 176304 Application TD:Erp.Internal.XA.DBPurgeLogicDoesnotvalidateSysTaskParams
GLTransactionTypeVariablesoftypeAccountarenotloadedwhencorresponding
10.1.500 FinancialManagement GeneralLedger 176473 DBSpecific COAcontainsspacesinCOACode
ReviewJournalReviewJournalReportdoesnotprinttheerrormessageof"
10.1.500 FinancialManagement GeneralLedger 176486 Application commoditycodeisrequired"
TransferOpeningBalancesToNextYearViolationofPRIMARYKEYconstraint
10.1.500 FinancialManagement GeneralLedger 176896 Application 'PK_GLPeriodBal'
GLTransTypeformFixseveralobsoleteormisleadinglabelsonGLTranType
10.1.500 FinancialManagement GeneralLedger 176917 Application Importform
TrialBalancereportUnabletochangebothfiscalyearandsuffixcannotrun
10.1.500 FinancialManagement GeneralLedger 176935 Application reportforotherthanwhatdefaultsin
JournalDetailTrackerChartTrackerandGLreportsareincorrectdueto
10.1.500 FinancialManagement GeneralLedger 177018 Application GLJrnlDtl.BookIDbeingcasesensitive(Alsofixedin10.1.400.x)
10.1.500 FinancialManagement GeneralLedger 177096 Application GeneralCompanyexistsonatablebutisnotusedinthequerywhereclause
10.1.500 FinancialManagement GeneralLedger 177195 Application TrialBalancereportFiscalyearsuffixisnotprintedintheHeader
10.1.500 FinancialManagement GeneralLedger 177198 Application GLTransactionTypeRemoveACTTypeusageinGLTransactionTyperoutine
DeadlockforabtWorkwhenAPandARworkusingseveralapplicationserversand
10.1.500 FinancialManagement GeneralLedger 177199 Application processedatthesametime
PostingEngineADJCSTtransactionspostingtovarianceaccountandnotInvadj
10.1.500 FinancialManagement GeneralLedger 177381 Application account
10.1.500 FinancialManagement GeneralLedger 177416 Application AllocationTemplateNewallocationlinehasGLAccountdisabledforediting
10.1.500 FinancialManagement GeneralLedger 177462 Application TrialBalancereportGLaccountsnotprintinginorder
WebFormsAfterselectionofGLAccount,messagedisplays"Unabletoget
10.1.500 FinancialManagement GeneralLedger 177879 Application property'Location'ofunderfinedornullreference"
10.1.500 FinancialManagement GeneralLedger 177895 Application PostingEngineBookMappingdoesnotworkforStatOnlylines
PostingEngineAutoupdateofREaccountbalancedoesnotworkifaCOAhas
10.1.500 FinancialManagement GeneralLedger 177897 Application mandatorydynamicsegments(Alsofixedin10.1.400.x)
PostingEngineMappingdoesnotworkifinsetupofmappingSourceSegment
10.1.500 FinancialManagement GeneralLedger 177963 Application NumisdifferentfromTargetSegmentNum

Page18
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


GLTransactionTypeImportGLTransactionTypeIfpathforpostingrulexmlis
enteredmanuallyandImportAllcheckboxisactivated'ImportVDB'&'Import
10.1.500 FinancialManagement GeneralLedger 178091 Application Postingrules'columnsareunchecked&disabled
GLTransactionTypeMainPaneltitleandTreeviewnodeshouldbechangedtoGL
10.1.500 FinancialManagement GeneralLedger 178212 Application TransactionType
TrialBalancereportTransactionsfromonlyonebookareincludedinthereport
10.1.500 FinancialManagement GeneralLedger 178222 Application whenselecttwobookforprinting
ReviewJournalSeveralValidationsareshownonlyforLine1inReviewJournalError
10.1.500 FinancialManagement GeneralLedger 178223 Application Logandreport
PostingEngineREaccounthasincorrectvalidationwhenupdatingbalancefor
10.1.500 FinancialManagement GeneralLedger 178226 Application futureyears(Alsofixedin10.1.400.x)
COAImportGLAccountValidationisincorrectifthereareDynamicMandatory
10.1.500 FinancialManagement GeneralLedger 178254 Application segments
GeneralLedgerImportCannotimportdataafterExtendedDateTimeandDateUD
10.1.500 FinancialManagement GeneralLedger 178318 Application FieldCreated
CloseFiscalPeriod/YearStartDatesofperiodsoverlapwiththeenddateof
10.1.500 FinancialManagement GeneralLedger 178521 Application previousperiods
10.1.500 FinancialManagement GeneralLedger 178767 Application PostingEngineDoesnotignorecaseoftheBookIDinGLControltables
JournalEntryChangingGroupmodefromSingletoMultiBookdoesnotload
10.1.500 FinancialManagement GeneralLedger 178783 Application MasterCOAGLAccountstructureonlines
AllocationTemplateLineswithemptyGLAcctDispiscreatedifuseallocation
10.1.500 FinancialManagement GeneralLedger 178861 Application templatewithdynamicsegmentinjournalentry
10.1.500 FinancialManagement GeneralLedger 178865 Application PostingEngineErroronpostingifMandatoryDynamicREAccountismasked
VerifyBalancesfailswithanerrorifREAccounthasmaskedmandatorydynamic
10.1.500 FinancialManagement GeneralLedger 178872 Application segment
StructuredTrialBalancereportMovelatestchangescompletedforTrialBalance
10.1.500 FinancialManagement GeneralLedger 179041 Application Report
JournalEntryGLAccountvalidationdoesnotworkonGLAccountifselectedusing
10.1.500 FinancialManagement GeneralLedger 179045 Application GLAccountButton
ReviewJournalAction'ReleaseLockedDocuments'removescorrectlockingcausing
10.1.500 FinancialManagement GeneralLedger 179085 Application severalissuesforCOSandWIPposting
PostingEngineGLAccountsinSelfBalancinglinesisnotvalidatedduringSingleGL
10.1.500 FinancialManagement GeneralLedger 179095 Application isposted
AssetDepreciationReportShouldprintperiodnumberinsteadofinternal
10.1.500 FinancialManagement GeneralLedger 179134 Application sequencenumber
10.1.500 FinancialManagement GeneralLedger 179257 Application PostingEnginePerformanceImprovements
10.1.500 FinancialManagement GeneralLedger 179264 Application ReviewJournalAsyncconfirmationfailswithexceptionforfirsttimerunning
GLTransactionTypeImportingruleswithsegment"Location"commentsallthe
10.1.500 FinancialManagement GeneralLedger 179352 Application segments

Page19
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


Inventory/WIPReconciliationReportdoesnotbringrecordforTransactionSystem
10.1.500 FinancialManagement GeneralLedger 179568 Application Dateoption
PostingEngineIncorrectValidationerrorisshownforStatisticalOnlyaccountsin
10.1.500 FinancialManagement GeneralLedger 179655 Application ReviewJounal
BookClearing/Changing/LoadingofREaccountcauseserrorifCOAhasDynamic
10.1.500 FinancialManagement GeneralLedger 179664 Application segment
GeneralLedgerReportPreviewingtakesmorethan10hourstocompletewhen
10.1.500 FinancialManagement GeneralLedger 179894 Application selectsinglefiscalperiod
StructuredTrialBalancereportCannotchangeYearinUIifSuffixisused(missing
10.1.500 FinancialManagement GeneralLedger 179904 Application 177234)
10.1.500 FinancialManagement GeneralLedger 180167 Application GLAccountSummaryReportSegmentFiltererror
10.1.500 FinancialManagement GeneralLedger 180616 Application EditListUnabletopostorprintEditListafterupgradingfrom10.1.301to10.1.400
10.1.500 FinancialManagement GeneralLedger 180621 Application GeneralLedgerReportRestoreoriginalcontrolnamesandEpiGuids
GLAccountSummaryReport[EWA]ErrorisdisplayedwhenclickingSegment
10.1.500 FinancialManagement GeneralLedger 180737 Application Searchbutton
GeneralLedgerReportOpenWith>AccountSegmentValuesEntryopensempty
10.1.500 FinancialManagement GeneralLedger 180782 Application formforselectedsegment
10.1.500 FinancialManagement GeneralLedger 180986 Application JournalEntryGLJrnDTL.createdateandGLJrnDtlMnl.createdatearenotpopulated
10.1.500 FinancialManagement GeneralLedger 181110 Application GeneralLedgerImportIncorrectValidationmessageisshowninlog
PostingEngine"Segmentisdefinedas'notused'"doesnotworkcorrectlyfor
10.1.500 FinancialManagement GeneralLedger 181298 Application dynamicsegments
PostingEngineEnhancelogwritingtobeparsefriendlybyexternalprograms,i.e.
10.1.500 FinancialManagement GeneralLedger 181306 Application PDTlibraries
JournalEntryErrorwhenpostingeditlistformultibookjournal(Alsofixedin
10.1.500 FinancialManagement GeneralLedger 181467 Application 10.1.400.x)
ConversionWorkbenchMigrationfrom10.0to10.1failedonconversion230with
10.1.500 FinancialManagement GeneralLedger 181468 Application completedwitherrors
COAImportGeterror"GLAccount1100cannotbeimported:Objectreferencenot
10.1.500 FinancialManagement GeneralLedger 181901 Application settoaninstanceofanobject."
ReviewJournalReviewjournalforBankReconciliationpostingavailablebefore
10.1.500 FinancialManagement GeneralLedger 181911 Application postingprocesscompleted
GeneralLedgerAccountAccountscannotbecreatedusingtheListtab(Alsofixedin
10.1.500 FinancialManagement GeneralLedger 181937 Application 10.1.400.x)
AccountBudgetCopyBudgets(Actuals)hangstheapplicationanddoesnot
10.1.500 FinancialManagement GeneralLedger 181941 Application complete
10.1.500 FinancialManagement GeneralLedger 182134 Application JournalEntryTraceRecordingandPDTforGLJournalEntryScenario
JournalEntryRecordsinTranGLCarenotdeletedincasemultibookeditlistis
10.1.500 FinancialManagement GeneralLedger 182229 Application printed

Page20
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


PostingEngineDeadlockofGLJrndtlMnltable,singleandmultiBook,foundonTitan
10.1.500 FinancialManagement GeneralLedger 182356 Application environment(Alsofixedin10.1.400.x)
UsingGLJrnDtlMnl.UpdateExtmethodtoinsertarecordthroughServiceConnect
10.1.500 FinancialManagement GeneralLedger 182473 Application generateserror
COAExport/ImportStatisticalUOMsandGLCOAReferenceTypesarenothandled
10.1.500 FinancialManagement GeneralLedger 182774 Application correctly
PostingEngineTransactionTypecompilationcausesdeadlockifseveralpostings
10.1.500 FinancialManagement GeneralLedger 182834 Application runafterupdate
JournalDetailTrackerSystemtakesmorethan100secondstoretrieve100records
10.1.500 FinancialManagement GeneralLedger 182960 Application inJournalNumberSearch
10.1.500 FinancialManagement GeneralLedger 183060 Application CannotprintAssetEditlistifAssetRevaluationisaddedintwodifferentcases
COAImportCannotupdateCOAinfolikeGLReferencemasks,Currencysetup,etc.,
10.1.500 FinancialManagement GeneralLedger 183202 Application iffilehaspartialSegmentSetupandnoaccountcodes
FinancialReportsNotarrangedbyDepartmentwhenusingcustomization(Also
10.1.500 FinancialManagement GeneralLedger 183219 Application fixedin10.1.400.x)
10.1.500 FinancialManagement GeneralLedger 183351 Application SynchronousGLpostingofseveralgroupscausesanerroronBalancesUpdate
Inventory/WIPReconciliationReportPartClassInspectionaccountsetupdoesnot
10.1.500 FinancialManagement GeneralLedger 183416 Application affectINSMTLandPURINStransactions
GenericImportProcessGLControlcalculationaffectstheperformanceforbigger
10.1.500 FinancialManagement GeneralLedger 183552 Application groups
10.1.500 FinancialManagement GeneralLedger 183764 Application PELogViewerDoesnotworkwhenthereisanampersand(&)inanyfield
GLBatchBalancesProcessneverfinishesprocessinginActivetasktab;memory
10.1.500 FinancialManagement GeneralLedger 184104 DBSpecific Leak
10.1.500 FinancialManagement GeneralLedger 184166 Application SelfBalancingSegmentStatisticalamountshouldnotbecopiedfromoriginalline
COAImportF1doesnotloadcorrectlinktodescriptionofUpdateExistingCOA
10.1.500 FinancialManagement GeneralLedger 184470 Application Modeoptions
10.1.500 FinancialManagement GeneralLedger 184487 Application AllocationTemplate:needtoremovechangesforSCR178861
FinancialReportsReportnotchangingcategoriesforaccountbetweencreditand
10.1.500 FinancialManagement GeneralLedger 184614 Application debit,ifbalanceisdifferentfrommainaccountbalance
JournalEntryPerformancedecreaseinGLBook::GetByID()and
10.1.500 FinancialManagement GeneralLedger 184633 Application GLJournalEntry::Update()
PostingEngineUpdateBalancesdoesnotfunctionwhenpostingGLAllocations
10.1.500 FinancialManagement GeneralLedger 185623 Application (Alsofixedin10.1.400.x)
10.1.500 FinancialManagement GeneralLedger 185787 Application CosAndWipcanpostparttrantwiceinthesameposting
PaymentEntrySelectInvoicesgeneratesonlyonepaymentwhenselectinginvoices
10.1.500 FinancialManagement GeneralLedger 186324 Application withdifferentbank
CashReceiptEntryUnallocatingcreditmemoandclickingRefreshtriggerscurrency
10.1.500 FinancialManagement GeneralLedger 186840 Application exchangeerror

Page21
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


GenerateRebateTransactionsIncorrectARInvoicecreationafterdummyschedule
10.1.500 FinancialManagement GeneralLedger 187053 Application isexecuted
ARInvoiceBalanceReportDocOpeningBalanceTotalisaddedoneveryTotalFor
10.1.500 FinancialManagement GeneralLedger 187074 Application Currencyline
10.1.500 FinancialManagement GeneralLedger 187277 Application JournalEntryUnabletoPostMultiCompanyJournals
ARInvoiceBalanceReportIncorrectclosingbalance,paymentarenotbeing
10.1.500 FinancialManagement GeneralLedger 187496 Application applied
ChartofAccountsSegmentsarenotrenumberedifonewasdeleted;causes
10.1.500 FinancialManagement GeneralLedger 188726 Application postingerrors
ReviewJournalErrorreturnedforJournalEntryCancellationofVoidAPPayment
10.1.500 FinancialManagement GeneralLedger 188944 Application entry
10.1.500 FinancialManagement InventoryManagement 174119 Application PartTransactionHistoryTrackerIncorrectRunningTotalforSTKASTPartTrans
10.1.500 FinancialManagement JobManagement 176582 Application CaptureCOS/WIPActivityTranGLCduplicatewhenUKisconfigured
CaptureCOS/WIPActivityLastRunStarting/EndingdateisdisplayedinUSDate
10.1.500 FinancialManagement ManagementReporter 182740 Application formatregardlessofregionalsettings(Alsofixedin10.1.400.x)
10.1.500 FinancialManagement MultiSiteManagement 89137 Application ConsolidationDefinitionNewsubmenuitemismisspelled
SSRSConsolidationReportReportdisplaysadditionalrecordswhenusingdatafrom
10.1.500 FinancialManagement MultiSiteManagement 159336 Application aconvertedEpicor9DB
MultiCompanyDirectServerProcessEWAMultiCompanyDirectServerProcess
10.1.500 FinancialManagement MultiSiteManagement 163205 Application doesnotexecuteanyprocess
ConsolidatetoParentUsingFiscalYearSuffixestheuserisabletoselectaprevious
10.1.500 FinancialManagement MultiSiteManagement 164785 Application FiscalYearandFiscalyearsuffixofaconsolidation
10.1.500 FinancialManagement MultiSiteManagement 172121 Application ConsolidatetoParentSourceControlepishapenotdisplayingcorrectstatus
FinancialManagement MultiSiteManagement 174060 Application ConsolidatetoParentConsolidationisslowinDeltamodecomparingtooverride
10.1.500 mode(Posting)
MultiCompanyDirectServerProcessUnabletocreateaConsolidatedPOin
10.1.500 FinancialManagement MultiSiteManagement 174090 Application ExternalSite
MultiCompanyDirectServerProcessErrorMessageisdisplayedintheMulti
CompanyLogFile"Error:UnexpectedXMLdeclaration.TheXMLdeclarationmustbe
thefirstnodeinthedocument,andnowhitespacecharactersareallowedtoappear
10.1.500 FinancialManagement MultiSiteManagement 175048 Application beforeit.Line2,position3"
FinancialManagement MultiSiteManagement 175072 Application ConsolidatetoParentConsolidationisslowinDeltamodecomparingtooverride
10.1.500 mode(Report)
FinancialManagement MultiSiteManagement 175073 Application ConsolidatetoParentConsolidationisslowinDeltamodecomparingtooverride
10.1.500 mode(Transferprocess)
10.1.500 FinancialManagement MultiSiteManagement 175245 Application ConsolidatetoParentNeedanoptiontopreventloggingtoincreaseperformance
ConsolidationMonitorConsolidationMonitordisplaytheincorrectstateof
10.1.500 FinancialManagement MultiSiteManagement 175462 Application consolidation

Page22
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


MultiCompanyDirectServerProcessUnabletoShareaGlobalPartwiththesame
10.1.500 FinancialManagement MultiSiteManagement 175638 Application ID
ConsolidatetoParentWhenposting,erroroccurs:Cannotdetermineprevious
10.1.500 FinancialManagement MultiSiteManagement 175750 Application exchangerate(Alsofixedin10.1.400.x)
MultiCompanyDirectServerProcessErroroccurswithoutprocessingrecordsfrom
10.1.500 FinancialManagement MultiSiteManagement 176016 Application IntQueOuttable(Alsofixedin10.1.400.x)
10.1.500 FinancialManagement MultiSiteManagement 176461 Application ConsolidatetoParentDeadlockwhenrunningconcurrenttransferprocesses
10.1.500 FinancialManagement MultiSiteManagement 177946 DBSpecific ConsolidatetoParentErrorswhenrunningsimultaneoustransfers
MultiCompanyDirectServerProcessObjectreferenceerrorwhenrunningthe
10.1.500 FinancialManagement MultiSiteManagement 178949 Application process
10.1.500 FinancialManagement MultiSiteManagement 179063 Application ConsolidatetoParentSelectingRetrieveAllcausesbusinesslogicerror
10.1.500 FinancialManagement MultiSiteManagement 179394 Application ConsolidatetoParentPostingoptionsnotworkingproperly
ConsolidationDefinitionTargetCompanyDDLshouldonlydisplaylocalcompany
10.1.500 FinancialManagement MultiSiteManagement 180250 Application andcompaniesconfiguredasexternalinlocalcompany
ConsolidatetoParentDefaultperiodsnotretrievedcorrectlywhenselectingfiscal
10.1.500 FinancialManagement MultiSiteManagement 180375 Application yearsuffix
GenericIntegrationServerProcessProcessstopswitherror"Transactionhas
10.1.500 FinancialManagement MultiSiteManagement 180895 Application aborted"
MultiCompanyDirectServerProcessInvalidOperationExceptionerrorgenerated
10.1.500 FinancialManagement MultiSiteManagement 182806 Application afterConsolidatedPOisreceived
ConsolidatetoParentWhenpostingaretroconsolidation,theexchangeratesare
10.1.500 FinancialManagement MultiSiteManagement 182862 Application retrievedincorrectly(Alsofixedin10.1.400.x)
IntegratedTableWorkbenchValidateoptionisnotdisplayinginformation(error
10.1.500 FinancialManagement MultiSiteManagement 183366 Application count)inerrorlistfield
ConsolidatetoParentWhenpostingaretroconsolidation,theexchangeratesare
10.1.500 FinancialManagement MultiSiteManagement 183466 Application retrievedincorrectly(Alsofixedin10.1.400.x)
MultiCompanyDirectServerProcessError"Processalreadyrunning"displays
10.1.500 FinancialManagement MultiSiteManagement 184620 Application whensubmittingtwodifferentcompanies(Alsofixedin10.1.400.x)
ConsolidatetoParentNewyearconsolidationdoesnotmakenecessary
10.1.500 FinancialManagement MultiSiteManagement 187081 Application revaluationofpreviousyear
ConsolidatetoParentNotallconsolidationpostsaretransferredtoTargetBookin
10.1.500 FinancialManagement MultiSiteManagement 187750 Application OverrideMode
ConsolidatetoParentForexchangeratechanges,theaccountsarenotbeing
10.1.500 FinancialManagement MultiSiteManagement 187762 Application revaluatedonOverrideMode
PayrollCheckEntryReprintingchecksusingtheLastGoodCheckNumbercausesan
10.1.500 FinancialManagement Payroll 176041 Application error
DeductionAddingGLControlstonewDeductionssetsthenewGLControltothe
10.1.500 FinancialManagement Payroll 179114 Application firstdeductioninthelist
10.1.500 FinancialManagement Payroll 180553 Application VoidPayrollCheckEntryTheinformationontheformisnottotallycleared

Page23
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


ExternalPayrollIntegrationUpdatemenusshouldnotberestrictedtoSecurity
10.1.500 FinancialManagement Payroll 188548 Application Managersonly
ExternalPayrollIntegrationExternalPayTypeMaintenanceloadsallofthepay
10.1.500 FinancialManagement Payroll 188860 Application typeswhenopenedfromthecontextmenu
Rebates,Promotionsand
10.1.500 FinancialManagement Royalties 165426 Application RebateContractEntry2ndlineRebateisnotprocessed
Rebates,Promotionsand RebateContractTransactionReportWhentryingtoprintpreview,systemmonitor
10.1.500 FinancialManagement Royalties 166963 Application sendsanerrormessage
Rebates,Promotionsand GenerateRebateTransactionsCalculatedrebateamountsarenotgeneratedas
10.1.500 FinancialManagement Royalties 171313 Application expectedforRebateswithBreakType=Amount
Rebates,Promotionsand RebateTransactionAdjustmentWhenclickingtheRefreshbutton,the"Recordnot
10.1.500 FinancialManagement Royalties 172036 Application found"errorappears
Rebates,Promotionsand
10.1.500 FinancialManagement Royalties 172700 Application RebateTransactionAdjustmentSomeissuesusingvoidoption
Rebates,Promotionsand RebateContractEntryClickingTreeviewwhenaddinganewcustomercauses
10.1.500 FinancialManagement Royalties 176202 Application detailsmismatch
Rebates,Promotionsand RebateContractEntryActionCopyRebatedoesnotconsiderifacustomerhas
10.1.500 FinancialManagement Royalties 176203 Application RebateSupplierforthecopy
Rebates,Promotionsand RebateContractTransactionReportInvoiceDaterangeandTransDaterangeare
10.1.500 FinancialManagement Royalties 176299 Application empty
Rebates,Promotionsand
10.1.500 FinancialManagement Royalties 177140 Application RebateTransactionAdjustment(EWA)Someissuesusingvoidoption
FinancialManagement Rebates,Promotionsand 177208 Application RebateContractStatusStatusDashboarddoesnotdisplaythePaidtodate
10.1.500 Royalties informationcorrectly
Rebates,Promotionsand GenerateRebateTransactionsRestoreoriginalRebatecalculationwithapplying
10.1.500 FinancialManagement Royalties 178724 Application rebatepercent/amountonlytovalueoverRebateBreak(Alsofixedin10.1.400.x)
Rebates,Promotionsand GenerateRebateTransactionsCreditMemosarenotusedingeneratedRebate
10.1.500 FinancialManagement Royalties 181480 Application transactions;thereforedonotaffectrebatecalculations(Alsofixedin10.1.400.x)
Rebates,Promotionsand InvoiceEntryARGetRebatesoptiondoesnotworkwhenCreditMemoand
10.1.500 FinancialManagement Royalties 182520 Application Paymentsaremixedincontract
Rebates,Promotionsand RebateContractEntryCustomeroverridedoesnotworkwithRebateFormCredit
10.1.500 FinancialManagement Royalties 184596 Application Memo
HHPackageControlParentMasterEDIdatavalidationformixedmasters(Also
10.1.500 ProductionManagement DataCollection 172931 Application fixedin10.1.400.x)
10.1.500 ProductionManagement DataCollection 173986 Application HHPackageControlOverlayValidateValidationproblems
10.1.500 ProductionManagement DataCollection 174268 Application HHPackageControlParentMaster&MixedIssuesfoundforPrint
10.1.500 ProductionManagement DataCollection 175077 Application WorkQueueGridforCurrentWorkTABhasblankEXUDfield
HHPackageControlAdhocReceiptToInventoryWhse/BinonPCID<>PartBinPCID
10.1.500 ProductionManagement DataCollection 175112 Application whenreceivestagedPCIDtodifferentwhse

Page24
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


HHPackageControlAdhocReceiptToInventory2ndpassincorrectfocusaction
10.1.500 ProductionManagement DataCollection 175143 Application usingHHmenu
StartProductionActivity"Operationsetupisnotcomplete"erroroccursalthough
10.1.500 ProductionManagement DataCollection 175168 Application setupoperationwascompletedpreviously(Alsofixedin10.1.400.x)
HHPackageControlInventoryTransferAfterselectaBin,itisnotretrievedinthe
10.1.500 ProductionManagement DataCollection 175271 Application screen
10.1.500 ProductionManagement DataCollection 175294 Application ReportQuantityIncorrectPartWIPforlottrackedmaterials
WorkQueueWhenaddingLaborQtyinaSetupActivity,thisquantityisnotadded
10.1.500 ProductionManagement DataCollection 175415 Application totheProductionQty
HHPackageControlInventoryTransferPCIDsforMASTERandMIXEDare
10.1.500 ProductionManagement DataCollection 175703 Application generatingaPartBinrecordsincorrectly
HHPackageControlInventoryTransferPCIDcolumnsarenotpopulatedinthePart
10.1.500 ProductionManagement DataCollection 175712 Application Transactionhistorytracker
HHPackageControlInventoryTransferNoerrorisdisplayedwhenenteraPCID
10.1.500 ProductionManagement DataCollection 175773 Application withstatusEMPTY
HHPackageControlOverlayPCIDLabelValidationIfPCIDConfigurationdoesnot
10.1.500 ProductionManagement DataCollection 175867 Application allowvoids,stoptheusertocontinuewiththevalidateprocess
10.1.500 ProductionManagement DataCollection 175869 Application HHPackageControlOverlayPCIDLabelValidationTargetBinNumisnotpopulated
HHPackageControlInventoryTransferQualitywarehousetyperulesarenot
10.1.500 ProductionManagement DataCollection 176042 Application validated
HHPackageControlInventoryTransferNotdisplayingthePCIDinfowhenaPCIDis
10.1.500 ProductionManagement DataCollection 176319 Application scanned
10.1.500 ProductionManagement DataCollection 176613 Application AnemptymessageisdisplayedwhenenteringaninvalidresourceIDinMES
HHPackageControlRepackReclassByPCIDTargetPCIDisnotclearedafter
10.1.500 ProductionManagement DataCollection 177428 Application tabbingout(Alsofixedin10.1.400.x)
HHPackageControlRepackReclassByPCIDTargetWarehouse&Binarenot
10.1.500 ProductionManagement DataCollection 177444 Application populatedinthePkgControlSplitMergetable(Alsofixedin10.1.400.x)
HHPackageControlAdhocReceiptToInventoryInventoryissubtractedfrom
10.1.500 ProductionManagement DataCollection 177510 Application incorrectwarehouse/bin
HHPackageControlRepackReclassByPCIDshouldnotdeletezeroqty
10.1.500 ProductionManagement DataCollection 177695 Application PkgControlItem
HandheldPackageControlTrackerPCIDPCIDcolumnonsearchgridshoulddefault
10.1.500 ProductionManagement DataCollection 177697 Application tobewider
HandheldPackageControlTrackerPCIDReturnable&extendableflagsingrid
10.1.500 ProductionManagement DataCollection 177778 Application shouldmaptoreturnable&extendableflags(Alsofixedin10.1.400.x)
HHPackageControlRepackReclassByPCIDPCIDgeneratedforremaining
10.1.500 ProductionManagement DataCollection 177785 Application quantityshouldhavePartial=True
PackageControlIDAdhocJobOutputTransactionfieldsettoDEFAULTwhen
10.1.500 ProductionManagement DataCollection 177991 Application screenrunfrommainapp(Alsofixedin10.1.400.x)

Page25
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


HHPackageControlRepackReclassByPCIDIncorrecterrorisdisplayedifthereis
10.1.500 ProductionManagement DataCollection 178217 Application noprinterforPKGRPKtransaction
HHPackageControlOverlayPCIDandLabelPCIDisnotgeneratedinthePartBin
10.1.500 ProductionManagement DataCollection 178242 Application table
HHPackageControlOverlayPCIDLabelValidationRedefinetransactionscopeto
10.1.500 ProductionManagement DataCollection 178286 Application avoiddatacorruption
HHPackageControlHasBeenOverlaidcheckboxandSourceRepackPCIDare
10.1.500 ProductionManagement DataCollection 178739 Application populatedincorrectly(Alsofixedin10.1.400.x)
HHPackageControlParentMasterUnabletocreateaParentMasterwhenMaster
10.1.500 ProductionManagement DataCollection 178830 Application LabeltypehasnoPartIDassigned
HHPackageControlJobReceiptToInventoryFocusissettotheWarehousefield
BUTneedstohavefocusatthePCIDfield(ifmorethan1binthenbinwillhave
10.1.500 ProductionManagement DataCollection 178948 Application focus)
HHPackageControlAdhocReceiptToInventoryWarehouseButtonisconfigured
asF5,theotherHHscreensthathavetheWarehousedefinedasF4;needtobe
10.1.500 ProductionManagement DataCollection 178956 Application consistent
HHPackageControlParentMasterBTfileshouldincludeadditionalfieldsthatneed
tobeaddedtotheMasterlabel;needtoaddcalculatedfields(Alsofixedin
10.1.500 ProductionManagement DataCollection 179060 Application 10.1.400.x)
10.1.500 ProductionManagement DataCollection 179345 Application HHPackageControlParentMasterMultipleissuesreported
HHPackageControlParentMixedMaxPartQuantityPerLabelfieldonMixed
10.1.500 ProductionManagement DataCollection 179478 Application MasterLabelTypes
HHPackageControlParentMixedBTfileneedstoincludeadditionalfieldsthat
needtobeaddedtotheMixedlabel;includingthesummarizeddatathatmustbe
10.1.500 ProductionManagement DataCollection 179584 Application partoftherequiredlabelformatforAutomotive(Alsofixedin10.1.400.x)
HandheldPackageControlTrackerPCIDPackageControlSearchgridneedstoget
10.1.500 ProductionManagement DataCollection 180302 Application cleanedup
EndActivityValuesnotupdatedforthefollowingfields:JobOper.QtyCompleted
10.1.500 ProductionManagement DataCollection 180352 Application andJobHead.QtyCompleted(Alsofixedin10.1.400.x)
HHPackageControlConfirmMasterandMixedIncorrecterrormessageis
10.1.500 ProductionManagement DataCollection 181418 Application displayedwhenassigningaPCIDtoadifferentMaster/Mix
10.1.500 ProductionManagement DataCollection 181874 Application EndActivityScrapReasonCodessettoFalsedisplayinsearch
10.1.500 ProductionManagement DataCollection 182019 Application StartActivityInvalidResourceGrouperrorwhentryingtooverrideanoperation
WorkQueueRecordscannotbeselectedinthetreeusingthemousecursor(Also
10.1.500 ProductionManagement DataCollection 182278 Application fixedin10.1.400.x)
HHPackageControlRepackReclassByPCIDSplit/Mergerecordshouldbecreated
10.1.500 ProductionManagement DataCollection 183182 Application fornewremainingQtyPCID
StartActivityWarningmessagesdisplayevenwhentheOperationsareStartto
10.1.500 ProductionManagement DataCollection 183445 Application StartandFinishToFinish

Page26
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


HHPackageControlParentMasterMESErrormessagedisplayedonHHpackage
10.1.500 ProductionManagement DataCollection 183569 Application ControlParentMasterandMix
10.1.500 ProductionManagement DataCollection 184659 Application HHPackageControlOverlayPCIDLabelValidationNeedstobespecific
HHPackageControlRepackReclassByPCIDIncorrecterrorwhena
10.1.500 ProductionManagement DataCollection 184673 Application LabelStatus=VOIDorwhemthelabeltype<>InternalorIndividual
10.1.500 ProductionManagement DataCollection 184698 Application HHPackageControlJobReceiptToInventoryScanneddataclearedonerror
10.1.500 ProductionManagement DataCollection 184702 Application HHPackageControlJobReceiptToInventory
HHPackageControlInventoryTransferWhenpressingtheENTERkey,theselected
10.1.500 ProductionManagement DataCollection 184711 Application recordhighlighteddoesnotload
10.1.500 ProductionManagement DataCollection 185310 Application HHPackageControlParentMixedShowsincompletemessage
HHPackageControlAdhocReceiptToInventoryDoesnotconsumeReturnableor
10.1.500 ProductionManagement DataCollection 185852 Application ExpendablePackagesifconfiguredtodoso
HHPackageControlParentMixedWhenachildlabelisscannedormanuallytyped
inandtheLPCstatusiseither"PACK","SHIPPED",or"INVOICED",themessage
10.1.500 ProductionManagement DataCollection 186342 Application displayedisStatusisnotSTOCK
HHPackageControlJobReceiptToInventoryIncorrecterrormessagetransactiona
10.1.500 ProductionManagement DataCollection 187198 Application PCIDfromclosedjob
EndActivityWhenendinganactivity,WIPdoesnottakethevalueofCurrentField
10.1.500 ProductionManagement DataCollection 187591 Application ifyoumadeanIssueMaterialbefore
10.1.500 ProductionManagement DataCollection 188017 Application StartActivityMESStarting2ndOperationdisplayswarningmessages
HHPackageControlParentMixedWarningsshouldbedisplayedasExceptionsto
10.1.500 ProductionManagement DataCollection 188124 Application fitintheHHscreensize
HHPackageControlJobReceiptToInventoryWhenscanningaPCIDintoinventory,
10.1.500 ProductionManagement DataCollection 188778 Application itoverwritestheCreatedByand'CreatedDate'data
HHPackageControlRepackReclassByPCIDTransactiontypeisnotsetwhenPCID
10.1.500 ProductionManagement DataCollection 188892 Application isgenerated
HHPackageControlConfirmMasterandMixedUsingconfirmMix/MasterPCID
10.1.500 ProductionManagement DataCollection 189407 Application doesnotvalidateEDILabelValuesforParentPCIDMASTER
MfgLeadTimeCalculationUsingcompanycalendarifnocalendaronresourceor
10.1.500 ProductionManagement Engineering 153434 Application resourcegroup
EngineeringWorkbenchCompletingtasksintheEngineeringWorkbenchUpdated
10.1.500 ProductionManagement Engineering 157407 Application twice
MfgLeadTimeCalculationMfgLeadTimeiscalculatedincorrectlywhenhavinga
10.1.500 ProductionManagement Engineering 161793 Application receivetimeonamaterialanddaysoutforasubcontract
MfgLeadTimeCalculationLeadTimeforSubassemblyisdoublecountedinMfg
10.1.500 ProductionManagement Engineering 166213 Application LeadTime
CostingWorkbenchCostRollupisnotrollingcostsupcorrectly,BOMCostisinan
10.1.500 ProductionManagement Engineering 170536 Application endlessloopwhenhavingcircularreferences

Page27
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


MfgLeadTimeCalculationIncorrectLeadTimeswhenmaterialsarecheckedasPull
10.1.500 ProductionManagement Engineering 171703 Application AsAssembly
MethodTrackerEffectiveRevisionmessagesaredisplayedtwicewhenmethod
10.1.500 ProductionManagement Engineering 173572 Application trackerisloadedfromPartEntry
EngineeringWorkbenchViewCostsdiscrepancywhenusingTransferMaterialfrom
10.1.500 ProductionManagement Engineering 173602 Application anotherSite
10.1.500 ProductionManagement Engineering 174263 Application EngineeringWorkbenchDefaultNextMilestoneisignoredwhencompletingaTask
BOMListingReportisnotprintedcorrectlytheReferenceDesignatorsIDs(Also
10.1.500 ProductionManagement Engineering 174987 Application fixedin10.1.400.x)
10.1.500 ProductionManagement Engineering 175169 Application EngineeringWorkbenchUnabletoeditMaterialandOperationAttachments
BOMListingReportconvertedtoWORDonlydisplaysthecolumnHeadersonthe
10.1.500 ProductionManagement Engineering 175173 Application firstpage
EngineeringWorkbenchUsercanenterMaintenanceoperations,whichareinvalid
10.1.500 ProductionManagement Engineering 175181 Application forthisscreen
EngineeringWorkbenchUnabletoResequenceOperationswhenhaving
10.1.500 ProductionManagement Engineering 175186 Application attachmentsinthefirstoperation
10.1.500 ProductionManagement Engineering 175196 Application EngineeringWorkbenchUnabletoseeMaterialAttachmentsinTreeview
EngineeringWorkbenchCheckOutPartsonPartEntrydoesnotcreateitsMemo
10.1.500 ProductionManagement Engineering 175213 Application likeinEpicor9.05.703
MethodTrackerVerifytheOperationsfortheRevision,whenmovingtothe
10.1.500 ProductionManagement Engineering 175309 Application Operationtab,theSystemCleartheScreen
MethodTrackerQuantityFactorsQty/Parentfieldonlyallows2digitsafterthe
10.1.500 ProductionManagement Engineering 175336 Application decimalpoint
BOMCostOperationCostcalculationisdifferentwhenusingSerialNumber
10.1.500 ProductionManagement Engineering 175611 Application Material
EngineeringWorkbenchSettingpullasassemblyisTrueformaterialsthatare
10.1.500 ProductionManagement Engineering 175785 Application definedastypetransferandnonstock
MethodTrackerWhenopenedfromaContextMenu,formisclearedafter
10.1.500 ProductionManagement Engineering 176020 Application changingfocusbetweentabs
10.1.500 ProductionManagement Engineering 177069 Application EngineeringWorkbenchLeavingPartRev.Plantfieldblankinsomescenarios
AvailabilityReportdoesnotallowapartIDwithmorethan30characterswhenwe
10.1.500 ProductionManagement Engineering 177076 Application additmanually
ExclickPartCheckoutDrawingrevisionfieldisnotchangingtothecorresponding
10.1.500 ProductionManagement Engineering 177449 Application revisionselected
BOMListingReportThecolumnheadersarenotdisplayedcorrectlyandcannotbe
10.1.500 ProductionManagement Engineering 178751 Application read
MfgLeadTimeCalculationProcessesusingleadtimefromexpiredSupplierPrice
10.1.500 ProductionManagement Engineering 179049 Application Listtocalculatethecumulativetime

Page28
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


BOMListingReportdoesnotprinttheinformationinorderwhenprintedonthe
10.1.500 ProductionManagement Engineering 179898 Application indenterlevel(Alsofixedin10.1.400.x)
10.1.500 ProductionManagement Engineering 180233 Application MethodTrackerViewcostscreendisplaysincorrecttotalforsomemethods
10.1.500 ProductionManagement Engineering 180342 Application EngineeringWorkbenchServerstopsworkingafterdoingcheckin
EngineeringWorkbenchPurchasedpartfromadifferentsitecannotbeaddedas
10.1.500 ProductionManagement Engineering 180479 Application Material;objectreferenceerrorisdisplayed
EngineeringWorkbenchDraggedanddroppedMaterialsdonotloadbydefaulton
10.1.500 ProductionManagement Engineering 182523 Application Materialstabandcauseanerrorwhenchangingtabs(Alsofixedin10.1.400.x)
10.1.500 ProductionManagement Engineering 182789 Application SQLInjectionwarninginBMM20
EngineeringWorkbenchNotallowingtoaddmanuallyoperationstoanalternate
10.1.500 ProductionManagement Engineering 183225 Application method
EngineeringWorkbenchApplicationdoesnotrespond,unabletocheckapart(Also
10.1.500 ProductionManagement Engineering 183297 Application fixedin10.1.400.x)
EngineeringWorkbenchTreeisnotcorrectlydisplayingthenextmilestoneswhen
10.1.500 ProductionManagement Engineering 183936 Application havingtwomilestoneswithsametaskID
EngineeringWorkbenchFocusoftherevisionisnotchangingwhenselectdifferent
10.1.500 ProductionManagement Engineering 184592 Application operationunderthetreeview(Alsofixedin10.1.400.x)
EngineeringWorkbenchThematerialsthatarecheckedoutinanactiverevision
10.1.500 ProductionManagement Engineering 184705 Application assigntheirmaterialsandoperationstothetopmaterial
EngineeringWorkbenchUnabletocheckinacopiedandeditedSaleskit,Business
10.1.500 ProductionManagement Engineering 184896 Application LayerExceptionerrormessageisdisplayed
10.1.500 ProductionManagement Engineering 185829 Application MethodTrackerTheBOMofthesubassembliesarenotdisplayed
10.1.500 ProductionManagement Engineering 188376 Application MfgLeadTimeCalculationAddtheTopLevelTimecalculationinfoinPartTracker
EnhancedQuality
10.1.500 ProductionManagement Assurance 157552 Application InspectionResultsEntryEWASearchdoesnotretrieverecords+blankdialog
EnhancedQuality InspectionSpecificationEWAformdoesnotallowenteringapasslistorfaillist
10.1.500 ProductionManagement Assurance 159811 Application throughEWA
EnhancedQuality InspectionResultsEntryUnabletoselectSerialNumberswhenaPartcontains
10.1.500 ProductionManagement Assurance 174646 Application InspectionPlans
EnhancedQuality InspectionResultsEntryComboboxvaluesarelostwhenreconfiguringthe
10.1.500 ProductionManagement Assurance 176693 Application InspectionSample(Alsofixedin10.1.400.x)
EnhancedQuality InspectionPlanErrorwhenenteringresultstoaconfiguratorwithaRadiosetwith
10.1.500 ProductionManagement Assurance 178072 Application InspectionAttributes
EnhancedQuality InspectionResultsEntryCannotreconfigureifthereisanemptyDateandDecimal
10.1.500 ProductionManagement Assurance 178647 Application valuesarenotkept
EnhancedQuality EngineeringWorkbenchSetHoursPerMachvalueisnotretrievedforanassembly
10.1.500 ProductionManagement Assurance 183329 Application operation(Alsofixedin10.1.400.x)
EnhancedQuality
10.1.500 ProductionManagement Assurance 187274 Application SpecificationRoundsautomaticallytheInitialDecimalfield

Page29
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


ExpenseReportExtradecimalsaredisplayedonStandardandOptionalSSRS
10.1.500 ProductionManagement ExpenseManagement 158308 Application Reportstyles
10.1.500 ProductionManagement ExpenseManagement 167697 Application ExpenseReportOpenWithoptionisnotdisplayedonIDfieldcontextmenu
10.1.500 ProductionManagement ExpenseManagement 168445 Application TimeandExpenseTrackerEWAT&EEntry&TrackercannotbestartedinEWA
10.1.500 ProductionManagement FieldService 173818 Application ServiceContractEntryNotinvoicedRenewalContractscannotbedeleted
ServiceCallCenterAttachmentcannotbedeletedifServiceCallhasaSerial
10.1.500 ProductionManagement FieldService 173863 Application Numbervalue
ServiceCallCenterAftercreateanewlinetheNavToolduplicatesthevalueofthe
10.1.500 ProductionManagement FieldService 175204 Application CallID
ServiceJobEntryOperationsearchisnotdisplayingtherecordforthevalue
10.1.500 ProductionManagement FieldService 175208 Application selectedinsearchresultsdisplay
ServiceJobEntryCrossreferencePartisnotretrievedaftercreateanewService
10.1.500 ProductionManagement FieldService 175260 Application CallJob
ServiceCallCenterThecrossreferencepartisnotfilledinLinetabafterselecta
10.1.500 ProductionManagement FieldService 175275 Application Part
ServiceContractEntryAftercreatingorsavinganewline,theNavToolduplicates
10.1.500 ProductionManagement FieldService 175440 Application thevalueoftheContractNum
WarrantyCodeTryingtodeletewarrantycode,validationmessagesdisplayed
10.1.500 ProductionManagement FieldService 176679 Application twice
10.1.500 ProductionManagement FieldService 176731 Application SSRSWarrantyAnalysisReportPrintedPartsshippedandwithoutinvoice
ServiceJobEntryNoUnitPricevalueissetwhenMaterialisaddedfromanRMA
10.1.500 ProductionManagement FieldService 178267 Application Disposition
MiscellaneousShipmentEntryPackingSlipreportdoesnotdisplaydecimalvalues
10.1.500 ProductionManagement FieldService 180343 Application onQuantity(Alsofixedin10.1.400.x)
ServiceCallCenterErrormessageappearswhenaddingaservicecontracttoa
10.1.500 ProductionManagement FieldService 180761 Application servicecallwithnonUSAdateformatused(Alsofixedin10.1.400.x)
MiscellaneousShipmentEntrySelectingaControladdedtoaCustomSheetand
10.1.500 ProductionManagement FieldService 181324 Application boundtoMscShpHdcausestheapplicationtostopworking
10.1.500 ProductionManagement FieldService 181809 Application ServiceCallCenterAccessdeniederrormessagewhencreatinganewMemo
MiscellaneousShipmentEntry"Indexwasoutsidethebounds"errorwhentyping
10.1.500 ProductionManagement FieldService 182057 Application onCountryofOriginfield
ServiceContractEntryProblemswiththeRecurringServiceContractBillingprocess
10.1.500 ProductionManagement FieldService 185304 Application (Alsofixedin10.1.400.x)
ServiceContractEntrySerialnumbersaremissingwhenrenewingacontractthat
10.1.500 ProductionManagement FieldService 188134 Application hadlinesdeleted
PackageControlIDInventoryTransfernothandlingMasterorMixedMasters
10.1.500 ProductionManagement IWContentPack 173436 Application correctly
10.1.500 ProductionManagement JobManagement 146282 Application LaborEditDateisdisplayedtwiceonthereportforeachEmployee
10.1.500 ProductionManagement JobManagement 150057 Application LaborExpenseServiceJobtypeisnotdisplayedinthelist

Page30
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


10.1.500 ProductionManagement JobManagement 152803 Application TimesheetEntryLaborRateisdisplayedwhenAdvanceLaborRateisFalse
10.1.500 ProductionManagement JobManagement 161346 Application SerialNumberAssignmentEWAErrorwhentryingtocreateserialnumbers
SchedulingEngineThenumberofSchedulingBlocksisresetto1aftersavingajob
10.1.500 ProductionManagement JobManagement 163418 Application withmultipleSchedulingBlocks
SupplierPaymentMethodwasdisabledwhenaddingaBank/RemitintheBanks
10.1.500 ProductionManagement JobManagement 163825 Application grid
10.1.500 ProductionManagement JobManagement 163836 Application SupplierPanelswereexpandedwhenthewindowwasmaximized
10.1.500 ProductionManagement JobManagement 163911 Application SupplierWhenlinkingglobalsupplier,theskipoptionsendsanerror
JobEntryErrorisdisplayedwhenschedulingajobtomaketostockapartthatis
10.1.500 ProductionManagement JobManagement 164105 Application onlysetuponanothersite
10.1.500 ProductionManagement JobManagement 167334 Application JobEntryErrorwhendroppingaconfigurablesubassemblyinthejobtree
10.1.500 ProductionManagement JobManagement 169641 Application ShopLoadThefieldsCapacity,LoadandOverloadarenotcalculatedcorrectly
WorkInProcessEWAThesearchresultsarenotdisplayedwhentheEnterkeyis
10.1.500 ProductionManagement JobManagement 170169 Application Pressinthefilteroptions
NotAuthorizedSitesavailableforeditinSystemSetup>Company/SiteMaintenance
10.1.500 ProductionManagement JobManagement 171117 Application >SiteMaintenance
SupplierChangetothedocumentationregardingBankIdentifierandRoutingNum
10.1.500 ProductionManagement JobManagement 171674 Application fields
SupplierPurchasePointCountryandLanguageisoverwrittenwhenenteringa
10.1.500 ProductionManagement JobManagement 172572 Application differentcountryforManifestInfo>GeneralInt
10.1.500 ProductionManagement JobManagement 172741 Application SupplierzSupplierPPandzSupplierSearchBAQsdisplayincorrectresults
10.1.500 ProductionManagement JobManagement 173231 Application PackageControlMaintenancePCIDSearchneedstobeenhanced
JobEntryGetDetailsfromQuoteTemplate(orOrderJobWizard)applyingthe
MaterialBurden%fromQuotetosumofMfgElementsinsteadoftoonlytheUnit
10.1.500 ProductionManagement JobManagement 173327 Application MaterialCost
JobTravelerEWAWhenthereportisprintedandthenfiltersareselected,thefilter
10.1.500 ProductionManagement JobManagement 173369 Application informationisnotprinted
Inventory/WIPReconciliationReportIncludesInvoiceTransactionsfromDropShip
10.1.500 ProductionManagement JobManagement 173385 Application whenfilterbyJob
10.1.500 ProductionManagement JobManagement 173518 Application ProductionActivityTrackerSearchPanelfieldsareunaligned
JobEntryGetdetailsstopswitherrorsforajobcreatedfromanorderthatwas
10.1.500 ProductionManagement JobManagement 173717 Application createdfromconfiguredquoteline
10.1.500 ProductionManagement JobManagement 173728 Application JobEntryAuditLogtimecolumnisnotformattedasHH:MM:SS
JobTravelerSSRSWordOutputFormatOper.Qtycolumnfieldisoverlappingthe
10.1.500 ProductionManagement JobManagement 173785 Application Operationsdivisorline
10.1.500 ProductionManagement JobManagement 173891 Application JobEntryCollapseAssemblynotworkingforsubassembliesonthefly
JobEntry\QuoteEntry\EWBAddnewmateriallineshouldNOTdefaultquantity
10.1.500 ProductionManagement JobManagement 174006 Application perofone
10.1.500 ProductionManagement JobManagement 174258 Application LaborEditReportisnotdisplayingthefullServiceJobNumber

Page31
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


PlanningWorkbenchErrormessagesdisplayedwhenusingSubmitProcessto
10.1.500 ProductionManagement JobManagement 174439 Application createnewJob
JobEntryTheInspectionPlanandSpecificationIDfieldsareclearedwhenany
10.1.500 ProductionManagement JobManagement 174637 Application operationfieldisupdated
CaptureCOS/WIPActivityWhendoinganegativeJobtoJobReceipttheWIP
10.1.500 ProductionManagement JobManagement 174707 Application BalanceonParentJobisnotcleared(Alsofixedin10.1.400.x)
Site(Plant)Selectingcalendarfromsearchcausesthefollowingerror:Recordnot
10.1.500 ProductionManagement JobManagement 174839 Application available(Alsofixedin10.1.400.x)
10.1.500 ProductionManagement JobManagement 174842 Application Site(Plant)ChangeLogscreendoesnotopenfornewlyaddedsite
10.1.500 ProductionManagement JobManagement 174941 Application JobEntryCreateoneoffbundleforscalabilitytesting
10.1.500 ProductionManagement JobManagement 175017 Application JobTrackerTheTypefieldismissing
Inventory/WIPReconciliationReportHeaderdisplaysAllSiteswhenCurrentSite
10.1.500 ProductionManagement JobManagement 175022 Application optionisselected
10.1.500 ProductionManagement JobManagement 175165 Application PlantConfigurationTimeZoneOffsetisupdateable
10.1.500 ProductionManagement JobManagement 175257 Application ProductionDetailJobNumberdoesnotdisplayinthebottomrightcorner
JobEntryDraggingsubcontractoperationontojobdoesnotcheckSerialNumbers
10.1.500 ProductionManagement JobManagement 175324 Application Required
ProductionCalendarNotdisplayingSupplierswhenacalendarisselectedfrom
10.1.500 ProductionManagement JobManagement 175338 Application Searchform
JobEntryWhenusingaspecificsetofsteps,itispossibleaddamaterialtoajob
10.1.500 ProductionManagement JobManagement 175401 Application andforittobeissuedfromstockfromasitewherepartisnotsetup
10.1.500 ProductionManagement JobManagement 175608 Application JobClosingJobClosingBackflushQuantityisoverstatedonsomematerials
KanbanReceiptsMessagedisplayedonUpdatebuttonclickObjectreferencenot
10.1.500 ProductionManagement JobManagement 175643 Application settoaninstanceofanobject
JobEntryIfthereisanunapprovedsubassemblyintheBOM,getdetailsdoesnot
10.1.500 ProductionManagement JobManagement 175772 Application displayanyerrormessage
PlanningWorkbenchNotalloftheJobSuggestionscreatedbyMRParedisplayed
10.1.500 ProductionManagement JobManagement 175791 Application inPlanningWorkbench
JobEntryWhenanoperationiscompletedandtheJobissplit,thelabor
10.1.500 ProductionManagement JobManagement 175804 Application transactionisnotpassedtothenewJob
JobEntryIssueinJobEntryresultsinTimePhaseincludingOnHandfromaRemote
10.1.500 ProductionManagement JobManagement 175972 Application Site
10.1.500 ProductionManagement JobManagement 176017 Application ProjectAnalysisExportActualCurrentCostLaborisdisplayedrounded
JobEntrySecondLevelsubassemblyisnotcopiedwhendrag/dropfromQuote
10.1.500 ProductionManagement JobManagement 176180 Application MethodsforPartontheFlyandPartinPartMaster
QuickJobEntrydisplaysanerrorwhenclickingtheNextJobbuttonorputting
10.1.500 ProductionManagement JobManagement 176250 Application manuallyaJobnumberonlyformetrostyle
Inventory/WIPReconciliationReportdoesnotdisplayposteddatafilteredby
10.1.500 ProductionManagement JobManagement 176282 Application CurrentSite(Alsofixedin10.1.400.x)

Page32
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


JobEntryStartandDuedatesforSubassemblyOperationsdisplaytoday'sdate
10.1.500 ProductionManagement JobManagement 176412 Application beforeschedulingtheJob
JobEntryWhenchanginganinspectiontoanotherinspection,thenewinspection
10.1.500 ProductionManagement JobManagement 176516 Application isnotdisplayedintheTreeview
JobEntryTheJobOper.RunQtyvalueisdifferentthantheRunQtydisplayedinthe
10.1.500 ProductionManagement JobManagement 176708 Application JobEntryscreen
ProductionDetailWhenGetDefaultsismadeusingProductionDetailReportform
10.1.500 ProductionManagement JobManagement 176754 Application inJobentry,theJobiscleared
ProductionDetailReportdisplaysthefollowingerrorforaspecificjob:
10.1.500 ProductionManagement JobManagement 176767 Application "ReportProcessingException_ComparisonError"(Alsofixedin10.1.400.x)
WorkInProcessWhenonesiteisselectedthereporthas"Allsites"attheheader
10.1.500 ProductionManagement JobManagement 176836 Application besidestheJobnumberanddate
PlantConfigurationPackageControlTimeandExpenseDefaultEmployeeisfiltered
10.1.500 ProductionManagement JobManagement 176841 Application bymaterialhandler(Alsofixedin10.1.400.x)
WorkInProcessSitesthatarenotselectedfortheemployeeinUserAccount
10.1.500 ProductionManagement JobManagement 176846 Application MaintenancearedisplayedintheSiteFiltertabontheReportwindow
10.1.500 ProductionManagement JobManagement 176866 Application JobEntryCannotLoadJobsthatcomesfromQuotesthatrequiresPartonthefly
JobEntryDividebyzeroerrorcomesupwhentryingtoGetDetailsforsomeparts
10.1.500 ProductionManagement JobManagement 176877 Application orderlines
10.1.500 ProductionManagement JobManagement 177221 Application ProjectAnalysisExportViolationofPRIMARYKEYobject'ErpHXProject'
ShopLoadIncorrectvaluesaredisplayedforLoadhoursinDutchformatculture
10.1.500 ProductionManagement JobManagement 177267 Application (Alsofixedin10.1.400.x)
JobClosingJobwithSerialNumbersisnotclosedifshippingitembeforeclosingjob
10.1.500 ProductionManagement JobManagement 177278 Application (Alsofixedin10.1.400.x)
10.1.500 ProductionManagement JobManagement 177281 Application JobEntryUnabletodrag/dropnonstockpartsassubassembliesintheTreeview
ImplementtheabilitytoupdateJobOper.PrinterID,lastPrintedDate,LastPCIDPrinted
10.1.500 ProductionManagement JobManagement 177451 Application andCurrrentPkgCodewithoutmakingPreventChanges=false
ProductionDetailWhenmorethan10recordsofServicejobsareselected,the
10.1.500 ProductionManagement JobManagement 177548 Application reportisnotprinted
JobStatusSitesthatarenotselectedfortheemployeeinUserAccount
10.1.500 ProductionManagement JobManagement 177767 Application Maintenance,aredisplayedintheSiteFilterTabontheReportWindow
ProjectAnalysisExportBuildProjectAnalysisisnotfinishedduetotimeouterror
10.1.500 ProductionManagement JobManagement 177907 Application forseveralprojects(Alsofixedin10.1.400.x)
10.1.500 ProductionManagement JobManagement 177984 Application CaptureCOS/WIPActivityCannotpostMFGVAR,iflinehas10ormoredigits
10.1.500 ProductionManagement JobManagement 178187 Application JobEntryInactiveResourcescanbeenteredinthesystem
10.1.500 ProductionManagement JobManagement 178327 Application JobEntryUnabletodeleteaSchedulingResourceaddedtoaJob
JobEntrySubassembliesinsideofaPhantomBOMarenotlinkedtothecorrect
10.1.500 ProductionManagement JobManagement 178691 Application operationwhengettingdetails(Alsofixedin10.1.400.x)

Page33
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


JobTrackerQuantityOnlyoperationsisusingincorrectProductionLaborCosting
10.1.500 ProductionManagement JobManagement 178759 Application fromResourceGrouplevel

10.1.500 ProductionManagement JobManagement 178797 Application WorkInProcessWIPReportnotdisplayingthetotalsbyProductGrouponlybyJob


ProductionPlannerWBProductionPlannerWorkbenchProcessdoesnotcomplete
10.1.500 ProductionManagement JobManagement 178912 Application whenhavingtransferorders
JobEntryJobestimatedmachinesetuphourisnottakingintoconsiderationthe
10.1.500 ProductionManagement JobManagement 178947 Application joboperationscrapquantity
JobEntryThecustomizedfieldsremainblank,theinformationisnotretrievedfor
10.1.500 ProductionManagement JobManagement 179310 Application Subassembliesasitiswiththetopassembly
10.1.500 ProductionManagement JobManagement 179469 Application JobEntryAttachmentisdisplayedtwicewhenGetDetailstoasubassembly
Inventory/WIPReconciliationReportIncorrecttotalisdisplayedanditisnot
10.1.500 ProductionManagement JobManagement 179549 Application consistentacrossotherreports
ProductionPlannerWBIfselectingIncludeReleasedJobs,theConsumedQuantity
10.1.500 ProductionManagement JobManagement 179688 Application andShortageQuantityonAllPartstabareincorrect
MasterProductionScheduleHidefromtheListtheParentPartNumberandKit
10.1.500 ProductionManagement JobManagement 180157 Application Typefields
CaptureCOS/WIPActivityInvoicetransactionsarenotupdatedwithjobcosts
10.1.500 ProductionManagement JobManagement 180196 Application (Alsofixedin10.1.400.x)
10.1.500 ProductionManagement JobManagement 180232 Application JobManagerInvalidreferencetocolumnERP.JMDemand.ParentRec
CaptureCOS/WIPActivityInvoicetransactionsarenotupdatedwithjobcosts
10.1.500 ProductionManagement JobManagement 180359 Application (Alsofixedin10.1.400.x)
10.1.500 ProductionManagement JobManagement 180494 Application JobEntryIssuedQuantityfieldinJobEntryagainsttheJobMtlisaneditablefield
10.1.500 ProductionManagement JobManagement 180571 Application JobEntryUserisabletochangeMTLthatislinkedtoapurchaseorder
KanbanReceiptsJMKanbanreceiptsdonotbackflushserializedmaterialsinan
10.1.500 ProductionManagement JobManagement 180622 Application Outboundserialtrackedpart
JobEntryMisspelledmessageinJobEntrywhenReserveInventoryonJobRelease
10.1.500 ProductionManagement JobManagement 180712 Application ischeckedinSiteConf
JobEntryIssuewhileworkingwithphantompartsandsubassemblies(Alsofixedin
10.1.500 ProductionManagement JobManagement 180853 Application 10.1.400.x)
JobEntryIssuewhileworkingwithphantompartsandsubassemblies,screen
10.1.500 ProductionManagement JobManagement 180869 Application freezes
10.1.500 ProductionManagement JobManagement 181069 Rule JobReceipttoInventory:MFGSTKisnotcostedcorrectlyforsubcontractoperations
10.1.500 ProductionManagement JobManagement 181127 Application JobEntryPartWipTablehasOrphanedRecordsfromDeletedJobOperations
JobClosingUnabletoclosejobsforserialtrackedpartswithscraprejected
10.1.500 ProductionManagement JobManagement 181318 Application material(Alsofixedin10.1.400.x)
10.1.500 ProductionManagement JobManagement 181362 Application JobReceipttoInventoryReverseKanbanReceiptafterWIPclearedhasnocost
ProductionDetailActualGrossamountshouldbetotalallinvoicesandshowall
10.1.500 ProductionManagement JobManagement 181411 Application recordsonthereport(Alsofixedin10.1.400.x)

Page34
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


JobEntryAvailablequantityfieldisnotupdatedcorrectlyunderJobEntry>
10.1.500 ProductionManagement JobManagement 181494 Application Subassembliestab(Alsofixedin10.1.400.x)
10.1.500 ProductionManagement JobManagement 181671 Application JobEntryMaterialBurdenUnitCostandratearenotsynchronized
10.1.500 ProductionManagement JobManagement 181711 Application JobEntrySubcontractpartdescriptionisnotupdatedwhenpartischanged
10.1.500 ProductionManagement JobManagement 181818 Application KanbanReceiptsItisallowedtouseinactiveparts(Alsofixedin10.1.400.x)
10.1.500 ProductionManagement JobManagement 181860 Application AlertGroupProjectsthatstillhavethetagTO_CONVERT_2012R
JobEntryWhenthephantompartiscollapsethematerialaddedintheASM0has
10.1.500 ProductionManagement JobManagement 181873 Application theQty/Parent=0
10.1.500 ProductionManagement JobManagement 181879 Application JobEntryIncorrectlydisplayingthecustomerpartcrossreferencedescription
10.1.500 ProductionManagement JobManagement 182059 Application SubcontractStatusThereportchangesthesortorder
10.1.500 ProductionManagement JobManagement 182074 Application JobEntryGetDetailisslowforarevisionwithfewoperationsandmaterials
10.1.500 ProductionManagement JobManagement 182133 Application JobEntryDividebyzeroerrorwhenattemptingtoSplitJob
10.1.500 ProductionManagement JobManagement 182170 Application SubcontractStatusReportdoesnotdisplayUOMforsomerecords
PlanningWorkbenchPlanningworkbenchsearchisnotreturningtheresults
10.1.500 ProductionManagement JobManagement 182281 Application correctlypertheStartingAtfield
10.1.500 ProductionManagement JobManagement 182383 Application PlanningWorkbenchCreatingjobswithinconsistentleadingzeroes
SerialNumberAssignmentObjectReferenceErrorwhensavingonSerialNumber
10.1.500 ProductionManagement JobManagement 182423 Application Assignmentscreen
BackflushMaterialBackflushforaMaterialinaPhantomBOMdoesnotissuethe
10.1.500 ProductionManagement JobManagement 182526 Application scrappercentage(Alsofixedin10.1.400.x)
10.1.500 ProductionManagement JobManagement 182687 Application JobEntryCannotentertexttoChangeswindowwhenitappearsatthefirsttime
DepartmentJCItisnotallowedtocreatedepartmentsaftercreatingCOA
10.1.500 ProductionManagement JobManagement 182748 Application Segments(Alsofixedin10.1.400.x)
JobEntrySavedefaultoptionforJobTravelerdoesnotworkfortwospecificcheck
10.1.500 ProductionManagement JobManagement 182823 Application boxes
10.1.500 ProductionManagement JobManagement 183136 Application WorkInProcessColumnsarewithoutnumericformat
WorkInProcessHowtogetsameresultsas9.05WIPreport(Alsofixedin
10.1.500 ProductionManagement JobManagement 183238 Application 10.1.400.x)
RevisionCompareNotallassembliesleveloperationsaredisplayed(Alsofixedin
10.1.500 ProductionManagement JobManagement 183264 Application 10.1.400.x)
JobEntryErrordisplayswhenGetDetailsviaQuoteEntryandOperationwithout
JobManagementmoduleLicense:"ThemoduleJobManagementisnotlicensedor
10.1.500 ProductionManagement JobManagement 183459 Application enabled"(Alsofixedin10.1.400.x)
10.1.500 ProductionManagement JobManagement 183909 Application JobEntryStringFormatCodeIssues
Inventory/WIPReconciliationReportNotallofPhantomPurgeWIPto
10.1.500 ProductionManagement JobManagement 184277 Application transactionsaredisplayed
JobEntryThe"SynchronizeReqByDateWithDemandLinks"optionisnotsetfor
10.1.500 ProductionManagement JobManagement 184408 Application UnfirmJobs
10.1.500 ProductionManagement JobManagement 184428 Application ReturnAssemblyTheValidassemblyisrequirederrorisdisplayed

Page35
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


10.1.500 ProductionManagement JobManagement 184533 Application ProductionCalendarCannotDeleteExceptions
RevisionCompareComparisonoftwoPartRevisionsreturnsincorrectresultsin
10.1.500 ProductionManagement JobManagement 184770 Application Routingtab(Alsofixedin10.1.400.x)
10.1.500 ProductionManagement JobManagement 184985 Application PlanningWorkbenchCheckboxofIgnorePOsuggestiondoesnotworkasexpected
JobManagerErrormessage:Objectreferencenotsettoaninstanceofanobject,
10.1.500 ProductionManagement JobManagement 185233 Application ADJMTLshouldbecreatedforbothjobs
10.1.500 ProductionManagement JobManagement 185369 Application JobEntrySupplierPriceListsfunctionalitydoesnotworkinJobMaterials
JobTravelerErrordisplaysSystemMonitorwhenaJob'sparthasPart.UserDate1
10.1.500 ProductionManagement JobManagement 186205 Application fieldblank
AutoJobFirmProcessDefinesincorrectlyRequiredDateforPlanasAssembly
10.1.500 ProductionManagement JobManagement 186261 Application DemandSubassemblies
10.1.500 ProductionManagement JobManagement 186308 Application JobEntryRequiredReferenceDesignatorscalculationintheJobMtldisplayserror
ProductionCalendarCannotimportBOintoServiceConnectduetoduplicate
10.1.500 ProductionManagement JobManagement 186761 Application methodnames
10.1.500 ProductionManagement JobManagement 186997 Application JobPickListReportnotprintedusingEWA
10.1.500 ProductionManagement JobManagement 187525 Application JobTravelerGetandSetvaluesshouldbereplacedtoavoidinformationleakage
JobEntryUsingBackflushoflaborEntrywithautoreceiveautocreatesMFGSTK
10.1.500 ProductionManagement JobManagement 187702 Application transactionwithnocosts
JobClosingObjectreferenceerrordisplayswhenbackflushingmaterialswith
10.1.500 ProductionManagement JobManagement 188092 Application inactivebins
JobClosingUnabletoclosejobsforserialtrackedpartswithscraprejected
10.1.500 ProductionManagement JobManagement 188122 Application material
JobEntryMaterialBurdencostschangesonGetDetailsandbyupdatingthe
10.1.500 ProductionManagement JobManagement 188440 Application Qty/Parent
ProjectAnalysisExportBPAexecutedwithRegenerate=falsebringsincorrect
10.1.500 ProductionManagement JobManagement 188694 Application costs,afteratimedetailforajoblinkedtotheProjectismodified
SupplierVendAttrandVendCnAttrrecordsarenotdeletedwhensupplier,
10.1.500 ProductionManagement JobManagement 188795 Application purchasepointorPPcontactaredeleted
10.1.500 ProductionManagement JobManagement 189523 Application JobEntryHoursfielddoesnotreturnto0,whensettingProdStd=0.00again
MaterialRequirements
10.1.500 ProductionManagement Planning 159403 Application ProcessMultiLevelPeggingIssuesreportedbysales
MaterialRequirements NewPOSuggestionsUnitPricevaluenotupdatedwhensettingUnitPriceat
10.1.500 ProductionManagement Planning 166856 Application MaterialListtab
MaterialRequirements GenerateSuggestionsWhenrunningPOsuggestionsinonecompany,other
10.1.500 ProductionManagement Planning 175433 Application companiescannotrunPOsuggestions
MaterialRequirements ProcessMRPNotsupplyingjobsforconfiguredorderlinesthatusepartcreation
10.1.500 ProductionManagement Planning 175594 Application setpartnumberonly
MaterialRequirements NewPOSuggestions"Currencylistcannotbeempty"errorwhenaddingtoexisting
10.1.500 ProductionManagement Planning 176341 Application PO

Page36
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


MaterialRequirements NewPOSuggestionsItispossibletoenterinvalidManufacturerandSupplierparts
10.1.500 ProductionManagement Planning 176349 Application viathelistview
MaterialRequirements ProcessMRPTransferOrdersuggestionscreatedbyMRPareignoringthePlanning
10.1.500 ProductionManagement Planning 176387 Application andShortHorizonparameters
MaterialRequirements NewPOSuggestionsNotconsideringinspectionplaninfowhencreatingaPurchase
10.1.500 ProductionManagement Planning 177253 Application Order(Alsofixedin10.1.400.x)
MaterialRequirements ProcessMRPIncorrectlyprocessingpartswithtransferordersanddisplaysnegative
10.1.500 ProductionManagement Planning 178985 Application values
MaterialRequirements GenerateSuggestionsSuggestionscreatedincorrectlyusingthelastapproved
10.1.500 ProductionManagement Planning 179048 Application revisioninsteadofthemostrecent(Alsofixedin10.1.400.x)
MaterialRequirements ProcessMRPItisrecommendedtoincreaseqtytomorethanneededwhenthe
10.1.500 ProductionManagement Planning 179540 Application UseDynamicDaysofsupplyinLeadTimecheckboxisselected(Alsofixedin
MaterialRequirements ProcessMRPHighCPUutilizationafterMRPcompleteswitherrors(Alsofixedin
10.1.500 ProductionManagement Planning 179662 Application 10.1.400.x)
MaterialRequirements
10.1.500 ProductionManagement Planning 179790 Application ProcessMRPMRPisleavingorphandatainthexfileattchtable
MaterialRequirements
10.1.500 ProductionManagement Planning 180008 Application ProcessMRPUnabletodeletetheJobsusingtheRecycleMRPJobsoption
MaterialRequirements ProcessMRPUnnecessaryUnfirmJobiscreatedwhenusingforecastsandmanual
10.1.500 ProductionManagement Planning 180259 Application jobs(Alsofixedin10.1.400.x)
MaterialRequirements TimePhasedMtlRequirementsReportdisplaysorderandMPSentriesmultiple
10.1.500 ProductionManagement Planning 181021 Application times
MaterialRequirements ProcessMRPConfiguratorrelatederrorswhengettingdetailsfornonconfigured
10.1.500 ProductionManagement Planning 181287 Application parts(Alsofixedin10.1.400.x)
MaterialRequirements ProcessMRPBlankCutoffDatewithScheduleStartDateof2/29/XXLeapYear
10.1.500 ProductionManagement Planning 181519 Application CausesError
MaterialRequirements ProcessMRPAfterrunningMRP,parthasfinalbalanceabovezero(Alsofixedin
10.1.500 ProductionManagement Planning 181669 Application 10.1.400.x)
MaterialRequirements
10.1.500 ProductionManagement Planning 182781 Application NewPOSuggestionsChangelabelsonActions>GeneratePurchaseOrdersdialog
MaterialRequirements GenerateSuggestionsErrormessageisdisplayedwhenreselectingthesamesite
10.1.500 ProductionManagement Planning 184121 Application fromfiltertab
MaterialRequirements GenerateSuggestionsTaxablecheckboxwasnotcalculatedcorrectlyWhen
10.1.500 ProductionManagement Planning 184194 Application Supplierhasataxliabilitytaxable
MaterialRequirements NewPOSuggestionsTaxablecheckboxwasnotcalculatedcorrectlywhen
10.1.500 ProductionManagement Planning 184201 Application change/addsupplierwithTaxLiability
MaterialRequirements ProcessMRPUnfirmjobscreatedhavezeroProductionQtybutinthelogsthejobs
10.1.500 ProductionManagement Planning 185227 Application havequantities(Alsofixedin10.1.400.x)

Page37
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


MaterialRequirements NewPOSuggestionsObjectreferenceerrorgeneratingPOfromSuggestionwith
10.1.500 ProductionManagement Planning 187212 Application regularandBTOLine
MaterialRequirements ProcessMRPProcessgetstuckformakedirectmaterialsthatwillsupplyajobwith
10.1.500 ProductionManagement Planning 187333 Application thesamePartId
MaterialRequirements ProcessMRPNounfirmjobiscreatedforthe3rdreleaseofanorderlinefora
10.1.500 ProductionManagement Planning 187804 Application configuredpart
MaterialRequirements NewPOSuggestionsSuggestionfromSalesOrderwithcustomerwithoutPrimary
10.1.500 ProductionManagement Planning 188434 Application ShipToAddresscannotbeaddedasanewPOReleaseLine
MaterialRequirements GenerateSuggestionsCreatesSuggestionsaskingformorethanrequiredforlock
10.1.500 ProductionManagement Planning 188447 Application quantititesfromPOEntry
MaterialRequirements ProcessMRPDoesnotuselotsizesettingandcreatesmoreunfirmjobsthan
10.1.500 ProductionManagement Planning 189198 Application expectedforconfiguredparts
PreventiveMaintenance MaintenanceJobEntryWhentherequiredQtyforthematerialismodified,the
10.1.500 ProductionManagement Management 176192 Application materialismarkedascompleted
PreventiveMaintenance MaintenanceRequestQueueSystemstopsworkingwhenapprovinga
10.1.500 ProductionManagement Management 178656 Application maintenancejob(Alsofixedin10.1.400.x)
PreventiveMaintenance MaintenanceJobEntryWarningmessageisdisplayed:"Supplierisnotapproved
10.1.500 ProductionManagement Management 180981 Application forthisOperation"
PreventiveMaintenance MaintenancePlanProcessorTemplateJobdescriptioninfoisnotcopiedtonew
10.1.500 ProductionManagement Management 183837 Application jobscreatedbyMaintenancePlanprocessor(Alsofixedin10.1.400.x)
PreventiveMaintenance MaintenancePlanProcessorCreatingjobwithtemplatefromtheprevious
10.1.500 ProductionManagement Management 185441 Application equipmentthatdoeshaveone

10.1.500 ProductionManagement ProjectBilling 177488 Application ProjectInvoicePreparationForTimeandMaterialinvoiceerrorsinSystemMonitor


ProjectCostPlusInvoiceReviewDoesnotusethenewesteffectivedatesfrom
10.1.500 ProductionManagement ProjectBilling 177595 Application BurdenCodes
DMRProcessingEWATheSerialNumbersdisappearfromselectSerialNumbers
10.1.500 ProductionManagement QualityAssurance 168272 Application aftertheyhavebeenselected
10.1.500 ProductionManagement QualityAssurance 168449 Application EmployeeTrainingCourseReportTheemployeesareprintedtwice

10.1.500 ProductionManagement QualityAssurance 168587 Application EmployeeTrainingCourseChangingcoursestatuscausesablankwarningmessage


10.1.500 ProductionManagement QualityAssurance 173894 Application NonconformanceMissingToBinNumDescriptionLinkinNonconformanceBO

10.1.500 ProductionManagement QualityAssurance 174729 Application InspectionProcessingErrorisdisplayedwhenhavingDMRprocessingscreenopen


InspectionPendingReportdisplaysincorrectinformationaboutperiodsactivity
10.1.500 ProductionManagement QualityAssurance 174731 Application andPOinspectors
NonconformanceBinSearchnotreturninganyresultswhenDisplayAll=False
10.1.500 ProductionManagement QualityAssurance 174740 Application becauseQOHnotcalculatedcorrectly

Page38
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


NonconformanceTheavailablequantitydisplaystheqtyforotherplantifthebins
10.1.500 ProductionManagement QualityAssurance 174841 Application havethesameID
EmployeeTrainingCourseWhentheEmployeehasacourse,theCourseStatus
10.1.500 ProductionManagement QualityAssurance 174929 Application cannotbechangedto"Attended"
EmployeeTrainingCourseCourseIDisdeletedwhentheStatusischangedfrom
10.1.500 ProductionManagement QualityAssurance 174932 Application firmtoRequestorPlanned
EngineeringWorkbenchOperationattachmentsaddedfromOperation
10.1.500 ProductionManagement QualityAssurance 175562 Application maintenancearenotdisplayed
WarehouseIssueonAdapteridentifiedwheninstallingandrunningCustomization,
10.1.500 ProductionManagement QualityAssurance 175771 Application RowsReturned:0
InspectionProcessingTherecordissavedevenifthepassqtyislessthanourqty
10.1.500 ProductionManagement QualityAssurance 175875 Application usingPasteUpdate
InspectionProcessingAblankwindowisdisplayedwhenenteringaninvalid
10.1.500 ProductionManagement QualityAssurance 176755 Application inspectorID
InspectionProcessingUsingSearch>Startingatdoesnotbringselectedparttotop
10.1.500 ProductionManagement QualityAssurance 177243 Application ofthelist(Alsofixedin10.1.400.x)
InspectionProcessingisAddingMaterialBurdencosttoSubcontractoperationINS
10.1.500 ProductionManagement QualityAssurance 179711 Application SUBTransactions(Alsofixedin10.1.400.x)
DMRProcessingDebitmemorequestdoesnotcalculatethecorrectReject
10.1.500 ProductionManagement QualityAssurance 180586 Application QuantityandUnitCostpricefortherejectedmaterial(Alsofixedin10.1.400.x)
NonconformanceFromWHS/BinlocationofBackflushMaterialsinnotconsidered
andQtyreportedshouldnotaffectonWIPtransactionsandMaterials(Alsofixedin
10.1.500 ProductionManagement QualityAssurance 180768 Application 10.1.400.x)
10.1.500 ProductionManagement QualityAssurance 181221 Application InspectionProcessingInspectedPurchaseOrdersarenotclosedcorrectly
NonconformancePartTranTranReferencehastheincorrectreasoncodedesc
10.1.500 ProductionManagement QualityAssurance 181222 Application undersomecircumstances
DMRProcessingPOunitpriceinPOentryandDMRprocessingisnottally(Also
10.1.500 ProductionManagement QualityAssurance 181913 Application fixedin10.1.400.x)
InspectionProcessingIfInspectionpasses,NonConformanceIDshouldbe
10.1.500 ProductionManagement QualityAssurance 182379 Application removedfromSerialNumberrecord
InspectionPendingReportPendingoperationsarenotdisplayed(Alsofixedin
10.1.500 ProductionManagement QualityAssurance 182656 Application 10.1.400.x)
InspectionProcessingAutoPopulateSearchdisplaysInvalidOrderBystatement:by
10.1.500 ProductionManagement QualityAssurance 183093 Application (Alsofixedin10.1.400.x)
InspectionProcessingSearchOptiondisplaysanerrorwhenMaximumRows
10.1.500 ProductionManagement QualityAssurance 183530 Application Returnedhasavaluelessthanthemaxrecords
DMRProcessingRejectionactiondoesnotconvertthevaluetothePurchasing
10.1.500 ProductionManagement QualityAssurance 183657 Application UOMandroundit

Page39
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


NonconformanceReasonSearchfromtheContextmenudisplaysanObject
10.1.500 ProductionManagement QualityAssurance 183738 Application Referenceerrormessage
InspectionProcessingAllowssavingpassedinspectionoperationswhilewarehouse
10.1.500 ProductionManagement QualityAssurance 184042 Application Binisempty
10.1.500 ProductionManagement QualityAssurance 184427 Application DMRProcessingNotallowedtoacceptJoboperations(Alsofixedin10.1.400.x)
DMRProcessingOverrideConversionfromReceiptentryisnotconsideredinDMR
10.1.500 ProductionManagement QualityAssurance 185417 Application Processing
WarehouseNovalidationbetweensitesthatindicatesthereisalreadyaStock
10.1.500 ProductionManagement QualityAssurance 186053 Application defaultwarehouse
DMRProcessingTransactionsdonotconsidertheprimaryinventoryUOMforthe
10.1.500 ProductionManagement QualityAssurance 186824 Application MtlBurUnitCostcalculation
PurchaseOrderEntryPOcanbedeletedafterPOLineisaddedintoaReceipt
10.1.500 ProductionManagement QualityAssurance 187820 Application createdwithnoPOnumber
ReceiveTransferOrderTaborderandgridsthatallowentrytofieldsthatshouldbe
10.1.500 ProductionManagement Scheduling 96453 Application disabled
JobSchedulingBoardMoveJobScreensporadicallyappearswhenanoperationis
10.1.500 ProductionManagement Scheduling 145396 Application movedontheboard
SchedulingEngineATPshouldusetheproductioncalendarasabasistocalculate
10.1.500 ProductionManagement Scheduling 153600 Application theSupplierDueDateHorizon(Alsofixedin10.1.400.x)
SchedulingEngineBackwardsschedulingignoring12:00AMtime,neededtouse
10.1.500 ProductionManagement Scheduling 155652 Application 12:01tomakeitworkcorrectly
SchedulingEngineJobTrackershoulddisplaytheOrangeiconforConstrained
10.1.500 ProductionManagement Scheduling 156002 Application Materials
SchedulingEngineTheproductiontimestart12secsearlierwhenscheduling
10.1.500 ProductionManagement Scheduling 156987 Application forwardthroughoutmidnight
MultiResourceSchedulingBoardThescheduleblocksareupdatedinJobEntryif
10.1.500 ProductionManagement Scheduling 161519 Application thevaluecomesfromtheMRSB
SchedulingEngineDifferenceswithFiniteResourcesandDailyProductionCapacity
10.1.500 ProductionManagement Scheduling 168674 Application inBackwardschedule
SchedulingEngineProductionCalendarexceptions(workingdays)areignoredby
10.1.500 ProductionManagement Scheduling 169486 Application scheduling
AdjustGlobalSchedulingOrderIncorrectcalculatedSchedsequencewhen
10.1.500 ProductionManagement Scheduling 169779 Application changingforbatchjobs
10.1.500 ProductionManagement Scheduling 171213 Application SchedulingEngineLoadisremovedincorrectlywhendeletingaMTODemandlink
FillShopCapacityProcessInactiveresourcesaretakenintoaccountwhen
10.1.500 ProductionManagement Scheduling 172775 Application calculatingshopcapacity
OverloadInformerTwoerrormessagesaredisplayedwhenopeningtheform(Also
10.1.500 ProductionManagement Scheduling 173483 Application fixedin10.1.400.x)

Page40
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


SchedulingEnginePartialPOsareconsideredasfullsupplyforconstrained
10.1.500 ProductionManagement Scheduling 174083 Application materialsinSubassemblies
SchedulingEngineMinimizeWIPisnotappliedforsingleJobsiftheMultiJob
10.1.500 ProductionManagement Scheduling 174545 Application optionisselected
JobSchedulingBoardCalculatesqueuetimeforoperationonlypushingthe
10.1.500 ProductionManagement Scheduling 175078 Application operationtothefuture
SchedulingEngineTakesonlyoneResourceforallSchedulingBlockseventhough
10.1.500 ProductionManagement Scheduling 176885 Application therearemoreresourcesavailable(Alsofixedin10.1.400.x)
SchedulingEngineDoesnotusetheCapabilityhighestResourcePriorityresource
10.1.500 ProductionManagement Scheduling 176975 Application forForwardScheduling(Alsofixedin10.1.400.x)
SchedulingEngineTheUseCalendarforQueueTimeoptionoverlapsthefinite
10.1.500 ProductionManagement Scheduling 177244 Application resources(Alsofixedin10.1.400.x)
SchedulingEngineCannotfindresourcesavailablewhenschedulingbackwardsina
10.1.500 ProductionManagement Scheduling 177467 Application subassemblyusingcalendarstocalculatemove/queuetime
ScheduleImpactSitesthatarenotselectedfortheemployeeinUserAccount
10.1.500 ProductionManagement Scheduling 177769 Application MaintenancearedisplayedintheSiteFilterTabontheReportwindow
SchedulingEngineMRPandSchedulinglogginglevelshouldcreateindividual
10.1.500 ProductionManagement Scheduling 178458 Application schedulinglogsdisregardingthecheckboxintheCompany(Alsofixedin10.1.400.x)
SchedulingEngineTheSplitOperationoptionisnotvalidatedifitcomesfroma
10.1.500 ProductionManagement Scheduling 178573 Application Resource
SchedulingEngineTakesonlyoneResourceforallSchedulingBlockseventhough
10.1.500 ProductionManagement Scheduling 178655 Application therearemoreresourcesavailable(Alsofixedin10.1.400.x)
MultiResourceSchedulingBoardTheMoveoptionboxisnotdisplayedwhen
10.1.500 ProductionManagement Scheduling 178742 Application dragginganoperation(Alsofixedin10.1.400.x)
SchedulingEngineLoadisremovedincorrectlywhendeletingmultipleMTO
10.1.500 ProductionManagement Scheduling 179462 Application Demandlinks
SchedulingEngineTheCalendarExceptionsarenotvalidatediftheycomefromthe
10.1.500 ProductionManagement Scheduling 179466 Application ResourceGroup
10.1.500 ProductionManagement Scheduling 179539 Application ResourceSchedulingBoardBlankrevisioncopartsinjobaftercreatebatch
SchedulingEngineMultiJobScheduledoesnotmovetheJobsgeneratedthrough
10.1.500 ProductionManagement Scheduling 179969 Application theFirmJobprocess(Alsofixedin10.1.400.x)
10.1.500 ProductionManagement Scheduling 181230 Application SchedulingEngineNonstockconstrainedmaterialsnottreatedasconstrained
SchedulingEngineAddanAutoconsumeWindowforcheckingtheavailabilityof
10.1.500 ProductionManagement Scheduling 181794 Application thematerialonreq.date+window(Alsofixedin10.1.400.x)
10.1.500 ProductionManagement Scheduling 181936 Application SchedulingEngineTheFiniteHorizonhierarchyisalignedincorrectly
SchedulingEngineErrorforinfinitebackwardschedulingwithagapofseveraldays
10.1.500 ProductionManagement Scheduling 182135 Application (Alsofixedin10.1.400.x)
SchedulingEngineForwardScheduledoesnotmovetheparentJob,ifthisJob
10.1.500 ProductionManagement Scheduling 182499 Application generatedchildJobsthroughtheFirmProcess(Alsofixedin10.1.400.x)

Page41
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


SchedulingEngineCannotmoveanoperationbyusingResourceSchedulingBoard
10.1.500 ProductionManagement Scheduling 182579 Application (Alsofixedin10.1.400.x)
ResourceScheduleLoadGraphisGivingincorrectDailyCapacityandWhatIFHours
10.1.500 ProductionManagement Scheduling 182983 Application forseveralcharts
10.1.500 ProductionManagement Scheduling 183224 Application SchedulingEngineNotconsideringtheFiniteHorizonrangefortheStartDate
ContainerLandedCostEntryWeightandVolumevaluesarenotretrievedwhen
10.1.500 ProductionManagement Scheduling 183337 Application MultipleShipmentLinesareadded(Alsofixedin10.1.400.x)
JobSchedulingBoardTheUndochangesoptionsdoesnoteraseallthewhatif
10.1.500 ProductionManagement Scheduling 184167 Application changes,ifthesinglesjobsarescheduledusingtheMoveoption:JobAllJobs
MultiResourceSchedulingBoardDoesnotallowtomoveindividuallyscheduling
10.1.500 ProductionManagement Scheduling 185298 Application blocks
SchedulingEngineDatesoffuturesuppliesareconsideredforJobMaterialswith
10.1.500 ProductionManagement Scheduling 187801 Application Qty/Parent=0
10.1.500 ProductionManagement Scheduling 189615 Application FillShopCapacityProcessProcessincreasesthedailycapacityperday
TimeSheetEntryReworkselectedcheckboxclearsscrapandnonconformqtyfor
10.1.500 ProductionManagement TimeManagement 143976 Application notserialnumberoperations
TimeSheetEntryLaborEntrysetsincorrectLaborRatesforQtyOnlyOperations
10.1.500 ProductionManagement TimeManagement 144381 Application (Alsofixedin10.1.400.x)
10.1.500 ProductionManagement TimeManagement 147206 Application TimeSheetEntryNewicononmainMenuforTimeCommentsdoesnotwork
10.1.500 ProductionManagement TimeManagement 147208 Application TimeSheetEntryNewicononmainMenuforExpenseCommentsdoesnotwork
10.1.500 ProductionManagement TimeManagement 160691 Application TimeReportTheServiceJobisdisplayingincompleteforLaborTypeService
10.1.500 ProductionManagement TimeManagement 165628 Application TimeSheetEntryMultipleerrorsafteraddinganewtimedetail
TimeSheetEntry"Objectreferencenotsettoaninstanceofanobject"erroris
10.1.500 ProductionManagement TimeManagement 167636 Application displayedwhenlaborisenteredforsecondtime
TimeSheetEntryUnabletosubmittimewhenhavingtwotimeandexpensesentry
10.1.500 ProductionManagement TimeManagement 167699 Application screensopen
10.1.500 ProductionManagement TimeManagement 168612 Application TimeSheetEntryNonconformancefieldbecomesgrayedintimeandexpense
TimeSheetEntryWeeklyTimenotupdatedwhenmodifyingaTimeDetail,instead
10.1.500 ProductionManagement TimeManagement 168814 Application ofitanewrecordiscreated
10.1.500 ProductionManagement TimeManagement 172049 Application TimeSheetEntryTheEfficiency%fieldisnotupdatedlikeinJobTracker
TimeSheetEntryIndex1iseithernegativeoraboverowscountusingSubmit
10.1.500 ProductionManagement TimeManagement 172069 Application whensaving
10.1.500 ProductionManagement TimeManagement 172073 Application TimeReportDelete"TimeReport"reportandmenuitem
TimeSheetEntryRework,ScrapandNonConformancefieldsfromlefttoright,up
10.1.500 ProductionManagement TimeManagement 172873 Application anddown
TimeSheetEntrySecondentryremainsenteredwhenchangingthelabordateand
10.1.500 ProductionManagement TimeManagement 175577 Application submitit
TimeSheetEntrySomecolumnsonListtabshouldnotbevisibleorenabledforthe
10.1.500 ProductionManagement TimeManagement 175598 Application user

Page42
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


TimeSheetEntryTheReworkcheckboxerasestheinfoenteredforScrap&Non
10.1.500 ProductionManagement TimeManagement 176068 Application Conform
TimeSheetEntryRestrictEntrydeniestheaccesstoT&Eanddisplayanadditional
10.1.500 ProductionManagement TimeManagement 176262 Application objectnullreferenceerror
TimeSheetEntryCopiedweeklytimesdisplaysanerrorwhenthelastrecordis
10.1.500 ProductionManagement TimeManagement 176808 Application submitted
TimeSheetandExpenseApprovalDeadlocksonlabordtlpkindex(Alsofixedin
10.1.500 ProductionManagement TimeManagement 177337 Application 10.1.400.x)
TimeSheetEntryIncorrectlycalculatingLaborandBurdenHrswhentheshiftisfor
10.1.500 ProductionManagement TimeManagement 177450 Application 24hrs
TimeSheetEntrySystemcreatesaseparatelabordetailwhenchangingfrom
10.1.500 ProductionManagement TimeManagement 178179 Application NonconformancetoScrapQty(Alsofixedin10.1.400.x)
TimeSheetEntryLaborCostinCostElementcolumnisnotcalculated(Alsofixedin
10.1.500 ProductionManagement TimeManagement 180035 Application 10.1.400.x)
TimeSheetEntryWhentheshifthoursareadjusted,thecalculationisincorrect
10.1.500 ProductionManagement TimeManagement 180340 Application (Alsofixedin10.1.400.x)
TimeSheetEntrySystemallowstosubmitexpenseentrywhenprojectisinactiveor
10.1.500 ProductionManagement TimeManagement 181204 Application closed

10.1.500 ProductionManagement TimeManagement 181516 Application TimeSheetEntryWhenselectingseveraldaysinthecalendar,anerrorisdisplayed


TimeSheetEntryTransQuantitydisplaysanegativevalueintheADJCST
10.1.500 ProductionManagement TimeManagement 181981 Application transactionforQuantitybearingbackflushpart(Alsofixedin10.1.400.x)
TimeSheetEntrySystemgeneratesinvalidADJCSTtransactionsfornonquantity
10.1.500 ProductionManagement TimeManagement 181997 Application bearingbackflushpart(Alsofixedin10.1.400.x)
TimeSheetEntryTheActualCostsarecalculatedincorrectlyusingTimeand
10.1.500 ProductionManagement TimeManagement 182042 Application Expense
TimeSheetEntryLaborRateisincorrectwhenusingmultipleresourcesonone
10.1.500 ProductionManagement TimeManagement 182086 Application operation
10.1.500 ProductionManagement TimeManagement 182382 Application TimeReportProductioninformationisnotalignedwiththeReportcolumns
TimeSheetEntryNotcheckingYieldPerfieldwhencalculatingtheLabor
10.1.500 ProductionManagement TimeManagement 182443 Application qty(Completeqty)onconcurrentjob
10.1.500 ProductionManagement TimeManagement 182487 Application TimeSheetEntryShouldnothavetoreportquantitytwiceforcoparts
TimeSheetEntryReduceslunchtimeforlaborandburdenhrseverytimelabor
10.1.500 ProductionManagement TimeManagement 185776 Application recordsarecreated
10.1.500 ProductionManagement TimeManagement 187015 Application TimeReportLaborTypecolumnlabelisnotfullydisplayedintheSSRSReport
TimeSheetEntryWhenaddinganewexpensecommentinT&EEntrytheExpense
10.1.500 ProductionManagement TimeManagement 187416 Application TaxAmountis0.00
TimeSheetEntryDisablestheReworkReasonfieldwhenReworkReasoncheckbox
10.1.500 ProductionManagement TimeManagement 187586 Application isfalseincompanyconfig

Page43
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


10.1.500 ProductionManagement TimeManagement 187588 Application TimeSheetEntryDoesnotallowtheusertoSave/SubmitwithoutaScrapReason
TimeSheetEntryError"Laborcannotbereportedtoanonlocationresource."is
10.1.500 ProductionManagement TimeManagement 187997 Application displayedwhenaddinganewweeklytime
CustomerRelationship
10.1.500 SalesManagement Management 76047 Application RMAProcessingUserisunabletoselectRMANumberwhenaddinganewRMA
CustomerRelationship
10.1.500 SalesManagement Management 97633 Application CustomerChangingcustomersdoesnotrefreshShipTomenuitems
CustomerRelationship
10.1.500 SalesManagement Management 122864 Application RMAProcessingAddingaCreditmemoisnotdisplayingthePONumber
CustomerRelationship RMAProcessingCreditmemoiscreatedforBilltoCustomeroftheCustomerofthe
10.1.500 SalesManagement Management 129502 Application originalInvoice
CustomerRelationship RMAProcessingDiscountAmountisnotrecalculatedaccordingtothequantityon
10.1.500 SalesManagement Management 166165 Application theCreditMemo
CustomerRelationship CaseEntryWritingdirectioninthe"WhereDescriptionContains"section,isset
10.1.500 SalesManagement Management 170592 Tools fromrighttoleft
CustomerRelationship
10.1.500 SalesManagement Management 170618 Application CaseEntryEWAUponclosingaCase,theEpishapeintheStatusfieldisstillOpen
CustomerRelationship RMAProcessingNewReceiptsarecreatedwithMoveRequestcheckboxnot
10.1.500 SalesManagement Management 171242 Application selected
CustomerRelationship
10.1.500 SalesManagement Management 173482 Application RMAProcessingDeletedRMAIDvalueisusedagainfornextRMAID
CustomerRelationship CustomerCustomerNumbersenttoCRMCallLogscreen,insteadofsending
10.1.500 SalesManagement Management 173486 Application CustomerID(Alsofixedin10.1.400.x)
CustomerRelationship CaseEntryEWAWhenCaseEntryisopened,itdisplaystheSelectiontabinstead
10.1.500 SalesManagement Management 173758 Application oftheCasetab(EWA)
CustomerRelationship ReasonCodeReasontypeisnotpopulatedwhenopenedfromcontextmenuOpen
10.1.500 SalesManagement Management 174011 Application With>ReasonEntryinNonconformance
CustomerRelationship CustomerUnabletohandletwoCRMCallLogscreensatthesametime;anerror
10.1.500 SalesManagement Management 174627 Application displaysandwhensaving
CustomerRelationship ReasonCodeReasontypeisnotpopulatedwhenisopenedfromcontextmenu
10.1.500 SalesManagement Management 174666 Application OpenWith>ReasonEntryinTimeEntry
CustomerRelationship
10.1.500 SalesManagement Management 174819 Application CustomerLabelfieldsareoverlappedwithdropdownlistfield
CustomerRelationship
10.1.500 SalesManagement Management 174882 Application CustomerUpper/Lowerchangesinaddressfieldsarenotaccepted
CustomerRelationship SalespersonWorkbenchDifferenterrorsaredisplayedwhennavigatingintothe
10.1.500 SalesManagement Management 174998 Application Tabs(Alsofixedin10.1.400.x)
CustomerRelationship CustomerCustomizationwithAfterAdapterMethod;doesnotdisplaymessages
10.1.500 SalesManagement Management 175016 Application (Alsofixedin10.1.400.x)

Page44
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


CustomerRelationship
10.1.500 SalesManagement Management 175053 Application AttributeThewarningmessageisblankwhenselectingtheinactivecheckbox
CustomerRelationship RMAProcessingHavingtoolongComments,RMANumberandRMADatevalues
10.1.500 SalesManagement Management 175076 Application arenotprintedonRMAForm
CustomerRelationship
10.1.500 SalesManagement Management 175151 Application CustomerObjectmappingerrorwhendeleting2ndContactrecord
CustomerRelationship CRMCallEntryErrormessageappearswhentryingtosaveafterselectinga
10.1.500 SalesManagement Management 175524 Application differentcalltype
CustomerRelationship CRMCallEntrySortby"CreateDate"doesnotworkcorrectlyafterthescreenis
10.1.500 SalesManagement Management 175849 Application opened
CustomerRelationship CustomerEntity/UseCodevalueisnotpulledwhensettinganAlternateShipTo
10.1.500 SalesManagement Management 176517 Application address
CustomerRelationship
10.1.500 SalesManagement Management 176694 Application GlobalAlertMessageGeneratedinAlertQueTableisincorrect
CustomerRelationship RMAProcessingIncorrectcostcalculationforFIFOcostedpartincaseofreturn
10.1.500 SalesManagement Management 176880 Application materialusingRAM(Alsofixedin10.1.400.x)
CustomerRelationship
10.1.500 SalesManagement Management 176993 Application CustomerErrormessageappearswhensavingcustomerinformation
CustomerRelationship AttributeWhentrytoselecttheInactivecheckbox,awarningmessageappears
10.1.500 SalesManagement Management 177232 Application withoutcontent
CustomerRelationship Customer/OnTaskMaintenanceTheAssignedToIDfromthefirsttaskchangesto
10.1.500 SalesManagement Management 177487 Application thevalueofthelasttaskafterrefreshing
CustomerRelationship
10.1.500 SalesManagement Management 177867 Application CaseEntryEWANewTaskcannotbeadded
CustomerRelationship WorkForceAuthorizedUsersarenotinheritingtheSupervisorprivileges(Alsofixed
10.1.500 SalesManagement Management 177919 Application in10.1.400.x)
CustomerRelationship SalespersonWorkbenchCreateoptionsfromthecontextmenufromaContact
10.1.500 SalesManagement Management 177942 Application displaysstringerrors
CustomerRelationship Opportunity/QuoteEntryOrderBasedPricedoesnotgetpulledintoquoteuntil
10.1.500 SalesManagement Management 178028 Application quantityisenteredforline
CustomerRelationship Opportunity/QuoteMarkupTheEstimateGUID,CreateEstimateand
10.1.500 SalesManagement Management 178063 Application EstimateUserIDfieldsaredisplayedinBaseCode
CustomerRelationship CustomerWhentryingtocreateacallonalternatecustomer,thecustomerfield
10.1.500 SalesManagement Management 178659 Application appearswithoriginalcustomer
CustomerRelationship
10.1.500 SalesManagement Management 179303 Application GlobalAlertRefactorcodetoreplaceFindLastwithaFindFirst
CustomerRelationship
10.1.500 SalesManagement Management 179497 Application RMAProcessingRMAReportincorrectlydisplayedinthewindowenvelopes

Page45
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


CustomerRelationship CustomerRecordselectcontrol(rse)notpopulatedwhenrecordsretrieved(Also
10.1.500 SalesManagement Management 179541 Application fixedin10.1.400.x)
CustomerRelationship
10.1.500 SalesManagement Management 179901 Application CustomerMovingbetweenShipTorecordsisslow(Alsofixedin10.1.400.x)
CustomerRelationship CustomerCustomerscangetDTCescalationerrorswhenusingmultiple
10.1.500 SalesManagement Management 179937 Application transactions(Alsofixedin10.1.400.x)
CustomerRelationship CustomerGroupNewdiscountpricelistdisplaysnullreferenceexceptionafter
10.1.500 SalesManagement Management 179950 Application addingpricelist
CustomerRelationship RMAProcessingBilltocustomerfieldisnotretrievingnewdatawhenselectingan
10.1.500 SalesManagement Management 180477 Application invoicelegalnumber
CustomerRelationship CustomerContactsarenotaddedtoCustomerwhenLinkingCustomerfromother
10.1.500 SalesManagement Management 180691 Application Company
CustomerRelationship
10.1.500 SalesManagement Management 180767 Application PersonContactNewrecordpromptwhenswitchingtabs
CustomerRelationship RMAProcessing"Keynotfound"messageisdisplayedwhenclickingtheUpdate
10.1.500 SalesManagement Management 181000 Application button
CustomerRelationship RMAProcessingErrorwhentryingtocreateacorrectioninvoicewithaPOnumber
10.1.500 SalesManagement Management 181039 Application assigned
CustomerRelationship OrderTrackerNewpagesarenotdisplayedforreconfiguredlineswhenusingthe
10.1.500 SalesManagement Management 181495 Application Trackers
CustomerRelationship CRMCallEntryContactvaluesdisplayeddonotmatchtheselectedCustomerand
10.1.500 SalesManagement Management 181533 Application ShipTovalues
CustomerRelationship OrderTrackerErrorsaredisplayedwhentryingtoseeaConfigurationinSales
10.1.500 SalesManagement Management 181547 Application OrderTracker
CustomerRelationship
10.1.500 SalesManagement Management 181599 Application TaskListUncompletingaTaskdeletespreviousandallnextmilestones
CustomerRelationship
10.1.500 SalesManagement Management 181600 Application TaskListRealtedToSysRowIDcolumnisdisplayedbydefaultinListtab
CustomerRelationship
10.1.500 SalesManagement Management 181788 Application OrderTrackerConfigurationbuttonisdisabledforConfiguredOrders
CustomerRelationship SalespersonWorkbenchAddandUpdatebuttonsarenotdisplayedunderTasks>
10.1.500 SalesManagement Management 182169 Application ByCustomertab
CustomerRelationship RMAProcessingUsingpapersizeA4theRMAReportprintstheCustomerNameon
10.1.500 SalesManagement Management 182315 Application thesecondpage
CustomerRelationship
10.1.500 SalesManagement Management 182360 Application CaseEntryWhenclickinganyfieldonContactstab,theRelatedTotabopens
CustomerRelationship
10.1.500 SalesManagement Management 182762 Application PriceListWhenselectingseveralPartrecordsonListtab,thefocusisonlastrecord

Page46
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


CustomerRelationship
10.1.500 SalesManagement Management 182794 Application CustomerKitamountissubtractedtwicefromOrderCredit
CustomerRelationship RMAProcessingARRMAInvoiceMaintenanceusesthecurrencyfromthebillto
10.1.500 SalesManagement Management 183359 Application insteadthesoldtocurrency
CustomerRelationship
10.1.500 SalesManagement Management 184181 Application PriceListExportfilecreatedwithcommasasthousandseparatorinnumericvalues
CustomerRelationship
10.1.500 SalesManagement Management 184183 Application PersonContactAbletotypeinanyrandomnumberonCountry
CustomerRelationship
10.1.500 SalesManagement Management 184552 Application CaseEntryUnabletocompleteTasksfromadifferentTaskSet
CustomerRelationship
10.1.500 SalesManagement Management 184776 Application CaseEntryUnabletochangethetasksetonceitissaved
CustomerRelationship CustomerUnabletoaddalternateshipto,alternateShipTofieldsarenotenabled
10.1.500 SalesManagement Management 185192 Application (Alsofixedin10.1.400.x)
CustomerRelationship CustomerCustomergetsOnHoldafterpostingDepositBillingforsmalleramount
10.1.500 SalesManagement Management 187579 Application thanCreditLimit
CustomerRelationship
10.1.500 SalesManagement Management 187827 Application RMAProcessingChangeFIFODatelogicoftheRMAReturnFIFOenhancement
CustomerRelationship CustomerGroupAddinganewDiscountPriceListcauseserrorAvalidPriceListis
10.1.500 SalesManagement Management 187835 Application required
CustomerRelationship CustomerCannotswitchbetweenopenscreens,onceyouopenascreenusing
10.1.500 SalesManagement Management 187972 Application ContextMenu
CustomerRelationship
10.1.500 SalesManagement Management 188232 Application OrderTrackerReviewingaConfigurationjumpsfrom1stPagetolastPage
CustomerRelationship CustomerTrackerInfofromJobstabdoesnotmatchwithJobreferringtoSales
10.1.500 SalesManagement Management 188998 Application Orderselected
10.1.500 SalesManagement Dashboards 184976 Application HHPackageControlParentMixedNolastupdatedtimeontheHHscreen
10.1.500 SalesManagement DemandManagement 163807 Application EnhancetheapplicationtopermittheconfigurationofNoInputConfigurators
10.1.500 SalesManagement DemandManagement 171220 Application DemandReviewReportStandardSSRSReportStyleisnotloadedbydefault
MassPrintPackingSlipsThedataisnotsortedcorrectlywhensearchingaPackin
10.1.500 SalesManagement DemandManagement 175135 Application thePackSlipsFilter
10.1.500 SalesManagement DemandManagement 175969 Application DemandNetChangeReportNotstandardtaborder
DemandProcessingDockingStationnotcopiedfromdemandscheduletoorder
10.1.500 SalesManagement DemandManagement 176990 Application release(Alsofixedin10.1.400.x)
DemandMassReviewRecordnotfounderrordisplayedwhendeletingaDemand
10.1.500 SalesManagement DemandManagement 178817 Application Detailrecord
DemandMassReviewInitialnavigationfromTreeviewdoesnotdisplaydetail
10.1.500 SalesManagement DemandManagement 179847 Application recordsproperly
10.1.500 SalesManagement DemandManagement 180773 Application DemandEntryReleaseofSalesOrderisgeneratedwithincorrectEntity/UseCode

Page47
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


DemandEntryErrorisdisplayedwhenchangingDemandScheduleShipBydate
10.1.500 SalesManagement DemandManagement 181015 Application havingaMonthlyForwardCustomerPeriodicity
DemandEntrySalesOrderDiscountsnotcalculatediforderiscreatedfrom
10.1.500 SalesManagement DemandManagement 181052 Application demand
DemandWorkbenchObjectreferenceerroronarecordintheworkbenchwithno
10.1.500 SalesManagement DemandManagement 181247 Application details(Alsofixedin10.1.400.x)
DemandEntryDifferentShipTobetweendemandentryandorderentrywhen
10.1.500 SalesManagement DemandManagement 182815 Application creatingdemandfromsalesorder
DemandImportProcessDemandImportMiscChgsetsinvalidMiscChgcodein
10.1.500 SalesManagement DemandManagement 183009 Application DemandMiscChg
DemandEntryProcessingaDemandgeneratesForecastrecordsmarkedasInactive
10.1.500 SalesManagement DemandManagement 183103 Application (Alsofixedin10.1.400.x)
10.1.500 SalesManagement DemandManagement 183856 Application DemandEntryReadytoFulfillunmarkedafterselected(ReadyToProcess)
DemandEntryExt.PriceisnotcalculatedproperlywhenSalesOrderisgenerated
10.1.500 SalesManagement DemandManagement 185728 Application withTaxInclusive
10.1.500 SalesManagement EDI 171804 Application EDIInboundLocking/BlockingissuesonImportEDIUpliftchangestoEpicor10.1
EDIOutbounddocumentAltTradingPartnervalueprintedonallinvoices,even
10.1.500 SalesManagement EDI 175100 Application thoughthosearenotEDIinvoices(Alsofixedin10.1.400.x)
EDIInboundUnabletoprocessEDIdocumentwithinvalidUOM,ERRORstatus
10.1.500 SalesManagement EDI 175466 Application appearsinsystemmonitor
PackageControlPCIDNotallowedtousesamedisplaysequenceindifferentsites
10.1.500 SalesManagement EDI 175885 Application (Alsofixedin10.1.400.x)
PackageControlTransactionRoutingUnabletoenableconstraints,errorinallPCID
10.1.500 SalesManagement EDI 176327 Application screensformultisite
10.1.500 SalesManagement EDI 176845 Application PackageControlPCIDPasteinsertdoesnotworkforprinters
PKGPCIDHHReturnableContainerAdjustmentScreenshouldbeclearedwhen
10.1.500 SalesManagement EDI 177703 Application clickingSave
ImportEDIProcessEDIfileswithsmartstringlinesforconfiguredpartsarenot
10.1.500 SalesManagement EDI 178559 Application processed,anerroroccurs(Alsofixedin10.1.400.x)
EDIInboundDemandimportedeventhoughithasanonexistingPartRevisionID
10.1.500 SalesManagement EDI 180717 Application value(Alsofixedin10.1.400.x)
PackageControlPCIDChangethemessageinTransactionRoutingwhenthe
10.1.500 SalesManagement EDI 182109 Application transactionalreadyexists
WorkflowGroupUnabletoaddanewgroupmembertoaWorkflowType=CRM
10.1.500 SalesManagement HelpDesk 179196 Application (Alsofixedin10.1.400.x)
10.1.500 SalesManagement OrderManagement 76702 Application OrderEntryCustomerisnotplacedonCreditHoldduringaCopyOrder
OrderEntrySalesKitcomponentsnotgettingstampedwithshipviacodeofrelated
10.1.500 SalesManagement OrderManagement 154593 Application release

Page48
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


CrossDockCrossdockscreatedforbackflushedjobmaterialsshouldnotbe
10.1.500 SalesManagement OrderManagement 155643 Application releasedforpicking
10.1.500 SalesManagement OrderManagement 158154 Application FulfillmentWorkBenchSupplytabdoesnotdisplayallthelinkedJobs
SSRSInventoryReportsSquaredisplaysonpartdescriptionusingtheChinese
10.1.500 SalesManagement OrderManagement 162902 Application format/culture
PartItshouldbeimpossibletoenterasharedwarehouseasprimarywarehousein
10.1.500 SalesManagement OrderManagement 163497 Application differentSite(Alsofixedin10.1.400.x)
PartEWAFindNumberfield/columnisnotdisplayedonPartWhereUsed
10.1.500 SalesManagement OrderManagement 163844 Application dashboard
FulfillmentWorkBenchWhenordersareselectedatdifferenttimes,onlythelast
10.1.500 SalesManagement OrderManagement 164927 Application orderselectedisallocated
PartNonStockItemvalidationerrorappearstwiceonPartsupdatewithRevision
10.1.500 SalesManagement OrderManagement 165136 Application ConfiguratorIDassigned
CapableToPromiseOverridingcompletiondateinDemandCTPscreendoesnot
10.1.500 SalesManagement OrderManagement 167741 Application affectdatesongeneratedorder
10.1.500 SalesManagement OrderManagement 169137 Application OrderEntryTheserialnumberscanwindowdoesnotworkforcountersales
FulfillmentWorkBenchSoldToIDsearchismadebyCustNum(consecutive)
10.1.500 SalesManagement OrderManagement 169394 Application insteadofCustID(ID)
RMADispositionsPartIDvaluecanbechangedfromanRMADispositionlinkedto
10.1.500 SalesManagement OrderManagement 169541 Application anInvoice
OrderEntryMessageaboutreconfigureisdisplayedwhenconfiguringaSalesKit
10.1.500 SalesManagement OrderManagement 169610 Application andKitDetailsareenabledwhenconfiguring
OrderEntryBookvalueisnotupdatedfortherestofthelineswhenusingPublish
10.1.500 SalesManagement OrderManagement 170203 Application ToDocumentconfigurations
OrderEntryPrintingaSalesOrderwithWordformattheresultinWorddocument
10.1.500 SalesManagement OrderManagement 170319 Application usingonlythelefthalfofthepage
10.1.500 SalesManagement OrderManagement 170533 Application PartUOMClassfielddoesnotdisplaytheSystemDefaultUOMClass
10.1.500 SalesManagement OrderManagement 170626 Application OrderEntryTaxofMiscHeaderChargeislostifLine1isClosed
OrderEntryEWAUponclearingtheLinktoContractcheckboxinLine,itisnot
10.1.500 SalesManagement OrderManagement 170909 Application clearedintheReleasestab
OrderEntryConfiguredpriceisdiscountedtwicefromthepricelistdiscount(Also
10.1.500 SalesManagement OrderManagement 171461 Application fixedin10.1.400.x)
FulfillmentWorkBenchReadytoFulfillenableddoesnotreturnallrowsininitial
10.1.500 SalesManagement OrderManagement 171939 Application search
10.1.500 SalesManagement OrderManagement 172289 Application CapableToPromisePOshouldbegeneratedjustforlinesthatareconfirmed
10.1.500 SalesManagement OrderManagement 172521 Application UOMReviewlogicInactiveUOMcanbeaddedinaPart
CapableToPromiseJobcommentsaddedatorderlevelarenotcarriedovertojob
10.1.500 SalesManagement OrderManagement 172609 Application createdbyCTP
10.1.500 SalesManagement OrderManagement 173070 Application OrderEntryOrderLinewithPartonHoldcanbeaddedbyCopyOrderfunction

Page49
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


10.1.500 SalesManagement OrderManagement 173397 Application PartReturningmorethanonepartmixesupdataforconversionfactorsBLTester
10.1.500 SalesManagement OrderManagement 173454 Application CapableToPromiseCompletiondatesettoapastdatewhenshipbydateinpast
10.1.500 SalesManagement OrderManagement 173524 Application PartClassDoublemessagewheninvalidsiteisset
FulfillmentWorkBenchSelectedrecordsfromBAQSearcharenotdisplayedon
10.1.500 SalesManagement OrderManagement 173588 Application FulfillmentWorkbenchgrid(Alsofixedin10.1.400.x)
10.1.500 SalesManagement OrderManagement 173657 Application PartTheEAN8productcodefieldisrightjustified
FulfillmentWorkBenchObjectReferenceerroronSearchwithReserved=Exclude
10.1.500 SalesManagement OrderManagement 173971 Application (Alsofixedin10.1.400.x)
CapableToPromiseCannotCalculateCTPwithOrdernonpartmasterline
10.1.500 SalesManagement OrderManagement 174000 Application generatedfromanotherSite
OrderEntryProFormaInvoicereportprintsUnitPricewithaletterinUnitPrice
10.1.500 SalesManagement OrderManagement 174002 Application column
10.1.500 SalesManagement OrderManagement 174453 Application PriceGroupUnabletoremoveemptylinebyclickingtheRefreshbutton
OrderEntryWhenaSOiscreatedusingGetOpportunity/QuoteoptiontheCredit
10.1.500 SalesManagement OrderManagement 174569 Application CardOrdercheckboxisignored
OrderEntryInSalesOrderAcknowledgment,Wordformatonly,thephrase"Sales
10.1.500 SalesManagement OrderManagement 174633 Application OrderXXXX"ispartiallycutinthereport
PartSupplierSearchdoesnotreturn\alltherecordssettingontheStartingAt
10.1.500 SalesManagement OrderManagement 174652 Application value
OrderEntryWhentheShipTocustomertaxliabilityofaCustomerisblank,itisnot
10.1.500 SalesManagement OrderManagement 174738 Application defaultedcorrectly
OrderEntryAddingLineofSalesKitwithnoComponents,warningmessageis
10.1.500 SalesManagement OrderManagement 174800 Application displayedtwice
OrderEntrySalesordersearchbasicpaneldoesnotworkcorrectlywithnamed
10.1.500 SalesManagement OrderManagement 174918 Application searchentry
OrderEntryObjectreferenceerrorwhenopeningsalesorderentryforthefirst
10.1.500 SalesManagement OrderManagement 174924 DBSpecific timeinanewsession
10.1.500 SalesManagement OrderManagement 174925 Application OrderEntryDuplicateorderconstrainterrorwhenusingtheOrderCopy
PartSiteTypeDetailvaluenotsettingGeneratePOSuggestionsfield/checkbox
10.1.500 SalesManagement OrderManagement 174979 Application correctly
PartSystemdisplaysthefollowingerrormessageforSalesKitsaving:"Rowhas
10.1.500 SalesManagement OrderManagement 175036 Application beenmodifiedbyanotheruserandcouldnotbeupdated"
UOMAnUnknownExceptionerrorisdisplayedwhentryingtopasteavalueand
10.1.500 SalesManagement OrderManagement 175046 Application thefocusisontheTreeviewarea
OrderEntryWhenaOrderwithSalesKitiscopied,theneworderdoesnotgetthe
10.1.500 SalesManagement OrderManagement 175058 Application components,justtheemptykit
10.1.500 SalesManagement OrderManagement 175138 Application OrderEntryWhenanorderiscopied,theSalespersonisnotcopied

Page50
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


OrderEntrySalesOrdercreatedbyCompletingFinalTaskforQuotewith
configuredpart,displaysanerrorwhenclickingonConfigurationbuttononLine>
10.1.500 SalesManagement OrderManagement 175200 Application Detailstab
SalesOrderPickListInfoofBinswithsameID(differentWarehouse)isnot
10.1.500 SalesManagement OrderManagement 175276 Application displayedonthereport(Alsofixedin10.1.400.x)
UOMStoponUOMRoundingifNoRoundingselecteddoesnotpreventsavewith
10.1.500 SalesManagement OrderManagement 175337 Application toomanydecimalplaces
OrderEntryWhencopyinganorderwithaclosereleasedandH.MiscCharges,
10.1.500 SalesManagement OrderManagement 175411 Application DiscountandH.MiscChargesamountofneworderareincorrect
FulfillmentWorkBenchNotenoughunallocatedinventorytoallocate;anerror
10.1.500 SalesManagement OrderManagement 175416 Application occurswhenprocessingAllocatebyLot/Bin(Alsofixedin10.1.400.x)
OrderEntryEWAReleases/Detailsdisplaysreleasesthatarenotfromtheselected
10.1.500 SalesManagement OrderManagement 175529 Application line
OrderEntryEWALineKitComponentsaredisplayedinLine/DetailsandSummary
10.1.500 SalesManagement OrderManagement 175539 Application tab
OrderEntryEWASettingcustomerdiscountinOrderEntryhavingorderlineswith
10.1.500 SalesManagement OrderManagement 175551 Application saleskit,confirmationmessageisnotdisplayedanddiscountisnotapplied
OrderEntryKitDetailscheckboxnotsettodefaultvaluewhenswitchingbetween
10.1.500 SalesManagement OrderManagement 175639 Application SalesOrders
OrderEntryOnProFormaInvoicereport,labelasideoffaxnumberisdisplayedas
10.1.500 SalesManagement OrderManagement 175702 Application "Page",insteadof"Fax"(Alsofixedin10.1.400.x)
OrderEntryWhencreatingaSalesOrderfromTaskListtheReadytoProcessis
10.1.500 SalesManagement OrderManagement 175706 Application selected
OrderEntryInCounterSale,clickingtheProcessCounterSalebuttonresultsina
10.1.500 SalesManagement OrderManagement 175761 Application customerwithoutcreditlimittobeputOnHold
FulfillmentWorkBenchOnPartialallocations,morequantitycanbeallocated,
10.1.500 SalesManagement OrderManagement 175778 Application thantherequested
TaxReportCategoryDuplicateIDrecordwarningmessageimprovedforuserfrom
10.1.500 SalesManagement OrderManagement 175798 Application Listgridtab
OrderEntryThirdPartyCustomerShipToAddressisnotprintedonProForma
10.1.500 SalesManagement OrderManagement 176512 Application Invoicereport(Alsofixedin10.1.400.x)
OrderEntryTax,definedtobeaddedontheInvoice,isaddedontheOrderwhen
10.1.500 SalesManagement OrderManagement 176840 Application theTotalvalueischanged(Alsofixedin10.1.400.x)
10.1.500 SalesManagement OrderManagement 176894 Application OrderEntryAttachmentcannotbedeleted
10.1.500 SalesManagement OrderManagement 177320 Application CapableToPromiseTheCTPdoesnotlinktheProjectsfromtheSalesOrders
OrderEntryCounterSalesshipsorderwithoutverifyingifOnHanditemsare
10.1.500 SalesManagement OrderManagement 177344 Application allocatedornot(Alsofixedin10.1.400.x)
OrderJobWizardDrawingnumbernotpassingthroughtojobwhenthejob
10.1.500 SalesManagement OrderManagement 177493 Application createdbyorderjobwizardfromanorderthatislinkedtoaquote

Page51
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


OrderEntryTax,definedtobeaddedontheinvoice,isaddedifalinewithserial
10.1.500 SalesManagement OrderManagement 177528 Application numberpartisdeleted
10.1.500 SalesManagement OrderManagement 177578 Application OrderEntryUOMfieldincountersalelinesgridshouldbeadropdown
OrderEntryErrormessageisdisplayedafterprintingSalesOrder
10.1.500 SalesManagement OrderManagement 177672 Application acknowledgementreportandtryingtoupdatetheSO
SalesOrderPickListReleaseQtyvaluedefaultsPrimarySalesUOMinsteadofUOM
10.1.500 SalesManagement OrderManagement 177821 Application usedinSalesOrder(Alsofixedin10.1.400.x)
10.1.500 SalesManagement OrderManagement 177844 Application OrderEntryCreditCardExpirationMonthismentionedtwice
10.1.500 SalesManagement OrderManagement 177853 Application PartSystemallowslinkingtheskippedpartsandcreatesnewonesinthecompany
FulfillmentWorkBenchQuickSearchQuerydisplaysan"outoftherangeofvalid
10.1.500 SalesManagement OrderManagement 177971 Application values"error
10.1.500 SalesManagement OrderManagement 177987 Application OrderEntryThesupplierssearchbringsinactivesuppliers
OrderEntryOrdercreatedfromQuotedoesnotsettheOrderReleaseasBuyTo
10.1.500 SalesManagement OrderManagement 178023 Application Order
FulfillmentWorkBenchReserveismadeonanyWarehouseregardlessifitisthe
10.1.500 SalesManagement OrderManagement 178046 Application DemandWarehouse(Alsofixedin10.1.400.x)
10.1.500 SalesManagement OrderManagement 178108 Application CrossDockSearchdisplaysinformationaboutdeletedJobs
ProductGroupSystemstopsworkingafterdeletingaSalesSitevalue(Alsofixedin
10.1.500 SalesManagement OrderManagement 178257 Application 10.1.400.x)
CapableToPromiseCustomerPartReferencedoesnotflowtotheJobcreated
10.1.500 SalesManagement OrderManagement 178264 Application usingCapabletoPromise
10.1.500 SalesManagement OrderManagement 178271 Application FOBOnFOBSearchscreen,QuickSearchesarenotlistedundertheBAQtab
OrderEntryUnitPriceofSalesKitComponentisdisplayedasTotalPrice,insteadof
10.1.500 SalesManagement OrderManagement 178363 Application SalesUnitPrice(Alsofixedin10.1.400.x)
OrderEntryWhenSalesKitisParentPricing,itscomponentsarereceivingPriceList
10.1.500 SalesManagement OrderManagement 178736 Application discount
10.1.500 SalesManagement OrderManagement 178879 Application PartErrorisdisplayedwhentryingtoupdatePrimaryWarehouseinDetailstab
10.1.500 SalesManagement OrderManagement 178904 Application PartWhenweenteringapartnumber,adifferentpartnumberisretrieved
IncomingIntercompanyPOSuggestionsShipToPriceListisnotassignedtoSales
10.1.500 SalesManagement OrderManagement 178940 Application Order
10.1.500 SalesManagement OrderManagement 179005 Application OrderEntryAbletocreatenewSalesOrderwithinactiveCurrency
10.1.500 SalesManagement OrderManagement 179030 Application OrderEntryOnHandquantityvalueiscalculatedfromitemsfromallSites
CustomerPartCrossReferenceDeletingaCustomerPart,suchCustomerPartis
10.1.500 SalesManagement OrderManagement 179061 Application deletedonallCustomers
OrderEntryLockedpriceonkitcomponentischangedwhenquantityperkitis
10.1.500 SalesManagement OrderManagement 179073 Application changed
OrderEntryAnincorrectvalidationisdisplayedwhenProcessCounterSaleand
10.1.500 SalesManagement OrderManagement 179400 Application thentrytoclosethescreen

Page52
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


OrderEntryAddinganewreleasetotheordercreatedfromQuote,doesnotset
10.1.500 SalesManagement OrderManagement 179441 Application MakeDirectcheckboxcorrectly
OrderEntryAnerrormessageisdisplayedwhenusetheQuoteSearchfromGet
10.1.500 SalesManagement OrderManagement 179495 Application QuoteLineForOrderscreen
OrderEntry"Objectreferencenotset"messageappearswhenclickingaddrfield
10.1.500 SalesManagement OrderManagement 179653 Application andthenthedeletebuttonatRelease/Detailtab
OrderEntryCounterSaleOrdernotprocessedlaterifuseransweredNowhen
10.1.500 SalesManagement OrderManagement 179670 Application askedifthepackwasreadytoshipthefirsttime
OrderEntryShippingordershouldnotwritetobookdtltable(Alsofixedin
10.1.500 SalesManagement OrderManagement 179689 Application 10.1.400.x)
PartUserthathasnoaccesstoaSite,shouldnotbeabletoviewitinPart
10.1.500 SalesManagement OrderManagement 179788 Application Maintenance
10.1.500 SalesManagement OrderManagement 179909 Application OrderEntryChangingPartUOMdoesnotchangesPriceList
OrderEntryWhenReadytoProcessisoff,sometransactionsarerecordedin
10.1.500 SalesManagement OrderManagement 179968 Application BookReltable
OrderEntryOnSalesOrderwithInclusiveTax,Discountnotappliedifitisadded
10.1.500 SalesManagement OrderManagement 180062 Application afteraddingOrderLine
OrderEntrySalesOrdercanbedeletedleavingCreditCardtransactionspendingto
10.1.500 SalesManagement OrderManagement 180161 Application beapproved(Alsofixedin10.1.400.x)
OrderEntryPrintingProformaforMiscChargeinforeignlanguagedonot
10.1.500 SalesManagement OrderManagement 180166 Application translatecorrectly(Alsofixedin10.1.400.x)
OrderEntryObjectreferenceerrorwhencreatinganOrderpullinginfofroma
10.1.500 SalesManagement OrderManagement 180289 Application Quote
OrderEntryDiscountcontinuesapplyingtoSalesOrdereventhoughDiscountisset
10.1.500 SalesManagement OrderManagement 180296 Application to0
OrderEntryLinewithconfiguredpartcreatedfromQuote,doesnotsettheOrder
10.1.500 SalesManagement OrderManagement 180322 Application ReleaseasBuyToOrder
CustomerPartCrossReference"Keyalreadyexists"errorwhenexpandingleftside
10.1.500 SalesManagement OrderManagement 180463 Application Treeview
OrderEntryRowmodifiedbyanotherusererrorwhenupdatingPartIDand
10.1.500 SalesManagement OrderManagement 180481 Application ProductGroupvalueonexistingline
FulfillmentWorkBenchErrorand/orincorrectstagingwarehouse/binwhen
10.1.500 SalesManagement OrderManagement 180715 Application releasingbackflushedkits(Alsofixedin10.1.400.x)
OrderJobWizardTheOrderJobWizardcanbelaunchedandgenerateJobseven
10.1.500 SalesManagement OrderManagement 180772 Application whentheJobManagementlicenseisnotenabled
PartAfteraddingapartwithpackagecontrolspecificUOMs,anerrormessageis
10.1.500 SalesManagement OrderManagement 180823 Application displayedforaddingthesecondpart
10.1.500 SalesManagement OrderManagement 180862 Application OrderEntryCopiedSOnottakinginaccountmiscamount

Page53
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


CustomerPartCrossReferenceEWAUnabletocreateanewcustomerpartcross
10.1.500 SalesManagement OrderManagement 180954 Application referencewhenthereisalreadyonecreatedforthatcustomer
PartClearthisform?Yourunsavedchangeswillbeignoredmessage,even
10.1.500 SalesManagement OrderManagement 180957 Application thoughnoinformationwasretrieved
RMADispositionsReturningbackaSalesKitaddsinventorytotheSalesKitPart,
10.1.500 SalesManagement OrderManagement 180994 Application butnottoitsComponents(Alsofixedin10.1.400.x)
FulfillmentWorkBenchNumericfieldsdoesnotworkwithQuantityDisplay
10.1.500 SalesManagement OrderManagement 181058 Application DecimalvaluespecifiedatCompany
ProductGroupTerritoryvalueisnotsaved,itdoesnotexistsinthedatabase(Also
10.1.500 SalesManagement OrderManagement 181134 Application fixedin10.1.400.x)
10.1.500 SalesManagement OrderManagement 181138 Application FulfillmentWorkBenchPackstationisrequiredwhentryingtoallocatejobs
10.1.500 SalesManagement OrderManagement 181140 Application FulfillmentWorkBenchWaveIDisemptyforjobafterallocateWOwave
10.1.500 SalesManagement OrderManagement 181144 Application OrderEntryPotentialnullreferenceonSalesOrderEntrywhenusingKitDetails
OrderEntryCounterSaleswithmorethanoneLineisnotShippedandnotInvoiced
10.1.500 SalesManagement OrderManagement 181267 Application whenprocessed
OrderEntryIncounterSales,whencustomerisoncreditholdandtheanswerto
the"DoyouwanttoShip?"questionisNo,thepackisshippedandinvoiced
10.1.500 SalesManagement OrderManagement 181270 Application anyways
OrderEntryPriceinfonotdisplayedproperlyhavingTaxInclusive,Discountand
10.1.500 SalesManagement OrderManagement 181492 Application ComponentPricingSalesKit(Alsofixedin10.1.400.x)
10.1.500 SalesManagement OrderManagement 181535 Application OrderEntryUnabletoConfigureConfigurationsOntheFlyinSalesOrderEntry
SalesOrderBacklogReportSettingitasnotPrintOrderReleaseDetails,displaysa
10.1.500 SalesManagement OrderManagement 181564 Application lotofblankspace
OrderEntryTaxesarecalculatedincorrectlywhenDiscountisenteredatHeader
10.1.500 SalesManagement OrderManagement 181796 Application level
PartCannotaddanAlternatePartusingaSupplier,Manufacturer,Customer,
10.1.500 SalesManagement OrderManagement 181807 Application InternalorProductCodePart
OrderEntryClosingaReleaseofaSalesKitLineleavesitsComponentPartsas
10.1.500 SalesManagement OrderManagement 181849 Application Open(Alsofixedin10.1.400.x)

PartRefreshPartQuantitiesandAllocationsAfterrunningPartBinQOHFrom
10.1.500 SalesManagement OrderManagement 181914 Application PartTranprocess,transactionrecordshaveallocationissues(Alsofixedin10.1.400.x)
OrderEntryNoWarehousevaluedisplayedwhenswitchingfromanOnTheFly
10.1.500 SalesManagement OrderManagement 181920 Application ParttoanexistingPart(Alsofixedin10.1.400.x)
OrderEntryNotpreventingtosavelinesoftheorderwhencreditlimitactionsis
10.1.500 SalesManagement OrderManagement 181950 Application settostoponcompanyconf
10.1.500 SalesManagement OrderManagement 182020 Application OrderEntryNetSalevaluenotupdatedafterapplyingaDepositPayment
OrderEntryConfigurationButtonisnotenabledinSalesOrderforPartstiedtoNo
10.1.500 SalesManagement OrderManagement 182131 Application InputsConfigurator

Page54
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


SalesKitsNomessagesregardingexceededCreditLimitaredisplayedfor
10.1.500 SalesManagement OrderManagement 182175 Application ComponentPricingSalesKits
PartWhseandPartQtyonhandvaluesareoutofsyncwithPartBinandRefresh
10.1.500 SalesManagement OrderManagement 182180 Application quantityandallocationsdonotcorrecttheissue(Alsofixedin10.1.400.x)
10.1.500 SalesManagement OrderManagement 182272 Application PartSupplier'sPrimaryPurchasePointisnotdisplayedasPurchasingSupplier
FulfillmentWorkBenchAllocatebySerialNumber,thenReleaseforPicking,
10.1.500 SalesManagement OrderManagement 182276 Application generatesaPriority=0transaction
10.1.500 SalesManagement OrderManagement 182320 Application OrderEntryObjectReferenceerrordisplayedwhenCreateDemandFromOrders
OrderEntryUserispromptedtoconfirmsavingdatawhenclosingtheorderentry
10.1.500 SalesManagement OrderManagement 182332 Application formafterSalesOrderAcknowledgementreportisrun
WaveTrackerAllocationWavefielddefaultwith0whenscreenisopened;cannot
10.1.500 SalesManagement OrderManagement 182563 Application movetoothertabs
OrderEntryDiscount%LostaftersavingaPriceGrouplinkedtoaProductGroup
10.1.500 SalesManagement OrderManagement 182590 Application (Alsofixedin10.1.400.x)
FulfillmentWorkBenchPrintingReleasedItemsofaCopiedSalesOrderforthefirst
10.1.500 SalesManagement OrderManagement 182766 Application time,printsthereportas**REPRINT**
OrderEntryItisallowedtocreatea2ndSalesOrderforCustomermarkedas
10.1.500 SalesManagement OrderManagement 182768 Application "CheckDupPO"
10.1.500 SalesManagement OrderManagement 182985 Application OrderEntrySearchResultsgiveresultsdisplayingfirstnonnumericvalues
10.1.500 SalesManagement OrderManagement 182996 Application OrderEntryCreatesDemandEntrywithoutCrossReferencevalue
10.1.500 SalesManagement OrderManagement 183036 Application OrderEntrySalespersonsinfoislostafterupdatingShipTovalue
10.1.500 SalesManagement OrderManagement 183108 Application CrossDockHideprioritycolumnanddocumentationforcolumn
OrderEntryExtendedPrice,TaxandMiscchangesincorrectwhenusingHeader
10.1.500 SalesManagement OrderManagement 183263 Application MiscChangeswithTaxInclusivePricing
SSRSSalesOrderAcknowledgmentReportPricenotdisplayedforcomponent
10.1.500 SalesManagement OrderManagement 183298 Application pricedkitwhenprintcomponentsissettoFalse
OrderEntryUnitPriceisnotautomaticallycalculatedafterchangingUOMand
10.1.500 SalesManagement OrderManagement 183417 Application tabbingoutwhenusingaLinelevelDiscount(Alsofixedin10.1.400.x)
PartObjectReferenceerrorwhenupdatingGlobalPartofaPriceListthatisonan
10.1.500 SalesManagement OrderManagement 183424 Application InterCompanyCustomer
OrderEntryChangingLine'sUOMofMultiUOMTrackedPart,LineandRelease
10.1.500 SalesManagement OrderManagement 183457 Application quantityvaluesdonotmatch(Alsofixedin10.1.400.x)
PartCostingMethodisupdatedintheSitesTabwhenansweringNotothe
10.1.500 SalesManagement OrderManagement 183503 Application confirmationmessage
FulfillmentWorkBenchUnabletoallocatebyPartifSalesOrderiscreatedfrom
10.1.500 SalesManagement OrderManagement 183522 Application Opportunity/QuoteEntry
FulfillmentWorkBenchMoreserialnumberscanbeallocatedthanremaintobe
10.1.500 SalesManagement OrderManagement 183584 Application fulfilled
10.1.500 SalesManagement OrderManagement 183586 Application PartThePLMcheckboxisdisabledbeforesavinganewpart

Page55
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


OrderJobWizardJobscreatedfromSalesOrderEntry,createJobswithoutDraw
10.1.500 SalesManagement OrderManagement 184109 Application value
OrderEntryPackSlipCurrencyandInvoiceCurrencynotcopiedwithlatestvalue
10.1.500 SalesManagement OrderManagement 184158 Application whencopyinganorder
CapableToPromiseTaxablecheckboxwasnotcalculatedcorrectlywhengenerate
10.1.500 SalesManagement OrderManagement 184192 Application PO/POSuggestion
OrderEntrySearchreturns"Erroraccessingthedatabase:Incorrectsyntaxnear')'."
10.1.500 SalesManagement OrderManagement 184278 Application whenusingStartingAtandCustomerfilters
IncomingIntercompanyPOSuggestionsErrormessageisdisplayedwhenselecting
10.1.500 SalesManagement OrderManagement 184560 Application aPurchaseOrderrecord
10.1.500 SalesManagement OrderManagement 184775 Application FulfillmentWorkBenchAllocateByPartdeletesMFGCUStransactionrecord
OrderEntryCustomervalueshouldnotbeupdatedonshippedSalesOrdersby
10.1.500 SalesManagement OrderManagement 184779 Application DropShipment
OrderEntryTaxisappliedtoSalesKitComponentseventhoughTaxType=Fully
10.1.500 SalesManagement OrderManagement 186054 Application Exempt
SSRSSalesOrderAcknowledgmentReportCurrencysymbolontotalslineissymbol
10.1.500 SalesManagement OrderManagement 186295 Application forbasecurrencynotordercurrency
10.1.500 SalesManagement OrderManagement 186414 Application OrderEntryCannotassigntheProjectIDwiththeSalesOrder
PriceListInquiryDiscountsfromdiscountpricelistsarenotbeingdisplayed
10.1.500 SalesManagement OrderManagement 186447 Application correctly
OrderEntryChangingProductGrouptoaProductGrouphavingnosalessite
10.1.500 SalesManagement OrderManagement 187386 Application changessiteonreleasetologgedinsite
10.1.500 SalesManagement OrderManagement 187583 Application FulfillmentWorkBenchGetWarehouseInfomethodneedstobeapublicmethod
OrderEntryFromWarehousevaluechangestoPrimaryWarehousevaluewhen
10.1.500 SalesManagement OrderManagement 188219 Application updatingSalesUnitPrice
10.1.500 SalesManagement OrderManagement 188248 Application PriceListInquiryIfonlyPartIDinfoisentered,pricinginfoisnotdisplayed
OrderEntryChangingexistingSalesOrdertoOneTimeShipTo,deletesNeedBy
10.1.500 SalesManagement OrderManagement 188258 Application andShipByvalues
10.1.500 SalesManagement OrderManagement 188557 Application FulfillmentWorkBenchWavePickTicketdoesnothaveaReportStyledefined
10.1.500 SalesManagement OrderManagement 188604 Application OrderEntryBookDetailscreatesanonexistentadditionalrecord
OrderEntryDiscountamountchangestozerowhenconfiguringapartinorders
10.1.500 SalesManagement OrderManagement 188875 Application butnotquotes
OrderEntryUnabletoselecttheMakedirect;errordisplays:"Thispropertycannot
10.1.500 SalesManagement OrderManagement 189050 Application besettoanullvalue."
OrderAllocationUpdatetoPartQtyneedstogothroughDeferredUpdatetoavoid
10.1.500 SalesManagement OrderManagement 189072 Application deadlock
PLMServerProcessBOMsfromPLMtoEpicor10QuoteEntryarenotcreated
10.1.500 SalesManagement PrintIntegration 157830 Application (Alsofixedin10.1.400.x)

Page56
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


EnterpriseConfiguratorServerProcessErrorwhenusingAutomaticallyMark
10.1.500 SalesManagement ProductConfiguration 145196 Application MethodMaterialGlobalcheckbox
EnterpriseConfiguratorServerProcessMaterialsarenotexcludedofcomponent
10.1.500 SalesManagement ProductConfiguration 145240 Application pricingifexcludefrompricingrulefunctionissettothosematerials
EnterpriseConfiguratorServerProcessManufacturingconfiguratorscanbeloaded
10.1.500 SalesManagement ProductConfiguration 145593 Application onUserDefinedMethodofSalesCompany
ConfiguratorLookUpDataLookUpmethodsarealsousingaparamobject,they
10.1.500 SalesManagement ProductConfiguration 153271 Application needtoberemoved
10.1.500 SalesManagement ProductConfiguration 159756 Application ResourceGroupInvestigatetheuseofResourceTypefieldinResourceGrouptable
10.1.500 SalesManagement ProductConfiguration 160036 Application ComponentpricingcalculationsinconsistentbetweenQuoteandSalesOrder
ConfiguratorRunTimeNorecordsareloadedinConfigurationSummaryGridwhen
10.1.500 SalesManagement ProductConfiguration 160852 Application usingTrackers
ConfiguratorCodeEditorPCLookup.DataColumnLookupListneedstobeaddedto
10.1.500 SalesManagement ProductConfiguration 161361 Application codeeditor
10.1.500 SalesManagement ProductConfiguration 161491 Application PcValuedataisnotalwaysdeletedwhentheconfiguredpartdetailsaredeleted
10.1.500 SalesManagement ProductConfiguration 163336 Application FixwarningsfromBO/ConfigurationRuntime
ConfiguratorEntryRecordCreationOptionsremainselectedandenabledafter
10.1.500 SalesManagement ProductConfiguration 163841 Application CreateRevisionoptioniscleared
ConfiguratorDesignerNotdisplayinginputcountintheTreeviewandtheTree
10.1.500 SalesManagement ProductConfiguration 165466 Application optionsdoesnothing
10.1.500 SalesManagement ProductConfiguration 165541 Application ReviewandupdateBasePartNumforRemoveLink
ConfiguratorRulesErrormessageisnotdisplayedwhenleavingaKeepWhenrule
10.1.500 SalesManagement ProductConfiguration 165827 Application undefined
10.1.500 SalesManagement ProductConfiguration 165834 Application ConfiguratorSalesKitsErrorwhenkeepingapurchasematerialwitharevision
ConfiguratorRulesRetainExistingMethodsrulefunctiondoesnotworkinQuote
10.1.500 SalesManagement ProductConfiguration 166090 Application Entry
ConfiguratorRunTimeChildSubassemblylostwhenitistighttoaparentsubwith
10.1.500 SalesManagement ProductConfiguration 167257 Application PhantomBOM
ConfiguratorRunTimeMethodrulesarenotreexecutedwhenremovingthe
10.1.500 SalesManagement ProductConfiguration 167689 Application elementsofaSubandgettingdetailsagain
ConfiguratorCodeEditorAddReferencesformdisplaysindexoutofboundserror/
10.1.500 SalesManagement ProductConfiguration 168194 Application inconsistentduplicatemessage
ConfiguratorRunTimeWhenswappingapartwithanotherpartthatisa
Configuratoronthefly,thesessionforitssubconfiguratorsisnotprompted(Also
10.1.500 SalesManagement ProductConfiguration 168265 Application fixedin10.1.400.x)
ProductConfiguratorUnabletoprocessSalesKitsoftypeComponentPricingwhen
10.1.500 SalesManagement ProductConfiguration 168680 Application ChildItemisrelatedtoaConfigurator
ConfiguratorDesignerErrorisdisplayedonRunTimeeventifthereisacombobox
10.1.500 SalesManagement ProductConfiguration 169138 Application withaGlobalInputVariablelinked(Alsofixedin10.1.400.x)

Page57
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


ConfiguratorRunTimeAlternateMethodsofsubassembliesareretrievedwhen
10.1.500 SalesManagement ProductConfiguration 169924 Application gettingdetailsinsteadoftherevision
ConfiguratorDynamicListsListItemsgriddoesnotdisplaythepropervaluesofthe
10.1.500 SalesManagement ProductConfiguration 170564 Application DynamicLists(Alsofixedin10.1.400.x)
ConfiguratorPartCreationReorderingasavedinputvaluesconfigurationdoesnot
10.1.500 SalesManagement ProductConfiguration 170582 Application pullindetailswhennotgeneratingmethod
ConfiguratorExpressionBuilderMethodParametersarenotdisplayedandMethod
10.1.500 SalesManagement ProductConfiguration 170978 Application Typesarenotvalidated
ConfiguratorPricingPricingfromsubconfiguratornotconsideringtheqty/perof
10.1.500 SalesManagement ProductConfiguration 171022 Application thecomponent
ConfiguratorRunTimeCannotgetdetailswhengettingthemmanuallyinaJobthat
10.1.500 SalesManagement ProductConfiguration 171218 Application islinkedtoanOrder
ConfiguratorEntryDocumentvariablesscreendoesnotclearentriesbetween
10.1.500 SalesManagement ProductConfiguration 171577 Application configurations
ConfiguratorGlobalVariablesItispossibletochangetheDatatypeofaGlobal
10.1.500 SalesManagement ProductConfiguration 171655 Application InputVariablethatisinuse
ConfiguratorGlobalVariablesGIVfieldsareenabledwhendeletingGlobalInput
10.1.500 SalesManagement ProductConfiguration 171658 Application Variablethatisinuse
ConfiguratorCodeEditorRemovetooltipandGlobalINputfromcodeeditorfield
10.1.500 SalesManagement ProductConfiguration 171695 Application propertiesforbrowser
ConfiguratorRunTimeNextDateinputssetasPublishToDocumentdonot
10.1.500 SalesManagement ProductConfiguration 171900 Application recognizeemptyvalues
ProductConfiguratorErrorappearsaftersavingonOrderEntryforanspecificSO
10.1.500 SalesManagement ProductConfiguration 171956 Application withaconfiguredpart
ConfiguratorUserDefinableFunctionsErrormessageisdisplayedtwiceifaninvalid
10.1.500 SalesManagement ProductConfiguration 172200 Application configuratorisentered
ConfiguratorPricingComponentPricingincorrectlycalculatedinamultilevel
10.1.500 SalesManagement ProductConfiguration 172397 Application scenario;doublingparentmaterialsprices
ResourceGroupMovingaresourcetoanotherresourcegroupdoesnotmovethe
10.1.500 SalesManagement ProductConfiguration 172706 Application actualload
10.1.500 SalesManagement ProductConfiguration 172750 Application ConfiguratorRulesAbletomodifyamaterialpartnumwithanullvalue
OrderEntrySystemdoesnotrespondwhentheCustomerissetonCreditHoldfor
10.1.500 SalesManagement ProductConfiguration 172874 Application aSalesKitLine(Alsofixedin10.1.400.x)
ConfiguratorDynamicListsCreatingaBAQcriteriawithouthavingaInputvalue
10.1.500 SalesManagement ProductConfiguration 173092 Application causesanexception
ConfiguratorRunTimeOnFieldValidatingdoesnotworkwhenitisreferencedto
10.1.500 SalesManagement ProductConfiguration 173095 Application thesameinput(Alsofixedin10.1.400.x)
ResourceGroupGenerateShopCapacityProcessmessagedisplaysongroupSave
10.1.500 SalesManagement ProductConfiguration 173243 Application notonResourcesave

Page58
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


ResourceGroupAbletomaintainResourcesfromagroupfromdifferentsitesin
10.1.500 SalesManagement ProductConfiguration 173558 Application thesamecompany
ConfiguratorPartCreationScreendoesnotrefreshwhenconfiguringaJobMtl
10.1.500 SalesManagement ProductConfiguration 173579 Application wheretheconfigissetto"setpartnumonly"
ConfiguratorDocumentRulesPricerulewithexpressionitmustvalidatetoreturna
10.1.500 SalesManagement ProductConfiguration 174063 Application value
ConfiguratorDocumentRulesError"Thispropertycannotbesettoanullvalue"
10.1.500 SalesManagement ProductConfiguration 174071 Application whensavingaincompleterule
ConfiguratorDesignerUnabletoseelocalvariablesonconfiguratordesigner
10.1.500 SalesManagement ProductConfiguration 174342 Application trackerifconfiguratorisapproved
ConfiguratorCodeEditorAddSystemDiagnosticstorestrictedkeywordlistformulti
10.1.500 SalesManagement ProductConfiguration 174814 Application tenantlicense
10.1.500 SalesManagement ProductConfiguration 174951 Application ProductConfiguratorImproperlyformattedqueriesneedtobefixed
ConfiguratorPartCreationGetSmartStringFunctiondoesnothonorSpace
10.1.500 SalesManagement ProductConfiguration 174967 Application separator(Alsofixedin10.1.400.x)
ConfiguratorDesignerLabelandRectangleinputsaredisplayingValuecontrolon
10.1.500 SalesManagement ProductConfiguration 174994 Application AvailableSelectionstree
10.1.500 SalesManagement ProductConfiguration 175065 Application ProductConfiguratorImproperlyformattedqueriesneedtobefixed
ConfiguratorEntryFixallconfiguratoradapterprojectswiththecorrectmethod
10.1.500 SalesManagement ProductConfiguration 175071 Application structure
ConfiguratorDesignerNewrowscannotbedeletedinValue/DescriptionList
10.1.500 SalesManagement ProductConfiguration 175091 Application EditorFormwhenhavingemptyvalues
ConfiguratorEWASystemoutofmemoryexceptionwhendeployinglarge
10.1.500 SalesManagement ProductConfiguration 175099 Tools configuratorswithmanyinputstoEWA
ConfiguratorDesignerReadOnlyExpressionFielddoesnotbehaveliketheother
10.1.500 SalesManagement ProductConfiguration 175162 Application fieldsforenteringexpressions
ConfiguratorDesignerErrorsaredisplayedwhenaddinganewvalueusingthetab
10.1.500 SalesManagement ProductConfiguration 175189 Application keyinValueListEditorforValidListproperty
ConfiguratorRulesRowhasbeenmodifiederrorisdisplayedrepeatedlywhen
10.1.500 SalesManagement ProductConfiguration 175192 Application approvingandunapproving
ConfiguratorDesignerUnabletodeleteaninputfromconfigurator(Alsofixedin
10.1.500 SalesManagement ProductConfiguration 175199 Application 10.1.400.x)
ConfiguratorSalesKitsErrormessageshouldnothaveyes/nooptions,buttheOK
10.1.500 SalesManagement ProductConfiguration 175250 Application optiononly
10.1.500 SalesManagement ProductConfiguration 175253 Application ConfiguratorSalesKitsNoPcValueGrpexceptionisdisplayed
ConfiguratorDesigner"Skipifallinputsaredisabledorinvisible"remainsasTrue
10.1.500 SalesManagement ProductConfiguration 175297 Application forthefirstpageofthesequence
ConfiguratorConversionRunConvertPCInValuesdoesnotstopwhenkilledfrom
10.1.500 SalesManagement ProductConfiguration 175313 Application theSystemMonitor

Page59
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


ConfiguratorDesignerInputrulesdonotrecognizeComboBoxdescriptionuntil
10.1.500 SalesManagement ProductConfiguration 175421 Application fieldismanuallychanged(Alsofixedin10.1.400.x)
ConfiguratorImport/ExportExportfileisnotwrittenwhentheusermanually
10.1.500 SalesManagement ProductConfiguration 175453 Application entersthefilename
ConfiguratorEWAUnabletomovethenextpageofasubconfigurationinamulti
10.1.500 SalesManagement ProductConfiguration 175668 Application levelruntimesession
ConfiguratorRulesMethodrulecodedoesnotputthecorrectmaterialinMethod
10.1.500 SalesManagement ProductConfiguration 175787 Application Tracker(Alsofixedin10.1.400.x)
ConfiguratorEWAComboBoxvaluecannotbedeletedandthelistislostwhen
10.1.500 SalesManagement ProductConfiguration 175803 Application tryingtodeletethevalue
ConfiguratorEWARequiredpropertyoftheinputsisnotvalidatedinConfigurator
10.1.500 SalesManagement ProductConfiguration 175816 Application EWA.
VerifyExistingConfigurations"SetFieldvalueonDBField"messagedisplays,
10.1.500 SalesManagement ProductConfiguration 175970 Application despiteofnochangesweremade
VerifyExistingConfigurationsConfigVersiononconfigureddtlrecordsnotupdated
10.1.500 SalesManagement ProductConfiguration 175982 Application properly
ConfiguratorCodeEditorRenamedUDMethodsthatarenotvalid,arenotcaught
10.1.500 SalesManagement ProductConfiguration 175994 Application bythesyntaxcheck
ConfiguratorSalesKitsImplementprocesskeepwhenforsaleskit/phantom
10.1.500 SalesManagement ProductConfiguration 176079 Application configurators
ConfiguratorPartCreationPromptforanewpartnumberpopupdoesnotdisplay
10.1.500 SalesManagement ProductConfiguration 176112 Application thenameoftheoriginalpart
OrderTrackerOpeningtheconfigurationfromthetrackerneedsanoptiontosee
10.1.500 SalesManagement ProductConfiguration 176184 Application theconfigurationpagereadonly(Alsofixedin10.1.400.x)
VerifyConfigurationslogfilemessageforJobsdisplaysblankforthePartand
10.1.500 SalesManagement ProductConfiguration 176253 Application Revision
ConfiguratorRunTimeDetailsarenotbroughtinwhenreconfiguringaJobcreated
10.1.500 SalesManagement ProductConfiguration 176323 Application fromOrderJobWizard
10.1.500 SalesManagement ProductConfiguration 176367 Application VerifyExistingConfigurationsErrorondynamicliststhatcallUDMethods
ConfiguratorGlobalVariablesDuplicateerrorisdisplayedwhensavingavariable
10.1.500 SalesManagement ProductConfiguration 176403 Application thatalreadyexists
ConfiguratorDesignerImageswithapointinitsnamearenotdisplayedin
10.1.500 SalesManagement ProductConfiguration 176518 Application ConfiguratorDesignerandRuntime
ConfiguratorEWAPicturesboxesdonotdisplayinConfiguratorRuntimewhen
10.1.500 SalesManagement ProductConfiguration 176617 Tools workingfromEWA(Alsofixedin10.1.400.x)
10.1.500 SalesManagement ProductConfiguration 176625 Application ConfiguratorEventsOnLoadeventisexecutedtwicewhenconfiguringonanEntity
VerifyExistingConfigurationsExceptiondisplayedaftersettingupPartcreationto
10.1.500 SalesManagement ProductConfiguration 176676 Application aconfiguratorandruntheprocess

Page60
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


VerifyConfigurationsFixprogramtoupdatePcValueGrpRelatedToTableNameand
10.1.500 SalesManagement ProductConfiguration 176778 Application RelatedtoSysRowID(Alsofixedin10.1.400.x)
ConfiguratorPartCreationJobandQuotemethodrulesareexecutedinQuotes
10.1.500 SalesManagement ProductConfiguration 176826 Application whenhavingpartcreation
10.1.500 SalesManagement ProductConfiguration 176837 Application ConfiguratorRunTimeRefreshdynamiclistfunctionshouldnotbecasesensitive
ConfiguratorDynamicListsUnabletofullyreorderthelistvalueswhendeletinga
10.1.500 SalesManagement ProductConfiguration 176859 Application valuefromthelist
ConfiguratorLookUpNegativesandThousandsSeparatorpropertiesarenot
10.1.500 SalesManagement ProductConfiguration 177001 Application sharedwhenusingaTemplateColumnSet
ConfiguratorDesignerCommentedoutcodeinDynamiclistconditionsstillcaused
10.1.500 SalesManagement ProductConfiguration 177010 Tools inputstochange
ConfiguratorLookUpTheformatofcolumnsisnotupdatedontheTablesthatare
10.1.500 SalesManagement ProductConfiguration 177023 Application usingaTemplateColumnsSet
ConfiguratorDesignerReadOnlyExpressiondisplayssyntaxerrorsandcannotbe
10.1.500 SalesManagement ProductConfiguration 177029 Application addedtothepage
ConfiguratorLookUpErrormessageisdisplayedwhenclickingNototheprompt
10.1.500 SalesManagement ProductConfiguration 177033 Application regardingupdatingthecolumndetails
ConfiguratorLookUpErrorisdisplayedwhenenteringaLookupvaluetoaString
10.1.500 SalesManagement ProductConfiguration 177064 Application ColumnthatissetasNumbersOnly
ConfiguratorDesignerUnabletodeleteinputsthatarereferencedinacommented
10.1.500 SalesManagement ProductConfiguration 177068 Application expression
ConfiguratorEventsMultiLevelParentconfiguratorsarenotrunningpageleaveor
10.1.500 SalesManagement ProductConfiguration 177271 Application configurationcompleteevents

10.1.500 SalesManagement ProductConfiguration 177363 Application ConfiguratorRulesTooltipshouldnotdisplayanythingifthereisnothingtodisplay


VerifyConfigurationsPictureboxinputsusedinconfigurationscausetheverify
10.1.500 SalesManagement ProductConfiguration 177461 Application existingconfigurationsprocesstoerrorout(Alsofixedin10.1.400.x)
ConfiguratorCodeEditorRightclickingthevariablesareaofthecodeeditor
10.1.500 SalesManagement ProductConfiguration 177500 Application displaysobjectreferenceerror
10.1.500 SalesManagement ProductConfiguration 177818 Application ConfiguratorEntryRebuildsequencescorruptsthePcStruct.StructID
ConfiguratorConversionConvertPCInValuesprocessneedstoconvertYes/Noto
10.1.500 SalesManagement ProductConfiguration 177823 Application True/False
ConfiguratorConversionPcConvertDataFrom905needstoupdatetheformatstring
10.1.500 SalesManagement ProductConfiguration 177830 Application forcheckboxes
ConfiguratorEventsDescriptionoftheComboBoxisnotconsideredwhensetting
10.1.500 SalesManagement ProductConfiguration 177848 Application thevalueinOnLoadevents
ConfiguratorEventsComboBoxesarenottakingthevaluesetinConfiguratorOn
10.1.500 SalesManagement ProductConfiguration 177849 Application LoadedEvent

Page61
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


VerifyExistingConfigurationsAnerrorsoccurswhenrunningincustomer's
10.1.500 SalesManagement ProductConfiguration 178006 Application database(Alsofixedin10.1.400.x)
ConfiguratorDesignerItispossibletosavewhenaddinganewinputevenwhen
10.1.500 SalesManagement ProductConfiguration 178027 Application thenameisalreadyused
ConfiguratorDesignerButtonsdonottaketheproperLocationsandSizeeven
10.1.500 SalesManagement ProductConfiguration 178064 Application whenitisconfigured
ConfiguratorTestInputsErrorwhentestingtheinputsofaninspectionplan
10.1.500 SalesManagement ProductConfiguration 178065 Application configurator
ConfiguratorPartCreationPromptUsertoConfirmNewPartdoesnotworkforUse
10.1.500 SalesManagement ProductConfiguration 178188 Application SmartStringasthenewpartnumbermethod
VerifyExistingConfigurationsWhenusingSIV,thelogsarecallingJOBStothe
10.1.500 SalesManagement ProductConfiguration 178198 Application QUOTESrecords
ResourceGroupIftheoptionInformofOverloadisnotselected,theOverload
10.1.500 SalesManagement ProductConfiguration 178275 Application Informerstilldisplaysoverload
ConfiguratorPartCreationUOMnotsetproperlyforthenewmethodsmaterials
whenreplacingmaterialsthathavedifferentinventoryUOMs(Alsofixedin
10.1.500 SalesManagement ProductConfiguration 178325 Application 10.1.400.x)

VerifyExistingConfigurationsExceptionThefollowingisrequired:
10.1.500 SalesManagement ProductConfiguration 178598 Application MeasurementDescisdisplayedbutinputisReadOnlysoisnotnecessarytobefilled
VerifyExistingConfigurationsPartswithnopartcreationarenotbeingprocessed
10.1.500 SalesManagement ProductConfiguration 178632 Application (Alsofixedin10.1.400.x)
ConfiguratorImport/ExportCannotexportconfigurationsthathavealternate
10.1.500 SalesManagement ProductConfiguration 178720 Application methodswithmethodrulesonthem(Alsofixedin10.1.400.x)
ConfiguratorImport/ExportCannotexportwhenhavingmethodrulesinmultiple
10.1.500 SalesManagement ProductConfiguration 179354 Application revisions(Alsofixedin10.1.400.x)
ConfiguratorRunTimeOnFieldValidatingdoesnothaveaccesstoproposed
10.1.500 SalesManagement ProductConfiguration 179691 Application description
10.1.500 SalesManagement ProductConfiguration 179782 Application ConfiguratorDynamicListsDatasourceislockedonceaconditionisentered
ResourceGroupWhencontextmenuisused,theProductionCalendarformdoes
10.1.500 SalesManagement ProductConfiguration 179851 Application notloadthecalendarfromResourcegroup
ConfiguratorRunTimeSavedInputdescriptionisnotloadedwhenreconfiguring
10.1.500 SalesManagement ProductConfiguration 179953 Application (Alsofixedin10.1.400.x)
ConfiguratorDesignerLosefocusofthecontrolwhiletryingtosaveanemptyIDof
10.1.500 SalesManagement ProductConfiguration 180133 Application acontrol
10.1.500 SalesManagement ProductConfiguration 180240 Application ConfiguratorDesignerUnabletodeleteInputscommentedinOnPageEvents
EnterpriseConfiguratorServerProcessErrordisplaysandprocessstopsafter
synchronizinganenterpriseconfiguratorwithoperationsandusingcomponent
10.1.500 SalesManagement ProductConfiguration 180461 Application pricing(Alsofixedin10.1.400.x)

Page62
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


ConfiguratorPricingStackoverflowconditionwhenamultilevelconfiguratorhas
10.1.500 SalesManagement ProductConfiguration 180466 Application componentpricingatmultiplelevels
ConfiguratorDesignerGroupBoxisduplicatedandanerrormessageisdisplayed
10.1.500 SalesManagement ProductConfiguration 180865 Application whendeletingtheinputname
ConfiguratorDynamicListsDynamiclistformshouldswitchtotheDetailtabwhen
10.1.500 SalesManagement ProductConfiguration 181253 Application userclicksNewinthelistgridtopreventdatacorruption
ConfiguratorRunTimeUpdatingatargetentitytoequalthesmartstringvalue
10.1.500 SalesManagement ProductConfiguration 181262 Application doesnotworkwhencalledfromaMethodRule
10.1.500 SalesManagement ProductConfiguration 181426 Application ConfiguratorRunTimeDeployToEWArunsexpressions,butitshouldnot
10.1.500 SalesManagement ProductConfiguration 181429 Application ConfiguratorDynamicListsListitemlistshouldpopulateonlyforPredefinedLists
ConfiguratorDynamicListsUnabletomoveListItemsitemsupordownafter
10.1.500 SalesManagement ProductConfiguration 181430 Application deletingarow
ConfiguratorRulesMethodRulesentrydisplaysanolderrevisionforasubassembly
10.1.500 SalesManagement ProductConfiguration 181504 Application ontheParentPartsconfigurator(Alsofixedin10.1.400.x)
ConfiguratorRunTimeNotretrievingthesupplierbreakqtyvalueswhichare
10.1.500 SalesManagement ProductConfiguration 181550 Application relatedtoaSubcontractoperation
10.1.500 SalesManagement ProductConfiguration 181578 Application ConfiguratorTestRulesExceptiondisplayedwhentestingWavyRider
ConfiguratorDynamicListsPreviousvaluesarenotsavedwhenaNewDynamicList
10.1.500 SalesManagement ProductConfiguration 181672 Application isadded
ConfiguratorDesignerAlterDesignContainerwarningwhenmakingcodeanalysis
10.1.500 SalesManagement ProductConfiguration 181764 Application cleanup
10.1.500 SalesManagement ProductConfiguration 182168 Application ConfiguratorEntryCreateaConfiguratorCourseforaSaaSenvironment
10.1.500 SalesManagement ProductConfiguration 182331 Application ConfiguratorWAChangedalldynamictypestoEWAcompatibleones
ConfiguratorRunTimeInputvalidatedeventdoesnotstartwhenpagingbacktoa
10.1.500 SalesManagement ProductConfiguration 182477 Application previouspageandchangingtheinput
ConfiguratorGlobalVariablesDocumentRuleonaParentConfiguratordoesnot
10.1.500 SalesManagement ProductConfiguration 182595 Application settheGlobalValuefromaSubconfigurator(Alsofixedin10.1.400.x)
10.1.500 SalesManagement ProductConfiguration 182793 Application SQLInjectionwarningsinPCUpdateVersion
ConfiguratorEntryDeploytoEWAdisplaysanexceptionwhendeployingaNo
10.1.500 SalesManagement ProductConfiguration 182860 Application InputsConfigurator
ConfiguratorRunTimeAlternateMethodrulesarenothonoredinruntime(Also
10.1.500 SalesManagement ProductConfiguration 183025 Application fixedin10.1.400.x)
10.1.500 SalesManagement ProductConfiguration 183173 Application ConfiguratorDesignerTheNextnavigatorcontrolisdisabled
ConfiguratorRunTimeSavingaconfigurationerrorsoutwithapricingruleand
10.1.500 SalesManagement ProductConfiguration 183214 Application overridepricelistselected(Alsofixedin10.1.400.x)
10.1.500 SalesManagement ProductConfiguration 183326 Application EnterpriseConfiguratorServerProcessCodecleanupinECproject
ConfiguratorDynamicListsAnerrorisdisplayedwhenfirstcreatingaPredefined
10.1.500 SalesManagement ProductConfiguration 183423 Application DynamicListandthentryingtoaddanotheronewithBAQ,UDMorDLM

Page63
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


RegenerateConfigurationsAfterapproving,aconfiguratorprocessdoesnot
10.1.500 SalesManagement ProductConfiguration 183908 Application complete(Alsofixedin10.1.400.x)
ConfiguratorRunTimeDateandComboBoxeswithinitialvaluessetarenotsaved
10.1.500 SalesManagement ProductConfiguration 184033 Application withempty/nullvalueswhenreconfiguring
10.1.500 SalesManagement ProductConfiguration 184351 Application ConfiguratorTestInputsCannotnavigatethroughpagesafterclickingUndo
ConfiguratorRulesSetpartDefaultspullsinexpiredsupplierpricelistsforswapped
10.1.500 SalesManagement ProductConfiguration 184627 Application inmaterial(Alsofixedin10.1.400.x)
10.1.500 SalesManagement ProductConfiguration 184718 Application ConfiguratorCodeEditorRemoveValidateArgsCancelfromPageloadevent
ConfiguratorCodeEditorExpressionbuilderneedsJobMtl.SalvageQtyPerfield
10.1.500 SalesManagement ProductConfiguration 184952 Application addedtolist
ConfiguratorDesignerErrorwhenloadingaConfiguratorwithDynamicListusing
10.1.500 SalesManagement ProductConfiguration 185049 Application UDMafterrenamingtheUserDefinedMethod
ConfiguratorEventsOnfieldchangedinputeventisexecutedafterconfiguration
10.1.500 SalesManagement ProductConfiguration 185113 Application completeevent(Alsofixedin10.1.400.x)
ConfiguratorRunTimeUnhandledexceptionisdisplayedandunabletogetdetails
10.1.500 SalesManagement ProductConfiguration 185204 Application whenisaconfigurepartwithamaterialasplanasassemblyinQuoteEntry
RegenerateConfigurationsSaleskitisnotsetasConfigurablewhenhasa
10.1.500 SalesManagement ProductConfiguration 185439 Application componentwithaconfiguration
ConfiguratorConversionLookuptablesdecimalformatsupgradedfrom10.010.1
10.1.500 SalesManagement ProductConfiguration 185587 Application cangetsetwithinvalidformat
ConfiguratorDesignerRadiosetselectstheincorrectoptionunlessclickingdirectly
10.1.500 SalesManagement ProductConfiguration 186734 Application ontheradiobutton
ConfiguratorLookUpIndexerrorwhentryingtochangeformatondecimals
10.1.500 SalesManagement ProductConfiguration 186742 Application columns
ConfiguratorDynamicListsDynamiclistdoesnotconsiderthevalueoftheinputs
10.1.500 SalesManagement ProductConfiguration 187071 Application whentherearetoomanyonasinglecondition
ConfiguratorRulesSetPartDefaultsrulefunctionisnotpullinginthematerial
10.1.500 SalesManagement ProductConfiguration 187114 Application burdencostcorrectlyinquotes
ResourceGroupResourcesfromotherResourceGroupsarenotdisplayedinthe
10.1.500 SalesManagement ProductConfiguration 187284 Application treeviewwhenrefreshingthewindow
ResourceGroupDonotallowtomovearesourcealreadyassignedtoaJobtoa
10.1.500 SalesManagement ProductConfiguration 187988 Application differentSite
ConfiguratorEventsErrorwhenaonfieldchangedeventisfiredupfromadate
10.1.500 SalesManagement ProductConfiguration 188131 Application inputfield
ConfiguratorDesignerErrorwhensettingradiosetvisiblefromanonfieldchanged
10.1.500 SalesManagement ProductConfiguration 188513 Application event
10.1.500 SalesManagement ProductConfiguration 189105 Application ConfiguratorPricingApplicationstopsMultilevelPricingComponent
10.1.500 SalesManagement ProjectManagement 144738 Application ProjectEntryCurrencyconversionexchangerecordwasnotfoundforcurrency

Page64
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


ProjectEntryProjectCst.RecManPosted&ProjCstHistory.TotActRoundingarenot
10.1.500 SalesManagement ProjectManagement 148319 Application filled
ProjectEntryBurdenamountdisplaysas0onRevenueRecognitionafterProject
10.1.500 SalesManagement ProjectManagement 161457 Application BuildAnalysis
ProjectTrackerProjectJobDetailspanedoesnotdisplaythegreenepishape
10.1.500 SalesManagement ProjectManagement 165431 Application indicatingtheprojectjobisopen
ProjectEntryTheattachmentsintheWBSPhasesandTasksarenotcopiedintoa
10.1.500 SalesManagement ProjectManagement 170276 Application newduplicatedproject
10.1.500 SalesManagement ProjectManagement 171206 Application ProjectEntryProjecttabwithinJobEntryhasaconfusingbehavior
10.1.500 SalesManagement ProjectManagement 171634 Application ProjectEntryExceptionoftype'Ice.Lib.Framework.UIException'displayed
ProjectEntryCustomerIDisgreyedoutwithoutinfoafteraddingseverallineson
10.1.500 SalesManagement ProjectManagement 172965 Application SalesOrderEntryrelatedtothesameproject
10.1.500 SalesManagement ProjectManagement 175002 Application ProjectEntryBuildProjectAnalysisdoesnotsupportmorethan12fiscalperiods
ProjectAnalysisDoesnotexcludeclosedprojectswhenselectingspecificprojects
10.1.500 SalesManagement ProjectManagement 175013 Application orrunningforall
ProjectEntryTheProjectgetscorruptedwhendeletingtheorderlinebefore
10.1.500 SalesManagement ProjectManagement 175105 Application definedasProjectActivityBilling
ProjectEntryTheCustomerinSalesOrdersaddedtoprojectshouldmatchtheone
10.1.500 SalesManagement ProjectManagement 175191 Application definedinProjectBillingInvoicing(Alsofixedin10.1.400.x)
ProjectEntryExceptionofthe'Ice.Lib.Framework.UIException'typethrownwhen
10.1.500 SalesManagement ProjectManagement 175326 Application clickingtheManagerbutton(Alsofixedin10.1.400.x)
ProjectEntryBuildProjectAnalysisdoesnotconsiderCostPerdifferentthan/1
10.1.500 SalesManagement ProjectManagement 175331 Application whenthereisaPOLinked
ProjectTrackerCostDetailnotdisplayingsubcontracttogetherwithitsPartMaster
10.1.500 SalesManagement ProjectManagement 175560 Application referred
10.1.500 SalesManagement ProjectManagement 175579 Application ProjectEntryBuildProjectAnalysisprocessdisplaysanerrorinSystemMonitor
ProjectTrackerMoreSummaryProject/ActualODCcostdoesnotmatchwith
10.1.500 SalesManagement ProjectManagement 175988 Application ActualODCProjectCosts
ProjectEntryBuildProjectAnalysisdisplaysanerrorwhenthereisamismatch
10.1.500 SalesManagement ProjectManagement 176318 Application betweenjobhead.jobnum(uppercase)andParttran.jobnum(lowercase)
ProjectEntryBuildProjectAnalysisfinisheswitherrorswhenjobhead
10.1.500 SalesManagement ProjectManagement 176467 Application projprocessedcheckboxsetandprojprocesseddateisblank
10.1.500 SalesManagement ProjectManagement 176868 Application ProjectEntryBuildProjectAnalysisdisplaysanerrorandcannotbecompleted
10.1.500 SalesManagement ProjectManagement 176869 Application ProjectEntryBuildProjectAnalysisdoesnotrunforsomeprojects
ProjectEntryThefollowingmessagesaredisplayed:BeforeProcessJob&New
10.1.500 SalesManagement ProjectManagement 177121 Application ProcessJobsareInvertedintheTaskAgent
ProjectEntryMenuItemforBuildProjectAnalysisprocessinJobManagement
10.1.500 SalesManagement ProjectManagement 177224 Application shouldbeBuildProjectAnalysis

Page65
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


ProjectEntryTheActualCostsofthematerialsareincrementedeverytimetheBPA
10.1.500 SalesManagement ProjectManagement 177364 Application processruns
ProjectEntryThecostsofthelowerphasesareignoredbytheBPAprocessinthe
10.1.500 SalesManagement ProjectManagement 177761 Application TotalProjectCost
ProjectAnalysisExportIfajobisisnotlinkedtoaWBSphase,BuildProject
10.1.500 SalesManagement ProjectManagement 178966 Application Analysis,recalculatesitasifwereanewjob
ProjectEntryClearAnalysisdoesnotcompleteonverylargeprojects(Alsofixedin
10.1.500 SalesManagement ProjectManagement 179581 Application 10.1.400.x)
ProjectEntryPublicmethodsinpartialclassneedtobemadeprivateortheywill
10.1.500 SalesManagement ProjectManagement 180080 Application becomeservicemethods
10.1.500 SalesManagement ProjectManagement 181213 Application ProjectEntryBPAdoesnotcalculatetheActualMaterialCosts
10.1.500 SalesManagement ProjectManagement 181250 Application ProjectEntryErrordisplayedwhenselectingProjectJob
ProjectEntryWhenrunningBuildProjectAnalysisfordifferentProjects
10.1.500 SalesManagement ProjectManagement 182421 Application simultaneouslyUltraisgettingtimeouterrors
ProjectEntryItisnotallowedtoduplicateProjectsusingspecificWBSIDs(Also
10.1.500 SalesManagement ProjectManagement 183258 Application fixedin10.1.400.x)
ProjectEntryWhenaddingaSalesOrderinaWBSPhase,theOrderinformationis
10.1.500 SalesManagement ProjectManagement 183360 Application notdisplayedproperlyintheRelated>Ordertab
ProjectEntryBuildProjectAnalysiscalculatesincorrectActualMaterialandBurden
10.1.500 SalesManagement ProjectManagement 184453 Application Costs
ProjectEntryDonotallowtochangethesalesorderwhenithasadifferent
10.1.500 SalesManagement ProjectManagement 186066 Application customerthanthepreviouslySOaddedintheproject
10.1.500 SalesManagement ProjectManagement 186733 Application ProjectEntryIndexerrorwhennestedWBSphasesaredeleted
ProjectEntrySalesOrderisnotbeingunlinkedfromTime&Materialswhenproject
10.1.500 SalesManagement ProjectManagement 186835 Application levelinvoicingmethodischanged
Opportunity/QuoteEntrySomeIssuesrelatedtotabkeyhappeninOpportunity
10.1.500 SalesManagement QuoteManagement 167562 Application QuoteEntryinEWA
Opportunity/QuoteEntryEWAWhenenteringanUnitPriceinaQuoteLineafter
10.1.500 SalesManagement QuoteManagement 168268 Application changingaProductGroup,anerrorisdisplayed
Opportunity/QuoteEntryDiscountfrompricelistforproductgroupisnotapplied
10.1.500 SalesManagement QuoteManagement 171254 Application toconfiguratorpricingruleprice(Alsofixedin10.1.400.x)
Opportunity/QuoteEntryTaborderfocusisignoredatTypefieldPercentage
10.1.500 SalesManagement QuoteManagement 171386 Application selectioninMisccharges(EWA)
Opportunity/QuoteEntryMaterialCostdoesnotconsiderMinimumCostinthe
10.1.500 SalesManagement QuoteManagement 173112 Application worksheet
Opportunity/QuoteEntry"Doyouwanttorefreshthebreakquantities"message
10.1.500 SalesManagement QuoteManagement 173612 Application isincorrectlydisplayedafterreenteringaPartinaQuoteLine
Opportunity/QuoteEntryForQuoteLineUnitPricenotkeptwhenhavingParts
10.1.500 SalesManagement QuoteManagement 173633 Application withinaPriceList

Page66
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


Opportunity/QuoteEntryLine>QtybrakegriddisplaysaDocUnitPricewithout
10.1.500 SalesManagement QuoteManagement 173656 Application rounding
Opportunity/QuoteEntryUnitCostisnotupdatedwhenPressingRefreshonprice
10.1.500 SalesManagement QuoteManagement 173984 Application breaks
Opportunity/QuoteEntrySubassemblywithanothersubassemblyreappearafter
10.1.500 SalesManagement QuoteManagement 174041 Application deleted
PartTrackerOverlaidPCIDsarestilldisplayedattachedtotheitemsafterthe
10.1.500 SalesManagement QuoteManagement 174481 Application OverlayPCIDLabelvalidateprocess
JobTrackerUserIDandTimecolumnsarenotdisplayedwhenAuditLogformis
10.1.500 SalesManagement QuoteManagement 174552 Application launched
Opportunity/QuoteEntryDeletingaKitPartfromQuotesortsDisplaySequence
10.1.500 SalesManagement QuoteManagement 174586 Application incorrectly
Opportunity/QuoteEntryUnabletocreateSalesOrderifRefreshWorksheeton
10.1.500 SalesManagement QuoteManagement 174724 Application DemandissetasTrue
10.1.500 SalesManagement QuoteManagement 175110 Application Opportunity/QuoteEntryStandardizethegetofNextQuoteAsm.AssemblySeq
Opportunity/QuoteEntryOpportunity/QuoteEntryQuoteWorksheetCost
10.1.500 SalesManagement QuoteManagement 175133 Application CalculationsdonotconsiderScrapSubContractQuantities
Opportunity/QuoteEntryUsercanenterMaintenanceoperations(whichare
10.1.500 SalesManagement QuoteManagement 175185 Application invalidforthisscreen)intheMfgDetails
Opportunity/QuoteEntryEpishapeCreditHoldisnotdisplayed,ifthecustomer
10.1.500 SalesManagement QuoteManagement 175214 Application reachesthecreditlimit
Opportunity/QuoteEntryNotdisplayingUnitPricefromPartwhenGenerate
10.1.500 SalesManagement QuoteManagement 175412 Application QuantitiesFromPriceBreaksisoff
Opportunity/QuoteEntryUponchangingtheMtlBurdenRateto0%,theBurden
10.1.500 SalesManagement QuoteManagement 175604 Application Unitcostdoesnotupdated
JobTrackerMaterialserialnumbersretrievedviajobreceipttojobsitetransfernot
10.1.500 SalesManagement QuoteManagement 175715 Application retrievingonjobtracker
Opportunity/QuoteEntrySecondLevelsubassemblyisnotcopiedwhen
10.1.500 SalesManagement QuoteManagement 176174 Application drag/dropfromMethods

10.1.500 SalesManagement QuoteManagement 176176 Application JobTrackerTheserialsarenotdisplayedintheserialtabwhenaJobtoJobismade


Opportunity/QuoteEntryMemoryCacheoptionselectionchangesLabor
10.1.500 SalesManagement QuoteManagement 176626 Application ReportingResourceinformation
10.1.500 SalesManagement QuoteManagement 176687 Application WhenCopyingLinefromanotherQuote,dataisnotdisplayeduntilrefreshingform
10.1.500 SalesManagement QuoteManagement 176688 Application WhenCopyLinefromanotherQuoteusingOpStdnotgettingthecorrectvalues
Opportunity/QuoteEntryValidSalespersonisrequiredifthereisnotoneassigned
10.1.500 SalesManagement QuoteManagement 177074 Application tothecustomer
Opportunity/QuoteEntry(EWA)WhentryingtocopylinesfromaQuoteto
10.1.500 SalesManagement QuoteManagement 177164 Application another,theQuoteLineSearchscreendoesnotdisplayresults

Page67
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


PurchaseOrderTrackerIndex0erroropeningAPInvoiceTrackerusingContext
10.1.500 SalesManagement QuoteManagement 177494 Application Menu(Alsofixedin10.1.400.x)
Opportunity/QuoteEntryMaterialcostiscalculatedincorrectlyonprintedQuote
10.1.500 SalesManagement QuoteManagement 177511 Application WorksheetwhenMFGcostelementsisnotselected(Alsofixedin10.1.400.x)
Opportunity/QuoteEntryExtendedPriceoftheSalesKitlinedoesnotmatchthe
10.1.500 SalesManagement QuoteManagement 177583 Application TotalPriceoftheKitComponents
Opportunity/QuoteEntryShipTobuttonsearchdoesnotdisplaytheShipToinfo
10.1.500 SalesManagement QuoteManagement 177682 Application fromathirdpartycustomer
Opportunity/QuoteEntryProductgroupdiscountnotretrievedwhenthe
10.1.500 SalesManagement QuoteManagement 177858 Application discountpricelistisaddedtothecustomergroup(Alsofixedin10.1.400.x)
Opportunity/QuoteEntryHeaderlevelmiscchargesnotcalculatedproperlyafter
10.1.500 SalesManagement QuoteManagement 177917 Application doingchangestolines
Opportunity/QuoteEntryNeedtoupdatetheLikepropertyforEstimationUserID
10.1.500 SalesManagement QuoteManagement 177982 Application columninServiceDesigner
Opportunity/QuoteEntryThemintotalcostissetto0ifasupplierpricelistexists
10.1.500 SalesManagement QuoteManagement 178045 Application forthematerialselected
Opportunity/QuoteEntrySystemdisplaysanerrorwhenaddingpartonthefly
10.1.500 SalesManagement QuoteManagement 178128 Application (Alsofixedin10.1.400.x)
PartTrackerPartAllocationlinesarenotsortedcorrectlybyOrderLine
10.1.500 SalesManagement QuoteManagement 178174 Application (descendinginsteadofascending)
Opportunity/QuoteEntry"Doyouwanttorefreshthebreakquantities?"message
10.1.500 SalesManagement QuoteManagement 178282 Application displaysbeforeselectingapricelist
Opportunity/QuoteEntryWhenselectingthesecondPriceList,thepreviously
10.1.500 SalesManagement QuoteManagement 178358 Application selectedDiscountPriceListdisappears(Alsofixedin10.1.400.x)
Opportunity/QuoteEntryThetaborderofdetailandworksheetpanelsisoutof
10.1.500 SalesManagement QuoteManagement 178365 Application sequence
Opportunity/QuoteEntryUnabletocreatequoteswithoutmulticurrencylicense
10.1.500 SalesManagement QuoteManagement 178546 Application (Alsofixedin10.1.400.x)
Opportunity/QuoteEntryUnabletosetasubassemblypartnumberinamethod
10.1.500 SalesManagement QuoteManagement 178617 Application rule
Opportunity/QuoteEntryBestCase,WorstCaseandExpectedTotalsarenot
10.1.500 SalesManagement QuoteManagement 178870 Application takingtheproperDiscount
Opportunity/QuoteEntryPriceListandDiscountPriceListarenotloadedwith
10.1.500 SalesManagement QuoteManagement 178914 Application defaultsaccordingtotheProductGroupused(Alsofixedin10.1.400.x)
Opportunity/QuoteEntryThefollowingerroroccurs:"Thisisaduplicateentryof
10.1.500 SalesManagement QuoteManagement 179024 Application anexistingrecord"whenchangingtasksets(Alsofixedin10.1.400.x)
Opportunity/QuoteEntryQuotecannotbecreated;Errorappears'Objectmapping
couldnotbefoundforTypewithidentity'Ice.Tables.Table'.'(Alsofixedin
10.1.500 SalesManagement QuoteManagement 179148 Application 10.1.400.x)

Page68
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


Opportunity/QuoteEntryDocunitpricecalculationisaffectedbyexchangerate
10.1.500 SalesManagement QuoteManagement 179214 Application whenselectingoverridepricelist(Alsofixedin10.1.400.x)
Opportunity/QuoteEntrySystemdisplaysanerrorwhenaddingpartonthefly
10.1.500 SalesManagement QuoteManagement 179238 Application (Alsofixedin10.1.400.x)
Opportunity/QuoteEntryTasktreeincorrectlyupdatedwhenswitchingbetween
10.1.500 SalesManagement QuoteManagement 179533 Application tasks
Opportunity/QuoteEntryNexttaskfielddisableswhencompletingataskand
10.1.500 SalesManagement QuoteManagement 180036 Application selectinglosethennextoption
Opportunity/QuoteEntryCompletingarelatedtasksetsthewinoptionand
10.1.500 SalesManagement QuoteManagement 180042 Application displaysthewinreasons
Opportunity/QuoteEntryUnabletoManuallyaddtasksinQuoteTaskTreedueto
10.1.500 SalesManagement QuoteManagement 180136 Application anerror
Opportunity/QuoteEntryDoesnotopen;messageappearswhentheJob
10.1.500 SalesManagement QuoteManagement 180585 Application Managementmoduleisdisabled(Alsofixedin10.1.400.x)
PartTrackerObjectReferenceerrorwhenretrievinginfofromPartLocations/
10.1.500 SalesManagement QuoteManagement 180766 Application Inspection
Opportunity/QuoteEntryIssuewhileworkingwithphantompartsand
10.1.500 SalesManagement QuoteManagement 180879 Application subassemblies
Opportunity/QuoteEntryUnabletousetasksthatwerealreadycompleted(Also
10.1.500 SalesManagement QuoteManagement 180880 Application fixedin10.1.400.x)
Opportunity/QuoteEntryTasksetcannotbechangedaftercreateaQuotefrom
10.1.500 SalesManagement QuoteManagement 181280 Application customerentryortracker
Opportunity/QuoteEntryErrorisdisplayedonQuoteFormreportaftercreatinga
10.1.500 SalesManagement QuoteManagement 181641 Application newReportStyle
Opportunity/QuoteEntryOnBeforeAdapterMethodandOnAfterAdapterMethod
arenotimplementedinsomepublicmethodsoftheadapter(Alsofixedin
10.1.500 SalesManagement QuoteManagement 181644 Application 10.1.400.x)
Opportunity/QuoteEntryWhatIfScheduleProductionQuantityfieldaccepting
10.1.500 SalesManagement QuoteManagement 181878 Application only5chars
Opportunity/QuoteEntryShouldnotbeabletocompleteaparenttaskthathas
10.1.500 SalesManagement QuoteManagement 181922 Application mandatorychildrentasks
Opportunity/QuoteEntryPhantomsmaterialsdoesnotworkasinJobentrywhen
10.1.500 SalesManagement QuoteManagement 181977 Application addedinMFGDetailstab
Opportunity/QuoteEntryRelatedtasksarenotaddedwhenloopingtroughthe
10.1.500 SalesManagement QuoteManagement 181993 Application milestones
10.1.500 SalesManagement QuoteManagement 182008 Application Opportunity/QuoteEntryNotallowingtoaddRunoutpartsasquotematerials
Opportunity/QuoteEntryUnabletoeditQty/Performaterialwithupdatedpart
10.1.500 SalesManagement QuoteManagement 182026 Application class(Alsofixedin10.1.400.x)

Page69
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


Opportunity/QuoteEntryNexttaskcombodisplaysallmilestonesinsteadofonly
10.1.500 SalesManagement QuoteManagement 182060 Application showingtheonesrelatedtotheMilestoneinfocus(Alsofixedin10.1.400.x)
Opportunity/QuoteEntryWhendeletingLineSpecificCharge,thelineisdeleted
10.1.500 SalesManagement QuoteManagement 182120 Application aswell
10.1.500 SalesManagement QuoteManagement 182255 Application Opportunity/QuoteEntryWhenclearingadropdownlist,anerrorisdisplayed
Opportunity/QuoteEntryReasonisnotvalidatedwhencompletingaTaskin
10.1.500 SalesManagement QuoteManagement 182284 Application QuoteEntry
Opportunity/QuoteEntryTreeincorrectlydisplaysnextmilestoneswhenhaving
10.1.500 SalesManagement QuoteManagement 182381 Application twomilestoneswithsametaskID(Alsofixedin10.1.400.x)
Opportunity/QuoteEntryOverridePriceListwillnotupdatethePricelistwhen
10.1.500 SalesManagement QuoteManagement 182450 Application changingtoadifferentProductGroup
Opportunity/QuoteEntryNotallowingtodrag/dropoperationsfromadifferent
10.1.500 SalesManagement QuoteManagement 182535 Application Method/Quote
Opportunity/QuoteEntryQuoteFormreportComponentPriceisnotprintedfor
10.1.500 SalesManagement QuoteManagement 182769 Application KitComponents(Alsofixedin10.1.400.x)
10.1.500 SalesManagement QuoteManagement 182889 Application Opportunity/QuoteEntryIncorrectlinepricecalculationforSalesKits
Opportunity/QuoteEntryIncorrectdiscountcalculationsforpartwithpricegroup
10.1.500 SalesManagement QuoteManagement 182907 Application assigned(Alsofixedin10.1.400.x)
Opportunity/QuoteEntryIncorrectdiscountcalculationsforpartwithpricegroup
10.1.500 SalesManagement QuoteManagement 183074 Application assigned(Alsofixedin10.1.400.x)
10.1.500 SalesManagement QuoteManagement 183084 Application Opportunity/QuoteEntryNopricecalculationforSalesKits
Opportunity/QuoteEntryDeletingasubassemblyfromalineisresetting
10.1.500 SalesManagement QuoteManagement 183104 Application QuoteAsm.NextPeerforpreviousline
Opportunity/QuoteEntryErrorisdisplayedafterselectingPart/RevforanewCo
10.1.500 SalesManagement QuoteManagement 183371 Application Part(Alsofixedin10.1.400.x)
Opportunity/QuoteEntryPricePerisnotupdatedQuantitiesgridanderroris
10.1.500 SalesManagement QuoteManagement 183372 Application displayedwhenchangingthePricePerinaNewQtyBreak
Opportunity/QuoteEntryNotabletogetdetailsinMfgDetailsforconfigurable
10.1.500 SalesManagement QuoteManagement 183677 Application part
Opportunity/QuoteEntryPartialMatchingContactscreendisplayedwhen
10.1.500 SalesManagement QuoteManagement 183910 Application selectingaspecificPerson/Contact
Opportunity/QuoteEntryAnerrorisdisplayedaftertrycreatethesamecontact
10.1.500 SalesManagement QuoteManagement 184616 Application twice
10.1.500 SalesManagement QuoteManagement 184983 Application PartTrackerImages,addedasAttributetothePart,arenotdisplayed
Opportunity/QuoteEntryWithoutCRMLicense,CustomerandContactarenot
10.1.500 SalesManagement QuoteManagement 186496 Application loadedautomaticallywhenyousearchandselectthem
10.1.500 SalesManagement QuoteManagement 187066 Application Opportunity/QuoteEntryResource'sLaborCostnotpresentinLineWorksheet
JobTrackerErrorisdisplayedwhenclickingRetrieveinJobTracker/Part
10.1.500 SalesManagement QuoteManagement 187193 Application Locations/WIPTab

Page70
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


Opportunity/QuoteEntryForconfiguredpartsmanualchangeofdiscountamount
10.1.500 SalesManagement QuoteManagement 187339 Application changesto0onSave
Opportunity/QuoteEntryTasksgetcorruptedifyouchangethecustomerrecord
10.1.500 SalesManagement QuoteManagement 187747 Application onceitissaved
Opportunity/QuoteEntryDiscountiscalculatedincorrectlyandPotentialisnot
10.1.500 SalesManagement QuoteManagement 188242 Application roundedright
Opportunity/QuoteEntryBPMthatsetsquantityincopiedquotelinesdoesnot
10.1.500 SalesManagement QuoteManagement 188664 Application workwithjobcommentsfields
Opportunity/QuoteEntryWhenaddingaNewTaskandselectingaNextTask,an
10.1.500 SalesManagement QuoteManagement 189225 Application errorisdisplayed:NextTaskSeqreferencesinvalidvalue
10.1.500 SalesManagement QuoteManagement 189249 Application Opportunity/QuoteEntryUnabletomanuallycreateacontractrenewalquote
10.1.500 SalesManagement QuoteManagement 189467 Application Opportunity/QuoteEntryDoesn'tRetrievecommentswhencreateanOrder
AdvancedMaterial MaterialRequestQueueMaterialmovementtoaSharedWarehousecreatesaSTK
10.1.500 SupplyChainManagement Management 156200 Application STKtransaction
AdvancedMaterial MaterialRequestQueuePackStationisnotassignedtoqueuerecordwhenusing
10.1.500 SupplyChainManagement Management 165411 Application Allocatebylot/Bin
AdvancedMaterial
10.1.500 SupplyChainManagement Management 173380 Application GetRequestEWAExtratransactionarecreatedwhenswitchingtoJobOperations
AdvancedMaterial GetRequestCannotenterarequestquantity>0duethefollowingmessage"'The
10.1.500 SupplyChainManagement Management 173546 Application numberofpiecesenteredexceedsthenumberofpiecesremainingonthe
AdvancedMaterial ReturnAssembly/MaterialRequestUsingtheASMbuttoncausesmisbehaviorin
10.1.500 SupplyChainManagement Management 176882 Application therequestgrid
AdvancedMaterial MaterialRequestQueueBlankerrormessagewhencurrentuserisnotassociated
10.1.500 SupplyChainManagement Management 177852 Application withanemployee
AdvancedMaterial
10.1.500 SupplyChainManagement Management 180578 Application MaterialQueueManagerItispossibletoassignPriority0
AdvancedMaterial MaterialRequestQueueINSSTKtransactionsdonotdisplayLotNumbervalueset
10.1.500 SupplyChainManagement Management 181084 Application onRMADispositions
AdvancedMaterial MaterialRequestQueueTransactionsmarkedasVisible=Falseareretrievedand
10.1.500 SupplyChainManagement Management 181286 Application displayed
AdvancedMaterial MoveInventoryRequestCrossReferencePartvaluesnotacceptedinPartfield
10.1.500 SupplyChainManagement Management 181530 Application (Alsofixedin10.1.400.x)
AdvancedMaterial MaterialRequestQueueLotNumbervaluerequestedonDMRASMtransaction
10.1.500 SupplyChainManagement Management 183315 Application records
AdvancedMaterial
10.1.500 SupplyChainManagement Management 183575 Application MaterialRequestQueueSortingisnotdonebytransactionsequence
AdvancedMaterial
10.1.500 SupplyChainManagement Management 184558 Application MaterialRequestQueueGeneratePCIDdisplayinginactivecontrolIDs

Page71
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


AdvancedMaterial MoveInventoryRequestAllowsselectionofwhsethatisinvalidforpartand
10.1.500 SupplyChainManagement Management 184968 Application cannotbeprocessedinMtlQueue
AdvancedMaterial
10.1.500 SupplyChainManagement Management 185021 Application MoveWIPErrordisplayedwhenselectingOperationdropdownlist
AdvancedMaterial MaterialRequestQueueDoesnotcreatelotnumberonJobReceiptToInventory
10.1.500 SupplyChainManagement Management 186838 Application whenProcessbuttonisclicked
AdvancedMaterial MaterialRequestQueueStockPOreceiptputawaydoesnotusenegativeinventory
10.1.500 SupplyChainManagement Management 187058 Application settings
AdvancedMaterial RollbackMaterialRequestQueueJobMaterialandJobSubcontractPOreceipt
10.1.500 SupplyChainManagement Management 187500 Application putawaydoesnotusenegativeinventorysettings
AdvancedMaterial MoveMaterialRequestErrorwhenmovingMaterialtoWhse/Bindifferentthan
10.1.500 SupplyChainManagement Management 188013 Application thedefault
AdvancedMaterial ProcessByIDSameTransactionRecordopenedfromdifferentscreens,duplicates
10.1.500 SupplyChainManagement Management 188614 Application OrderQuantityvalue
10.1.500 SupplyChainManagement HandheldMES 161797 Application HHMyMaterialQueueQuantitycolumnnotdisplayedonthePartLookupgrid
10.1.500 SupplyChainManagement HandheldMES 163982 Application HHTransferOrderShipContextMenushouldnotappear
10.1.500 SupplyChainManagement HandheldMES 166414 Application HHPOReceiptsEpiShapeforreceiptstatusisnotdisplayedwiththecorrectlabel
10.1.500 SupplyChainManagement HandheldMES 166625 Application HHContainerReceiptsIrrelevantfieldsaredisplayedinthegrid
10.1.500 SupplyChainManagement HandheldMES 169666 Application HHPackoutAnerrorMsgwasdisplayedwhentryingtoFreightapack
HHPackoutErrorwhentryingtocreateSerialNumbershavingahighPackIDvalue
10.1.500 SupplyChainManagement HandheldMES 178258 Application (Alsofixedin10.1.400.x)
HHCustomerMassShipmentUnabletoshipreleasestodifferentShipTo'sthanthe
10.1.500 SupplyChainManagement HandheldMES 179603 Application firstreleasefromSalesOrder
HHMaterialQueueFormcaptiondisplaysformatplaceholdersifnorecordsare
10.1.500 SupplyChainManagement HandheldMES 181719 Application available
HHGeneralHandheldscreendoesnotopenifdocumentmanagementlicenseis
10.1.500 SupplyChainManagement HandheldMES 183494 Application notenabled(Alsofixedin10.1.400.x)
10.1.500 SupplyChainManagement HandheldMES 185416 Application HHPackVerifyByPCIDPackfieldisenabledafterprocessaPCID
HHPackVerifyByPCIDIncorrectmessageisdisplayedwhenincludeaPCIDwitha
10.1.500 SupplyChainManagement HandheldMES 185426 Application Partthatisnotonthepack
10.1.500 SupplyChainManagement HandheldMES 185524 Application HHPackVerifyByPCIDNotallwarningerrorsaresoundingwithbeeps
HHPackVerifyByPCIDIncorrectErrorwhenValidatethePackcontainsallthechild
10.1.500 SupplyChainManagement HandheldMES 185577 Application PartsassociatedtotheMIXEDMASTER
HHPackVerifyByPCIDAdditionalcheckneededforDockingStationonShipDtl
10.1.500 SupplyChainManagement HandheldMES 185598 Application againstLabelValuetableforEDI
HHPackVerifyByPCIDChildPkgControlHeader.PackNumdoesnottakethe
10.1.500 SupplyChainManagement HandheldMES 185608 Application PkgControlItem.PackNum
HHPackVerifyByPCIDIncorrecterrordisplayedwhenenteringaPCIDthatdoes
10.1.500 SupplyChainManagement HandheldMES 185697 Application notmatch

Page72
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


10.1.500 SupplyChainManagement HandheldMES 185736 Application HHPackVerifyByPCIDAfterRemoveathePCIDPickedinventoryiscorrupted
10.1.500 SupplyChainManagement HandheldMES 185963 Application HHPackVerifyByPCIDPCIDCountisincrementingincorreclty
HHPackVerifyByPCIDDonotrequirePackNumonPkgControlHeaderrecordfor
10.1.500 SupplyChainManagement HandheldMES 186577 Application thePCIDbeingscanned
HHProcessByQueueIDLookupbuttonshouldpopulateToLocationforPO
10.1.500 SupplyChainManagement HandheldMES 188867 Application Receipts
10.1.500 SupplyChainManagement HandheldMES 189689 Application HHPackVerifyByPCIDUnabletoaddaShipDtllinewhereRelNumisgreaterthan1
10.1.500 SupplyChainManagement InventoryManagement 71236 Application InventoryTransferOnhandquantitydoesnotgetrefreshedifchangingwarehouse
PartTransactionHistoryTrackerAvalidationofnoemptyrequiredfieldCutOff
10.1.500 SupplyChainManagement InventoryManagement 124170 Application Date
AllocationWaveTrackerNoinformationisloadedwhenpressingtabatthe
10.1.500 SupplyChainManagement InventoryManagement 163263 Application allocationwavetextfield
PackageControlIDConfigChangeDataTypeofBTGenPCID.PCIDItemSeqfromint
10.1.500 SupplyChainManagement InventoryManagement 163287 Application tobigint(long/Int64)
10.1.500 SupplyChainManagement InventoryManagement 163512 Application SerialNumberTrackerNotreturningUDcolumnsvaluesintheListgrid
PackageControlIDConfigurationallowssavingandmakinginvalidconfigurations
10.1.500 SupplyChainManagement InventoryManagement 165966 Application active
PackageControlMaintenancePCIDCustomerContainerInfotab\notdisplaying
10.1.500 SupplyChainManagement InventoryManagement 169782 Application information
SerialNumberHHserialnumberselectformdoesnotissueanerroriftheSerialis
10.1.500 SupplyChainManagement InventoryManagement 169784 Application PreventDeselect=True
CostAdjustmentCostingIDfieldinListGridshouldbereadonly,EntryPersonlabel
10.1.500 SupplyChainManagement InventoryManagement 169841 Application inListGridshouldberenamedto"Reference"
ManagedInventoryStockStatusReportFiltertabdisplaysanIDof0oremptyfor
10.1.500 SupplyChainManagement InventoryManagement 171387 Application repeatedelementsinthegridandfilteringisnotapplied
ManagedInventoryStockStatusReportWarehousesearchdisplayingall
10.1.500 SupplyChainManagement InventoryManagement 171391 Application warehousesforallsites
InventoryUsageReportFiltertabdisplaysanIDof0forrepeatedelementsinthe
10.1.500 SupplyChainManagement InventoryManagement 171413 Application gridandnothingisfiltered
10.1.500 SupplyChainManagement InventoryManagement 171962 Application PackageControlIDAdHocPCID2ndpassissues
UOMSplit/MergeConversioncannotbemadebetweenanoBaseUOMto
10.1.500 SupplyChainManagement InventoryManagement 172386 Application anothernonBaseUOM(Alsofixedin10.1.400.x)
SupplierMaintenanceEWAUserisabletosaveGeneralInternationalinformation
10.1.500 SupplyChainManagement InventoryManagement 172546 Application withaninvalidCountrycode
AdjustReturnContainerlibTheprocessneedstodonegativeinvandallocations
10.1.500 SupplyChainManagement InventoryManagement 172629 Application validations
MassReturnfromMfgOriginalFIFOlayersshouldberestoredinsteadofusingan
10.1.500 SupplyChainManagement InventoryManagement 172709 Application averageunitcostinanewFIFOlayer

Page73
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


PackageControlMaintenancePCIDAfteropeningwithcontextmenu,thescreenis
10.1.500 SupplyChainManagement InventoryManagement 173326 Application displayedemptywithoutthePCIDselected
ObsoleteStockReportTheNewbuttonforthePartClasstabdoesnotgeneratea
10.1.500 SupplyChainManagement InventoryManagement 173335 Application newrow
10.1.500 SupplyChainManagement InventoryManagement 173581 Application StockStatusReportMessagehardcodedonSystemMonitor
PackageControlPCIDPartBinSearchRemovefiltersthatpreventPCIDqtysfrom
10.1.500 SupplyChainManagement InventoryManagement 174441 Application displayinginsearchresults
InTransitStockStatusReportAddaSitefiltertothereport(Alsofixedin
10.1.500 SupplyChainManagement InventoryManagement 175006 Application 10.1.400.x)
10.1.500 SupplyChainManagement InventoryManagement 175031 Application CostAdjustmentCostMethodfieldisrightjustified
PackageControlIDInventoryTransferPCIDwithSTATUSSHIPPEDismovedwithout
10.1.500 SupplyChainManagement InventoryManagement 175111 Application restriction
SSRSCountAccuracyReportQuantitiesarenotdisplayedinthecorrectcolumn
10.1.500 SupplyChainManagement InventoryManagement 175183 Application (Alsofixedin10.1.400.x)
10.1.500 SupplyChainManagement InventoryManagement 175195 Application LotPartLotAttributeEntryCannotmakeCustomizationswithdefaultTools
10.1.500 SupplyChainManagement InventoryManagement 175201 Application PartTransactionHistoryTrackerIndex0iseithernegativeoraboverowscount
10.1.500 SupplyChainManagement InventoryManagement 175206 Application InventoryTransferOnhandUOMfieldsareempty
10.1.500 SupplyChainManagement InventoryManagement 175219 Application InventoryTransferErrormessagescontainspellingerrors
10.1.500 SupplyChainManagement InventoryManagement 175278 Application InventoryTransferInvalidwarehousemessageisdisplayedtwice
10.1.500 SupplyChainManagement InventoryManagement 175291 Application InventoryTransferBinsearchdisplaysQOHas0formultipleUOMparts
PackageControlIDAdhocPCIDNotperformingnegativeinventorycheckcorrectly
10.1.500 SupplyChainManagement InventoryManagement 175307 Application whengenerating>1PCID
PackageControlIDJobReceiptToInventoryJobreceipttoinventoryisnotusing
10.1.500 SupplyChainManagement InventoryManagement 175419 Application standardBinsearch
QuantityAdjustmentUsershouldnotbeallowedtoadjustasharedwarehouse
10.1.500 SupplyChainManagement InventoryManagement 175471 Application ownedbyaSitetheyarenotauthorizedfor
PackageControlIDAdhocPCIDInternalPartiscorruptedwhengeneratingPCID;it
10.1.500 SupplyChainManagement InventoryManagement 175620 Application isusingthedefaultPackagecodeselectedinthePart
10.1.500 SupplyChainManagement InventoryManagement 175698 Application JobReceipttoJobGeneratingpartwiprecordwhenjobsareindifferentsites
PackageControlIDPartialPCIDQtypercontainerdefaultstocontainerqty
10.1.500 SupplyChainManagement InventoryManagement 175863 Application insteadof0(Alsofixedin10.1.400.x)
PackageControlIDJobReceiptToInventoryWarehouseDDLdisplayswarehouses
10.1.500 SupplyChainManagement InventoryManagement 175878 Application fromothersites
PackageControlIDJobReceiptToInventoryRetrievingPCIDslocatedinadifferent
10.1.500 SupplyChainManagement InventoryManagement 175880 Application Site
PackageControlIDJobReceiptToInventoryPreviousPCIDinfoisclearedwhen
10.1.500 SupplyChainManagement InventoryManagement 175881 Application processisclicked
10.1.500 SupplyChainManagement InventoryManagement 175882 Application PackageControlIDJobOutputRetrievingpartialsfromothersites
10.1.500 SupplyChainManagement InventoryManagement 175959 Application ExcessStockProvisionReportAttemptedtodividebyzero

Page74
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


PKGPCIDReturnableContainerAdjustmentSharedwarehousesownedbyanother
10.1.500 SupplyChainManagement InventoryManagement 175995 Application sitenotdisplayinginDDL
SlowMovingStockReportAfterinstallingOneOffSCR166380,reportshows
10.1.500 SupplyChainManagement InventoryManagement 176012 Application negativeUnitPricevalues(Alsofixedin10.1.400.x)
PKGPCIDReturnableContainerAdjustmentErrormessagesdonotmatchwhat
10.1.500 SupplyChainManagement InventoryManagement 176036 Application wasspecifiedinstory
ControlIDExtractExtractPCIDlogicdoesnotgetthecorrectstring,sothePCIDis
10.1.500 SupplyChainManagement InventoryManagement 176070 Application notfound(Alsofixedin10.1.400.x)
PKGPCIDReturnableContainerAdjustmentBindefaultingtoprimarybininsteadof
10.1.500 SupplyChainManagement InventoryManagement 176165 Application selectedrowingrid
PKGPCIDReturnableContainerAdjustmentAllowedtoadjustquantityinaCMIor
10.1.500 SupplyChainManagement InventoryManagement 176168 Application SMIbinifbinispart'sprimarybin
QuantityAdjustmentExceptionwhenaddingstocktoreceiptedFIFOpart(Also
10.1.500 SupplyChainManagement InventoryManagement 176213 Application fixedin10.1.400.x)
10.1.500 SupplyChainManagement InventoryManagement 176228 Application TransferOrderEntryTheRefreshbuttondoesnotupdatetheOrderStatus
PackageControlLabelTypePCIDInactivecontrolIDconfigreturnedbysearchbut
10.1.500 SupplyChainManagement InventoryManagement 176300 Application selectingdisplaysthefollowingmessage:"InvalidPackageControlIDCode"
10.1.500 SupplyChainManagement InventoryManagement 176383 Application IssueMaterialNotaddingLotNumberintoPartTrantableforPLTMTLtransactions
PackageControlPCIDPCIDgenerationisusingconversionfactoronpartUOMfor
10.1.500 SupplyChainManagement InventoryManagement 176389 Application nonpartspecificconversions
PackageControlMaintenancePCIDChangestolocationstabsforstaticPCIDnot
10.1.500 SupplyChainManagement InventoryManagement 176428 Application saved
PackageControlIDAdhocJobOutputTotalWeightisnotcalculatedcorrectlywhen
10.1.500 SupplyChainManagement InventoryManagement 176472 Application PCIDisgenerated
PackageControlIDVoidPCIDandLabelVoidingmixedmastergiving'TheDELETE
statementconflictedwiththeREFERENCEconstraint
10.1.500 SupplyChainManagement InventoryManagement 176511 Application "FK_PkgControlCustPartNum_PkgControlHeader"'
10.1.500 SupplyChainManagement InventoryManagement 176592 Application IssueAssemblyWarehouseBinSearchdoesnotdisplayOnHandQty
PackageControlLabelTypePCIDSavingInternalwithnocustomercausesthe
10.1.500 SupplyChainManagement InventoryManagement 176631 Application InvalidCustomererror
10.1.500 SupplyChainManagement InventoryManagement 176664 Application ReturnMaterialWarehouseBinSearchdoesnotdisplaytheOnHandQuantity
10.1.500 SupplyChainManagement InventoryManagement 176673 Application ReturnAssemblyWarehouseBinSearchdoesnotdisplaytheOnHandQuantity
StockStatusReportExcelreportisgeneratedanddisplayed,butmissingformat
10.1.500 SupplyChainManagement InventoryManagement 176715 Application (Alsofixedin10.1.400.x)
PackageControlLabelTypePCIDReportstylefieldontheListtabdisplays
10.1.500 SupplyChainManagement InventoryManagement 176856 Application delimitedlistofallreportstyles
PackageControlIDJobOutputIteminformationismissingfromXML&btfiles
10.1.500 SupplyChainManagement InventoryManagement 176944 Application (Alsofixedin10.1.400.x)

Page75
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


PackageControlIDJobOutputBartenderbtfilesdisappear~60secafterbeing
10.1.500 SupplyChainManagement InventoryManagement 176948 Application generated(Alsofixedin10.1.400.x)
10.1.500 SupplyChainManagement InventoryManagement 176950 Application PackageControlIDJobOutputBTfileerrors(Alsofixedin10.1.400.x)
PackageControlIDAdhocJobOutputShouldnotpromptuseraskingiftheywant
10.1.500 SupplyChainManagement InventoryManagement 176958 Application toprint
PackageControlIDAdhocJobOutputShiftshoulddefaulttoemptyifmorethan1
10.1.500 SupplyChainManagement InventoryManagement 176959 Application forcurrenttime
PackageControlLabelTypePCIDMissingreportstyledisplaysthefollowingerror:
10.1.500 SupplyChainManagement InventoryManagement 176961 Application Stylenumisrequired
PackageControlIDAdhocJobOutputPackagecodeshoulddefaulttoemptywhen
10.1.500 SupplyChainManagement InventoryManagement 176966 Application partnumentered(Alsofixedin10.1.400.x)
PackageControlIDAdhocJobOutputNotvalidatingthatCustomer/ShipTovalid
10.1.500 SupplyChainManagement InventoryManagement 176971 Application forpackagecode(Alsofixedin10.1.400.x)
PartTransactionHistoryTrackerOpeningTransferOrderShipment,usingContext
10.1.500 SupplyChainManagement InventoryManagement 176972 Application Menu,opensanotherPack
PackageControlPCIDLabelValuesLabel02fieldvaluenotcopiedtoPCIDHeader
10.1.500 SupplyChainManagement InventoryManagement 176992 Application Shiptodockfield(Alsofixedin10.1.400.x)
PackageControlIDAdhocJobOutputTransactionfieldsettoDEFAULTwhen
10.1.500 SupplyChainManagement InventoryManagement 177003 Application screenrunfrommainapp(Alsofixedin10.1.400.x)
PackageControlMaintenancePCIDReasonCodefieldsonthePackagingtab
10.1.500 SupplyChainManagement InventoryManagement 177008 Application displayreasonnumber
10.1.500 SupplyChainManagement InventoryManagement 177009 Application PackageControlLabelTypePCIDSearchdisplayscustomernum
PackageControlPCIDPartnumberisrequiredtoretrievealabeltype(Alsofixedin
10.1.500 SupplyChainManagement InventoryManagement 177017 Application 10.1.400.x)
PackageControlIDJobReceiptToInventoryQuantityfieldisleftjustifiedand
10.1.500 SupplyChainManagement InventoryManagement 177036 Application displaysextradecimalplaces
PackageControlPCIDBinfieldisnotdefaultingwhenthewarehousehasonlyone
10.1.500 SupplyChainManagement InventoryManagement 177038 Application bin
PackageControlIDJobOutputUnabletochangepackagecodeonajobafterPCID
10.1.500 SupplyChainManagement InventoryManagement 177041 Application generated(Alsofixedin10.1.400.x)
PackageControlIDInventoryTransferEnteredPCIDismovedtoPreviousPCID
10.1.500 SupplyChainManagement InventoryManagement 177067 Application whenerrorontransfer
PackageControlIDInventoryTransferShouldnotbeabletoselectawarehouseof
10.1.500 SupplyChainManagement InventoryManagement 177070 Application typeWIP
PackageControlIDJobOutputCompletedquantitynotappliedtoallprior
10.1.500 SupplyChainManagement InventoryManagement 177105 Application operations(Alsofixedin10.1.400.x)
PackageControlIDJobReceiptToInventoryAfterPCIDenteredfocusshouldmove
10.1.500 SupplyChainManagement InventoryManagement 177113 Application toprocessbutton

Page76
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


PackageControlIDVoidPCIDandLabelCustomerpartrevisionfieldneedstobe
10.1.500 SupplyChainManagement InventoryManagement 177114 Application larger
10.1.500 SupplyChainManagement InventoryManagement 177115 Application PackageControlMaintenancePCIDPackIDfieldonItem/Detailtabisleftjustified
PackageControlIDAdhocJobOutputGeneratedTimeEntryisincorrect(Alsofixed
10.1.500 SupplyChainManagement InventoryManagement 177119 Application in10.1.400.x)
10.1.500 SupplyChainManagement InventoryManagement 177123 Application PackageControlIDVoidPCIDandLabelSetReferencefieldonPartTran
10.1.500 SupplyChainManagement InventoryManagement 177251 Application QuantityAdjustmentWarehousevalidationisnotworkingforsharedwarehouses
PackageControlIDTypeConfigPCIDPCIDconfigscreendoesnotdisplaythe
10.1.500 SupplyChainManagement InventoryManagement 177266 Application segmentdatafordynamicPCIDs
StockStatusReportDefaultreportstylemissingforstockstatusreportonserverhv
10.1.500 SupplyChainManagement InventoryManagement 177282 Application Qtenone6
InventoryTransferWarehouseDDLsarenotpopulatedcorrectlywhenpartisre
10.1.500 SupplyChainManagement InventoryManagement 177357 Application retrieved
10.1.500 SupplyChainManagement InventoryManagement 177380 Application InventoryTransferQuantityonparttranrecordsnotdisplayingroundedquantity
10.1.500 SupplyChainManagement InventoryManagement 177439 Application PackageControlIDAdhocPCIDQuantityfielddisplaystoomanydecimalplaces
PackageControlIDAdhocPCIDGenerateispickinguptheinternalpartnumber
10.1.500 SupplyChainManagement InventoryManagement 177448 Application andpropertiesforadifferentpackagecode
InventoryTransferNotapplying"StoponUOMRoundingifNoRoundingSelected"
10.1.500 SupplyChainManagement InventoryManagement 177539 Application functionality
IssueMaterialNotapplying"StoponUOMRoundingifNoRoundingSelected"
10.1.500 SupplyChainManagement InventoryManagement 177543 Application functionality
10.1.500 SupplyChainManagement InventoryManagement 177594 Application PackageControlIDAdhocPCIDNotusingreportstyleselectedonpromptscreen
PackageControlIDInventoryTransferWarehousedropdownisnotdisplayingany
10.1.500 SupplyChainManagement InventoryManagement 177601 Application value
PackageControlIDJobReceiptToInventoryPartTrangeneratedforconsumption
10.1.500 SupplyChainManagement InventoryManagement 177696 Application ofreturnablecontainerhasemptyPCIDfield
PackageControlTrackerPCIDNumberofpackscolumninitemsgridismisleading
10.1.500 SupplyChainManagement InventoryManagement 177699 Application andshouldberemoved
PackageControlTrackerPCIDOpenwithPackageControlIDfromItemsgridnot
10.1.500 SupplyChainManagement InventoryManagement 177700 Application workingcorrectly
PackageControlIDAdhocPCIDShouldbeabletoentereitherthecustomerpartor
10.1.500 SupplyChainManagement InventoryManagement 177787 Application internalpart#intocustomerpartfield
PackageControlIDAdhocPCIDPartnumberfieldnotrefreshedtomatchcaseon
10.1.500 SupplyChainManagement InventoryManagement 177788 Application file(Alsofixedin10.1.400.x)
10.1.500 SupplyChainManagement InventoryManagement 177990 Application SSRSSOPickListReportGridoftheeachfilteracceptsrepeatedelements
PackageControlMaintenancePCIDTypingaPCIDmanuallyisnotretrievingthe
10.1.500 SupplyChainManagement InventoryManagement 177995 Application information
10.1.500 SupplyChainManagement InventoryManagement 178008 Application SSRSPartsMissingABCCodeReportGridofthefilteracceptsrepeatedelements

Page77
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


PackageControlIDParentchildTrackerFieldOrdersshouldbethesameforParent
10.1.500 SupplyChainManagement InventoryManagement 178047 Application PCIDandPCID
PackageControlIDJobReceiptToInventoryEWAAnerrorisdisplayedwhen
10.1.500 SupplyChainManagement InventoryManagement 178071 Application openingPackagecontrolIDfromcontextmenu
PackageControlPCIDUnabletoprintPCIDStatic&Dynamic;errorisdisplayedin
10.1.500 SupplyChainManagement InventoryManagement 178415 Application theSystemMonitor(Alsofixedin10.1.400.x)
10.1.500 SupplyChainManagement InventoryManagement 178452 Application InventoryTransferReportnotgeneratedwhensettingdatesinthepast
10.1.500 SupplyChainManagement InventoryManagement 178468 Application CostAdjustmentLabelnotalignedaccordingtostandards
PackageControlIDParentChildTrackerWhenopeningPCIDwithItemPCIDfrom
10.1.500 SupplyChainManagement InventoryManagement 178498 Application thePCIDItemsdetailgridscreenisnotdisplayed
IssueMaterialIssuinginnoninventoryUOMusesIssuingUOMandnotIUMwhen
10.1.500 SupplyChainManagement InventoryManagement 178662 Application roundingquantity
CountCycleMaintenanceTransactionscopeerrorwhenpostingafullphysical
10.1.500 SupplyChainManagement InventoryManagement 178667 Application inventory
SerialNumberMaskingOptionalAlphanumericCharactersshouldbeconsideredas
10.1.500 SupplyChainManagement InventoryManagement 178669 Application optional(Alsofixedin10.1.400.x)
PackageControlPCIDDynamicPCIDwithLabelPrintControlled=Truedoesnot
10.1.500 SupplyChainManagement InventoryManagement 178740 Application updatelabelvalues(Alsofixedin10.1.400.x)
MassIssuetoMfgNotapplying"StoponUOMRoundingifNoRoundingSelected"
10.1.500 SupplyChainManagement InventoryManagement 178785 Application functionality
10.1.500 SupplyChainManagement InventoryManagement 178803 Application TransactionlogBlankerrormessageinFrom/Todatevalidation
ReturnMiscellaneousMaterialReferencetextboxinputfromrighttoleft(Also
10.1.500 SupplyChainManagement InventoryManagement 178896 Application fixedin10.1.400.x)
PackageControlIDJobReceiptToInventoryBinshoulddefaultwhenonlyone
existsfortheselectedWarehouse;itdoesonloadoftheprogram,butnotonthe
10.1.500 SupplyChainManagement InventoryManagement 178957 Application changeofWarehouse
PackageControlIDJobOutputPackagecodeisnotdefaultedaccordingUOMClass
10.1.500 SupplyChainManagement InventoryManagement 178982 Application /PartUOM
PackageControlIDConfigControlIDfieldisnotrefreshedtomatchthecaseofthe
10.1.500 SupplyChainManagement InventoryManagement 179056 Application ControlID#ontheDB
10.1.500 SupplyChainManagement InventoryManagement 179057 Application CountTagEntryTheWarehousefielddisplaysrecordsforallSites
SSRSCycleCountPartsSelectedReportTheCycleListisnotresizedwhenmaximize
10.1.500 SupplyChainManagement InventoryManagement 179059 Application thescreen
PackageControlIDPartialPCIDPkgControlSplitMergeSourceandTarget
10.1.500 SupplyChainManagement InventoryManagement 179071 Application Warehouse/Binissues
10.1.500 SupplyChainManagement InventoryManagement 179118 Application InventoryTransferWarehousecombosdonotdisplaysharedwarehouses
PackageControlPCIDThePackageCodeforMaster&MixPCIDsistakenfromthe
10.1.500 SupplyChainManagement InventoryManagement 179121 Application oneassignedinPackageControlIDconfigurationform

Page78
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


PackageControlIDInventoryTransferNottakingintoconsiderationtheEmployee
10.1.500 SupplyChainManagement InventoryManagement 179123 Application QualityAllowedcheckboxtomoveitemsoutofaQualityWarehouse
PackageControlPCIDforMASTER&MIXEDBTfilesdonotgeneratethestructure
10.1.500 SupplyChainManagement InventoryManagement 179128 Application correctly(Alsofixedin10.1.400.x)
PackageControlMaintenancePCIDPCIDfieldbecomesdisabledafterloadinga
HistoryPCID;itneedstoallowustochangethePCIDmanuallywithoutclearingthe
10.1.500 SupplyChainManagement InventoryManagement 179130 Application screen
PackageControlIDInventoryTransferPartTranReferenceismissingtheEmpID.It
10.1.500 SupplyChainManagement InventoryManagement 179137 Application onlydisplays'WhseTransfer'whereitshoulddisplay'WhseTransferSPH0031'
PackageControlPCIDMASTER&MIXEDisnotvalidatingTransactionTypesonthe
10.1.500 SupplyChainManagement InventoryManagement 179248 Application TransactionRouting;thetransactiontypesshouldbePKGMASandPKGMIX
PackageControlIDAdhocPCIDNoSheetsFoundforProcessingerrorwhen
10.1.500 SupplyChainManagement InventoryManagement 179500 Application generatingfieldhelp
SSRSCountAccuracyReporttheNewicononthewarehousefiltertabdoesnot
10.1.500 SupplyChainManagement InventoryManagement 179548 Application addarowtothefiltergrid
10.1.500 SupplyChainManagement InventoryManagement 179644 Application PackageControlIDAdhocJobOutputQtyPerContainerisnotEpiNumericEditor
QuantityAdjustmentThewarehouseDDLisnotcorrectforsharedwarehouses
10.1.500 SupplyChainManagement InventoryManagement 179751 Application dependingonuserpermissions
PackageControlIDAdhocPCIDBeforeselectinganypackagecode,QtyPer
10.1.500 SupplyChainManagement InventoryManagement 179840 Application Containerissettoarandomquantity
PackageControlIDAdhocPCIDCustContainerPartNumisnotgettingpopulated
10.1.500 SupplyChainManagement InventoryManagement 179979 Application whenPackageCodeShipToCrossRefconfiguredforthemainCustomer
PackageControlIDAdhocPCIDItispossibletogeneratePCIDwithnonexisting
10.1.500 SupplyChainManagement InventoryManagement 180224 Application ShipTo
PartTransactionHistoryTrackerADJMTLtransactionwasnotcreatedwhen
10.1.500 SupplyChainManagement InventoryManagement 180282 Application secondlatecostinvoiceadded(Alsofixedin10.1.400.x)
CycleCountScheduleMaintenanceGeneralSearchdisplaysanothernametothe
10.1.500 SupplyChainManagement InventoryManagement 180406 Application CyclePeriodonListtab
ExcessStockProvisionReportErrorinSystemMonitorProgram
Ice.Services.Lib.RunTaskraisedanunexpectedexceptionwithmessage:RunTask:
Year,Month,andDayparametersdescribeanunrepresentableDateTime(Also
10.1.500 SupplyChainManagement InventoryManagement 180422 Application fixedin10.1.400.x)
PackageControlIDInventoryTransferWHDDlistdisplayalltypeofwarehouses
10.1.500 SupplyChainManagement InventoryManagement 180456 Application withpackagecontrolAttributes
10.1.500 SupplyChainManagement InventoryManagement 180462 Application PackageControlIDJobOutputNorowshouldbeselectedwhenscreenopens
PackageControlIDAdhocPCIDUnabletotypemorethantwocharactersinthe
Warehousefield;thewarehousedescriptionisnotrecognized(Alsofixedin
10.1.500 SupplyChainManagement InventoryManagement 180618 Application 10.1.400.x)

Page79
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


PartTransactionHistoryTrackerLegalNumbervaluenotdisplayedonshipped
10.1.500 SupplyChainManagement InventoryManagement 180658 Application CounterSalesOrder
ControlIDExtractAvalidPCIDisrequiredmessageonvariousscreensusingthe
10.1.500 SupplyChainManagement InventoryManagement 180800 Application ExtractID
10.1.500 SupplyChainManagement InventoryManagement 180866 Application PackageControlIDJobReceiptToInventoryInterfaceissuesinthescreen
PackageControlPCIDUnabletoprintPCIDStatic&Dynamic;errorisdisplayedin
10.1.500 SupplyChainManagement InventoryManagement 181011 Application theSystemMonitor(Alsofixedin10.1.400.x)
PackageControlPCIDCannotprintaPCIDgeneratedfromPickingcausesthe
10.1.500 SupplyChainManagement InventoryManagement 181012 Application followingmessage:Noprinterconfiguredforprint
PartTransactionHistoryTrackerReasonCodesarenotdisplayedcorrectlyfrom
10.1.500 SupplyChainManagement InventoryManagement 181106 Application MiscIssue/Return(Alsofixedin10.1.400.x)
10.1.500 SupplyChainManagement InventoryManagement 181214 Application PackageControlIDInventoryTransferPrevPCIDfieldremovesPCIDinformation
CalculateABCCodesSiteFilterisnotdisplayedonReportHeaderwithWarehouse
10.1.500 SupplyChainManagement InventoryManagement 181223 Application stockvaluationselected
PKGPCIDReturnableContainerAdjustmentSharedwarehousesownedbyanother
10.1.500 SupplyChainManagement InventoryManagement 181229 Application sitenotdisplayinginDDL
PackageControlIDAdhocJobOutputJobsdisappearfromtheSearchwhenthere
10.1.500 SupplyChainManagement InventoryManagement 181409 Application arerecordsinmultisites
PackageControlIDAdhocPCIDCustomerPartNumberfielddonotretrievethe
10.1.500 SupplyChainManagement InventoryManagement 181660 Application informationcorrectly
PackageControlIDPartialPCIDJobsscheduledtostartoutsideof21daysshould
10.1.500 SupplyChainManagement InventoryManagement 181776 Application notallowaPartialtobecreated
PartTransactionHistoryTrackerThesystemdoesnotrecognizeamatchingpart
whenalowercaseletterisenteredandthepartisstoredinpartmasterasallUPPER
10.1.500 SupplyChainManagement InventoryManagement 181789 Application case
PackageControlIDPartialPCIDPrinterIDdisplaysthePrinterIDandnotthe
10.1.500 SupplyChainManagement InventoryManagement 181792 Application Descriptionasthestorycallsfor
PackageControlIDPartialPCIDQtyPerContainerisallowingafullPCIDtobe
generatedwhentheusershouldonlybeabletogenerateaPartial>0andPackage
10.1.500 SupplyChainManagement InventoryManagement 181795 Application CodeQty1
10.1.500 SupplyChainManagement InventoryManagement 181808 Application PackageControlIDOverlayQtyperContainershouldbereadonly
PackageControlIDOverlayPCIDThedropdownforPrinterdisplaysthePrinterID
10.1.500 SupplyChainManagement InventoryManagement 181810 Application andshouldbedisplayingthedescriptionofthePrinterasstatedinthestory
PackageControlLabelTypePCIDMaxPartQuantityPerLabelallowstheusertoset
thatfieldwithavaluegreaterthan15butitisonlypossibletocreateaBTfilewitha
10.1.500 SupplyChainManagement InventoryManagement 181916 Application maxof15buckets
IssueMaterialErrorwhentryingtopastemultiplelinestosubassemblyingrid(Also
10.1.500 SupplyChainManagement InventoryManagement 181932 Application fixedin10.1.400.x)

Page80
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


PackageControlPCIDUnabletoprintaPCIDusingPackageControlIDerroris
10.1.500 SupplyChainManagement InventoryManagement 181975 Application displayed

10.1.500 SupplyChainManagement InventoryManagement 181975 Application PackageControlPCIDunabletoprintaPCIDusingPackageControlIDerrordisplays


MaterialTransactionDetailReportReportinExceldisplaysmergedfieldsand
10.1.500 SupplyChainManagement InventoryManagement 181982 Application numericfieldswithnoformat
SerialNumberInEpicor10,aserialnumberthatcontainsaspaceinthemiddle
10.1.500 SupplyChainManagement InventoryManagement 182113 Application doesnotvalidatethesameasEpicor9(Alsofixedin10.1.400.x)
PackageControlPCIDReviewallPkgControlHHUIandverifythebuttonhotkeys
10.1.500 SupplyChainManagement InventoryManagement 182282 Application areconsistent
PCIDReturnableContainerAdjustmentRetrievingpreviousadjustmentsdisplaysan
10.1.500 SupplyChainManagement InventoryManagement 182290 Application exception
10.1.500 SupplyChainManagement InventoryManagement 182358 Application PartTransactionLogEmployeeIDisnotdisplayedinthegrid
PackageControlIDAdhocPCIDUnableToGenerateanAdHocPCIDusingsegment
10.1.500 SupplyChainManagement InventoryManagement 182412 Application TypeDate
MaterialTransactionDetailReportMissingdataforpart1032KNutin500that
10.1.500 SupplyChainManagement InventoryManagement 182508 Application appearsin400.5
PackageControlLabelTypePCIDClosingscreendisplaysthefollowingmessage
10.1.500 SupplyChainManagement InventoryManagement 182539 Application whenchangesaresaved:"Savechangesbeforeclosing"
PackageControlPCIDLabelvaluesnotpickedupifstoredatcustomerleveland
10.1.500 SupplyChainManagement InventoryManagement 182581 Application PCIDgeneratedforshipto
PackageControlIDAdhocPCIDCustShipToEngineerAlertonPkgControlItemisnot
10.1.500 SupplyChainManagement InventoryManagement 182588 Application set
10.1.500 SupplyChainManagement InventoryManagement 182601 Application PackageControlPCIDAbletogenerateduplicatePCID'sinmainandstaging
InitializePhysicalInventoryUnexpectedExceptionerrorgeneratedinSystem
10.1.500 SupplyChainManagement InventoryManagement 182782 Application Monitor(Alsofixedin10.1.400.x)
StockStatusReportReportsortedbyWarehouse/Part,doesnotlistsallPartsper
10.1.500 SupplyChainManagement InventoryManagement 182989 Application Warehouse
InventoryTransferTransactionsgivinganegativequantityvalueareallowedona
10.1.500 SupplyChainManagement InventoryManagement 183092 Application FIFOenabledSite
MassIssuetoMfgIgnoredtheoptionNonefromPartClassfornegativeqtyactions
10.1.500 SupplyChainManagement InventoryManagement 183278 Application forNonNetTableBins
10.1.500 SupplyChainManagement InventoryManagement 183307 Application PackageControlLabelTypePCIDINDIVIDUALlabeltypeispullingmultiplelabels
10.1.500 SupplyChainManagement InventoryManagement 183334 Application PackageControlIDAdhocPCIDTaborderissues
10.1.500 SupplyChainManagement InventoryManagement 183335 Application PackageControlIDAdhocPCIDValidPackageCodenotbasedonCustomerShipto
PackageControlIDAdhocJobOutputThefinaloperationiscompleteregardlessof
10.1.500 SupplyChainManagement InventoryManagement 183386 Application thequantitytransacted
PackageControlIDAdhocJobOutputCurrentPkgCodenotsetforfinaljob
10.1.500 SupplyChainManagement InventoryManagement 183387 Application operations

Page81
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


10.1.500 SupplyChainManagement InventoryManagement 183388 Application PackageControlIDAdhocJobOutputPrimaryShipTodoesnotdefault
PackageControlIDAdhocJobOutputLabelTypemaintenancelookupnotoccurring
10.1.500 SupplyChainManagement InventoryManagement 183389 Application onjobload
10.1.500 SupplyChainManagement InventoryManagement 183935 Application PackageControlPCIDPONumbernotdisplayedinPCIDforms,updateforms
PackageControlPCIDPkgControlSplitMerge.TranTypefieldlengthneedstobe
10.1.500 SupplyChainManagement InventoryManagement 183999 Application expandedandvaluessetcorrectly
10.1.500 SupplyChainManagement InventoryManagement 184064 Application JobReceipttoSalvageNocheckingandverifyingonthepart'splant
PartTransactionHistoryTrackerNoerrormessageisdisplayedwhensearchingfor
10.1.500 SupplyChainManagement InventoryManagement 184073 Application OntheFlyPart
10.1.500 SupplyChainManagement InventoryManagement 184271 Application UOMSplit/MergeIgnoringtheUOMsetupthefirsttimetryingtoperformamerge
10.1.500 SupplyChainManagement InventoryManagement 184451 Application SerialNumberSerialNumberrecordscreatedwithoutaCreationDate
PackageControlLabelTypePCIDIncorrecterrormessageisdisplayedforSTATIC
10.1.500 SupplyChainManagement InventoryManagement 184551 Application Labeltype
10.1.500 SupplyChainManagement InventoryManagement 184564 Application PackageControlIDVoidPCIDandLabelBlankcontainerUOM
PKGPCIDReturnableContainerAdjustmentCustContainerPartfieldisnot
10.1.500 SupplyChainManagement InventoryManagement 184568 Application populatedafteranInternalPartoraPackageCodehasbeenselected
PCIDReturnableContainerAdjustmentCustContainerPartfieldisnotpopulated
10.1.500 SupplyChainManagement InventoryManagement 184568 Application afteranInternalPartoraPackageCodehasbeenselected
10.1.500 SupplyChainManagement InventoryManagement 184570 Application PackageControlMaintenancePCIDRetrievevalidPCIDafterinvalidentry
10.1.500 SupplyChainManagement InventoryManagement 184594 Application PackageControlIDAdhocPCIDTargetedShipToSearchReturn
10.1.500 SupplyChainManagement InventoryManagement 184605 Application PackageControlIDAdhocPCIDConfusingerrormessage
PackageControlPCIDContainerconsumptionlogiciscorruptinginventory
10.1.500 SupplyChainManagement InventoryManagement 184634 Application quantities(Alsofixedin10.1.400.x)
10.1.500 SupplyChainManagement InventoryManagement 184652 Application PackageControlIDJobOutputPackagecodeactivewhenlookingatpartialPCIDs
PackageControlIDJobOutputUnderthePartialstab,clickingontherowdoesnot
10.1.500 SupplyChainManagement InventoryManagement 184655 Application selecttherow
PackageControlIDJobOutputUnderthePartialstab,thereisablankName
10.1.500 SupplyChainManagement InventoryManagement 184656 Application column
10.1.500 SupplyChainManagement InventoryManagement 184657 Application PackageControlIDJobOutputThesizeoftheClearAllbuttonisincorrect
10.1.500 SupplyChainManagement InventoryManagement 184665 Application PackageControlIDPartialPCIDhasnovalidationfortheShipTo
PackageControlIDPartialPCIDcanbegeneratedafterjobisloadedwithnoother
10.1.500 SupplyChainManagement InventoryManagement 184666 Application validations
PackageControlIDJobOutputThereprintbuttonshouldreadReprintPCID;Part
10.1.500 SupplyChainManagement InventoryManagement 184676 Application Descriptionnotlabelledcorrectly
PackageControlIDJobOutputTheoperationsgridshouldautoexpandanddisplay
10.1.500 SupplyChainManagement InventoryManagement 184677 Application atleast6recordsbydefault
PackageControlIDJobOutputAnincorrecterrormessageisreturneduponthe
10.1.500 SupplyChainManagement InventoryManagement 184678 Application reprintofaPCIDwithastatusotherthanWIP

Page82
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


PackageControlIDJobOutputPackageCoderemainsusableevenafterUOMClass
10.1.500 SupplyChainManagement InventoryManagement 184679 Application alterations
PackageControlIDJobReceiptToInventoryTheparttransactionrecorddoesnot
10.1.500 SupplyChainManagement InventoryManagement 184680 Application haveJRI<jobnum>inthePartTran.TranReferencefield
PackageControlIDPartialPCIDWhenasingleShipToexistsforacustomerit
10.1.500 SupplyChainManagement InventoryManagement 184692 Application shouldbedefaulted
PackageControlIDJobReceiptToInventorySupervisorpasswordoverridenot
10.1.500 SupplyChainManagement InventoryManagement 184706 Application displayed
UOMSplit/MergeTheTreeviewisnotrefreshedcorrectlywhenenteringmultiple
10.1.500 SupplyChainManagement InventoryManagement 184717 Application partsmanually
PackageControlIDInventoryTransferEmpIDusedinPartTranreferencefield
10.1.500 SupplyChainManagement InventoryManagement 184723 Application shouldbeSysUserFileifnotloggedinwithEndUserAccount
10.1.500 SupplyChainManagement InventoryManagement 184725 Application PackageControlMaintenancePCIDDateTimenotdisplayed
PackageControlIDVoidandLabelTableupdatesareincorrectifapackedparent
10.1.500 SupplyChainManagement InventoryManagement 185104 Application PCIDisvoided
10.1.500 SupplyChainManagement InventoryManagement 185108 Application UOMSplit/MergeFocuschangesbacktofirstrecordwhenprocessapart
PackageControlLabelTypePCIDErrorisdisplayedwhengeneratingmultiplelabel
10.1.500 SupplyChainManagement InventoryManagement 185174 Application types
10.1.500 SupplyChainManagement InventoryManagement 185314 Application PackageControlIDPartialPCIDIncorrectstatuscontrolbeingset
PackageControlIDVoidPCIDandLablelIncorrectemployeegetsnegativetime
10.1.500 SupplyChainManagement InventoryManagement 185340 Application whenvoidingaPCIDinMES
PackageControlMaintenancePCIDErrorafterInvoicedaMASTERor
10.1.500 SupplyChainManagement InventoryManagement 185642 Application MIXEDMASTERPCIDs
PackageControlLabelTypePCIDPackagecodeddlisemptyifpackagecodes
10.1.500 SupplyChainManagement InventoryManagement 185840 Application definedonUOMclass
10.1.500 SupplyChainManagement InventoryManagement 186993 Application SSRSPartsMissingABCCodeReportReportcannotbeprinted/generatedinEWA
PackageControlPCIDControlStaticPCIDStatusnotsettoEMPTYonPackshipping.
10.1.500 SupplyChainManagement InventoryManagement 187086 Application RemainsasBUSY
PackageControlPCIDPackingapickedPCIDonCustShipEntrygiving'Shiplines
10.1.500 SupplyChainManagement InventoryManagement 187186 Application mustbecreatedbeforepackingPCID'
PackageControlIDPartialPCIDWhenUOMsonUOMclassentryofjobgives'No
10.1.500 SupplyChainManagement InventoryManagement 187221 Application PackingUOM(PackingUOM)existsforPart:P,PackageCode:'
PackageControlIDAdhocPCIDNoPartSpecificUOMerrorwhenselectinga
10.1.500 SupplyChainManagement InventoryManagement 187360 Application packagecode
PackageControlIDJobOutputWhenPartCrossReferenceismissingfromthe
CustXPrttable,theserverloghastheerror"PartCustomerCrossReferencedoesnot
10.1.500 SupplyChainManagement InventoryManagement 187458 Application exist".
PackageControlIDAdhocPCIDDropdownshoulddisplayallwarehousesbuiltto
10.1.500 SupplyChainManagement InventoryManagement 187514 Application thePart,regardlessofwarehousetypes

Page83
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


10.1.500 SupplyChainManagement InventoryManagement 187746 Application PackageControlLabelTypePCIDInvaliderrorwhenselectingPackageCode
PackageControlPCIDGetPackageCodemethodshouldnotreturnpackagecodes
10.1.500 SupplyChainManagement InventoryManagement 187748 Application forinactiveUOMconversions
PackageControlIDJobOutputDefaultpackagecodeisrequiredtocreatePCIDs
10.1.500 SupplyChainManagement InventoryManagement 187943 Application usingJobOutputbyPCID
PackageControlPCIDInvoicedlogicarenotupdatedaccordingwiththePCID
10.1.500 SupplyChainManagement InventoryManagement 188060 Application configuration
PackageControlPCIDWhenINVOICEispostedandPCIDhasINVOICED;statuserror
10.1.500 SupplyChainManagement InventoryManagement 188098 Application displays
PackageControlPCIDPACKEDLabelStatusisdisplayedforGENERICLabelTypes
10.1.500 SupplyChainManagement InventoryManagement 188100 Application whenLPCisFalse
PackageControlPCIDParentPCIDconfigurationforhistoryisappliedincorrectly
10.1.500 SupplyChainManagement InventoryManagement 188130 Application forchildsPCIDs
10.1.500 SupplyChainManagement InventoryManagement 188172 Application PackageControlPCIDPCIDscreatedwithincorrectcustomer
PackageControlPCIDInactivePackageCodescanbeselectedandassignedtoa
10.1.500 SupplyChainManagement InventoryManagement 188174 Application labeltype
PackageControlIDVoidandLabelAfterVoidaMASTERorMIXEDMASTERPCIDthe
10.1.500 SupplyChainManagement InventoryManagement 188216 Application itemsremainslinkedtotheParent
PackageControlPCIDGenericLabeltypesforPCIDwithPickedordergets
10.1.500 SupplyChainManagement InventoryManagement 188237 Application corruptedafteryouremoveapack
PackageControlPCIDPCIDprintmethodisusingthedefaultreportprinterinstead
10.1.500 SupplyChainManagement InventoryManagement 188263 Application ofdefaultlabelprinter
PackageControlPCIDPCIDwithstatusINVOICEDandArchivePCID=TRUEisnot
10.1.500 SupplyChainManagement InventoryManagement 188321 Application movedtoHXPkgControlHeadertable
10.1.500 SupplyChainManagement InventoryManagement 188516 Application PackageControlPCIDHHscreensarenotscalingcorrectly
PackageControlIDJobOutputCannotprintwhenPCIDgeneratedforsecond+job
10.1.500 SupplyChainManagement InventoryManagement 188545 Application ingrid;message'Anumberoflabelstoprintgreaterthan0isrequired'
PackageControlPCIDAfterPostingtheInvoiceParentPCIDsremovestheItem
10.1.500 SupplyChainManagement InventoryManagement 188765 Application information
PackageControlIDInventoryTransferOpenBinfielddefaultstobindescription
10.1.500 SupplyChainManagement InventoryManagement 188898 Application insteadofBinNum
PackageControlIDPartialPCIDJobsscheduledtostartoutsideof21daysshould
10.1.500 SupplyChainManagement InventoryManagement 188938 Application notallowaPartialtobecreated
PackageControlIDAdhocJobOutputLabelTypemaintenancelookupdoesnot
10.1.500 SupplyChainManagement InventoryManagement 189036 Application occuronjobload
PackageControlIDVoidandLabelAfterVoidaMASTERorMIXEDPCIDtheitems
10.1.500 SupplyChainManagement InventoryManagement 189218 Application arenotcopiedtoHistory
PackageControlIDJobOutputPrintedByandPrinterIDfieldsarenotpopulated
10.1.500 SupplyChainManagement InventoryManagement 189316 Application whenPCIDisprinted

Page84
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


TransferOrderEntryTFOrderDtlupdatetoPartQtyneedstogothrough
10.1.500 SupplyChainManagement InventoryManagement 189397 Application DeferredUpdate
PackageControlIDAdhocJobOutputPackagecodeshoulddefaulttoemptywhen
10.1.500 SupplyChainManagement InventoryManagement 189400 Application PartNumentered
PackageControlIDAdhocJobOutputIndexerrorwhenclearingthedefaultedCust
10.1.500 SupplyChainManagement InventoryManagement 189406 Application IDfromtheform
PackageControlPCIDPCIDisalwaysgeneratedwiththeDefaultpackagecode
10.1.500 SupplyChainManagement InventoryManagement 189917 Application insteadoftheoneselected
GeneratePurchaseSchedulesBacklogwascalculatedincorrectlyforSchedule
10.1.500 SupplyChainManagement PurchaseScheduling 162865 Application ForwardOnePeriodMode
GeneratePurchaseSchedulesSemiweeklyExtrascheduleaftershiftdaywas
10.1.500 SupplyChainManagement PurchaseScheduling 166096 Application calculatedincorrectly
10.1.500 SupplyChainManagement PurchaseScheduling 166474 Application PartScheduleIncorrectMessageDisplayedontheSuppliersPercentageShare
10.1.500 SupplyChainManagement PurchaseScheduling 170005 Application PurchaseOrderEntryItispossibletodeleteOrderDateonPOHeader/Summary
GeneratePurchaseSchedulesMRPgotcancelledwhenitisrunforsecondtime
10.1.500 SupplyChainManagement PurchaseScheduling 178963 Application usingrungeneratepurchaseschedule(Alsofixedin10.1.400.x)
GeneratePurchaseSchedulesAnerrorwasdisplayedwhentheprocesswasrunon
10.1.500 SupplyChainManagement PurchaseScheduling 181570 Application 02/29(LeapYear)
GeneratePurchaseSchedulesProcessstoppedworkingwhenthereiscalendar
10.1.500 SupplyChainManagement PurchaseScheduling 187755 Application exceptiondays
GeneratePurchaseSchedulesBacklogforsecondcontractwasincludedinthelast
10.1.500 SupplyChainManagement PurchaseScheduling 187760 Application scheduleonfirstcontract
SSRSPurchaseOrderReportAlwaysdisplayingtheOurQuantityUOMdescription
10.1.500 SupplyChainManagement PurchasingManagement 118975 Application whenprintingPO
PurchaseOrderEntryInspectionRequiredcheckboxenabledwhentrueon
10.1.500 SupplyChainManagement PurchasingManagement 120978 Application QualifiedManufacturer
PurchaseOrderEntryUnitPriceisincorrectlyupdatedforContractPOswhenprice
10.1.500 SupplyChainManagement PurchasingManagement 155512 Application listsexist
10.1.500 SupplyChainManagement PurchasingManagement 157224 Application POApprovalUnabletoUpdateresponsebyusingPasteInsertorPasteUpdate
ChangePOSuggestionsInvestigatecorrectformulatocalculateSupplierqtywhen
10.1.500 SupplyChainManagement PurchasingManagement 164360 Application thereispartiallyreceipt
ApprovedSupplierSupplierPartshelpdiscrepancywithSupplierPriceList>
10.1.500 SupplyChainManagement PurchasingManagement 167952 Application SupplierPricehelp
PurchaseOrderEntryAfteraPOislinkedtoanorder,itcanbeupdatedrevision
10.1.500 SupplyChainManagement PurchasingManagement 169227 Application numinOrderandPOisnotupdated
RequisitionEntryLeadTimeanMinQuantityarenotpopulatedinRequisitionLine
10.1.500 SupplyChainManagement PurchasingManagement 169530 Application whenaPartisadded
10.1.500 SupplyChainManagement PurchasingManagement 171916 Application SupplierPerson/contactrecordscanbecreatedhavingallfieldsempty

Page85
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


RequisitionEntryToDoListisdisabledwhenthePOSuggestioniscreatedfromthe
10.1.500 SupplyChainManagement PurchasingManagement 172410 Application Requisition

10.1.500 SupplyChainManagement PurchasingManagement 172514 Application RequisitionEntryWhenarequisitiondispatchisreset,Alluserscandispatchagain


SupplierPriceListUnabletoaddaSupplierPartforaPartontheFlyrecord(Also
10.1.500 SupplyChainManagement PurchasingManagement 173071 Application fixedin10.1.400.x)
RequisitionEntryTransactiontypedefaultstoInventoryratherthanOtherfornon
10.1.500 SupplyChainManagement PurchasingManagement 173474 Application quantitybearingparts
PurchaseOrderEntryDeletingaPurchaseordersourcedfromarequisitionisre
10.1.500 SupplyChainManagement PurchasingManagement 173475 Application openingtherequisition,butdeletesalltherequisitionlines
PurchaseOrderEntryPOContractHeaders,withnoLines,cannotbedeleted(Also
10.1.500 SupplyChainManagement PurchasingManagement 173591 Application fixedin10.1.400.x)
SupplierPriceListSubcontractPartisnotdisplayedbydefault,andPriceListinfo
10.1.500 SupplyChainManagement PurchasingManagement 173639 Application doesnotmatchwithSupplier(Alsofixedin10.1.400.x)
10.1.500 SupplyChainManagement PurchasingManagement 173655 Application SupplierPriceListSeveralSupplierPartscanbemarkedasDefaultforPurchase
PurchaseOrderEntryDisplayedContactvalueequalsthelastContactrecordused
10.1.500 SupplyChainManagement PurchasingManagement 173687 Application (Alsofixedin10.1.400.x)
PurchaseOrderEntryAbletocreateoverlappingpurchasecontracts(Alsofixedin
10.1.500 SupplyChainManagement PurchasingManagement 174055 Application 10.1.400.x)
PurchaseOrderEntrySavingBTOPOLineignoresConversionruledefinedat
10.1.500 SupplyChainManagement PurchasingManagement 174927 Application SupplierPriceList
PurchaseOrderEntryDuplicatedPO,fromPOlinkedtoSalesOrder,createsPO
10.1.500 SupplyChainManagement PurchasingManagement 174996 Application linkedtosameSalesOrder
PurchaseOrderEntryItispossibletoaddalineforaSalesKitpartifloggedintoa
10.1.500 SupplyChainManagement PurchasingManagement 175304 Application sitewherepartisnotdefined
PurchaseOrderEntryNewreleaseforsubcontractOperationdoesnotloadQty
10.1.500 SupplyChainManagement PurchasingManagement 175311 Application fromJobOp
PurchaseOrderEntryAttachmentscannotbeaddedwhenlinkingaSalesOrderto
10.1.500 SupplyChainManagement PurchasingManagement 176591 Application aPORelease
PurchaseOrderEntryMassPrintreportprintswithSSRSServerPrinteronaClient
10.1.500 SupplyChainManagement PurchasingManagement 177505 Application PrintingOnlycompany
PurchaseOrderEntryWhendoingDuplicatePOwithMultibook,thesystemdoes
10.1.500 SupplyChainManagement PurchasingManagement 177533 Application notassigntheGLControlCodetobothbooks(Alsofixedin10.1.400.x)
RequisitionEntryInvalidUnitofMeasureerrorwhenaddingaTrackMultiple
10.1.500 SupplyChainManagement PurchasingManagement 177565 Application UOMsPart
PurchaseOrderEntryChangingSupplierIDdoesnotupdatePOLineinfo(Unit
10.1.500 SupplyChainManagement PurchasingManagement 178050 Application Price,SupplierPart,LeadTime,ManufacturerandManufacturerPart)
ChangePOSuggestionsOntheListtab,iftheCancelReasoncellisempty,thecellis
10.1.500 SupplyChainManagement PurchasingManagement 179428 Application displayedinblackcolor

Page86
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


RequisitionEntryPOsuggestionshouldbecreatedonlyforReqLinesthatwere
10.1.500 SupplyChainManagement PurchasingManagement 179841 Application open
10.1.500 SupplyChainManagement PurchasingManagement 179844 Application RequisitionEntryDispatchOptionwasdisabledafterdeleteaPOHeader/Line/Rel
PurchaseOrderEntryQuantityvalueshouldnotbechangedtoalowervaluethan
10.1.500 SupplyChainManagement PurchasingManagement 180014 Application theonereceived
PurchaseOrderEntryFromanewPORelease,addingaNewJobMaterial
10.1.500 SupplyChainManagement PurchasingManagement 180774 Application generatesanObjectReferenceerror(Alsofixedin10.1.400.x)
PurchaseOrderEntryPOgeneratedforaPartwithSharedWarehouse,generates
10.1.500 SupplyChainManagement PurchasingManagement 181098 Application POReleaseontheotherSite
PurchaseOrderEntryMigratingdatabasefrom9.05.702Ato10.1.400.2,OurQty
10.1.500 SupplyChainManagement PurchasingManagement 181311 Application andSupplierQtynotdisplayed
PurchaseOrderEntryPOSuggestionisnotgeneratedforaConsolidatedPart(Also
10.1.500 SupplyChainManagement PurchasingManagement 181414 Application fixedin10.1.400.x)
PurchaseOrderEntryInBuyToOrder,DueDateinPOLineissetasNeedBydate
10.1.500 SupplyChainManagement PurchasingManagement 181585 Application ofSalesOrder,insteadofShipBydate(Alsofixedin10.1.400.x)
PurchaseOrderEntryNotUpdatingtheMRPRecalcNeededcheckboxwhen
10.1.500 SupplyChainManagement PurchasingManagement 182515 Application updatingLockDateandLockQty
PurchaseOrderEntryAddingaPOlineforaBTOorderlinewithmultiplereleases
10.1.500 SupplyChainManagement PurchasingManagement 182703 Application setssupplierquantitytoincorrectvalue
PurchaseOrderEntryDuplicatingaPOandupdatingtheSuppliergeneratesan
10.1.500 SupplyChainManagement PurchasingManagement 183571 Application errormessage
10.1.500 SupplyChainManagement PurchasingManagement 184006 Application RequisitionEntryPrimaryPurchasePointnotdefaultingonRequisitions
10.1.500 SupplyChainManagement PurchasingManagement 184085 Application PurchaseOrderEntryInactiveContactsdisplayaddingaPO
PurchaseOrderEntryIncorrectlyretrievesexpiredUOMConversionfromthe
10.1.500 SupplyChainManagement PurchasingManagement 184152 Application supplierPriceList(Alsofixedin10.1.400.x)
PurchaseOrderEntryFromanewPORelease,addingaNewJobMaterial
10.1.500 SupplyChainManagement PurchasingManagement 184409 Application generatesanObjectReferenceerror(Alsofixedin10.1.400.x)
PurchaseOrderEntryIfchangingUnitPricefrom0toanyothervalue,thenthe
10.1.500 SupplyChainManagement PurchasingManagement 184506 Application totalamountisnotcalculatedproperly
10.1.500 SupplyChainManagement PurchasingManagement 184954 Application PurchaseOrderEntryItispossibletodeleteTypeonPurchaseOrderEntry
PurchaseOrderEntryWhenaPOlineorRelisVoided,itShouldbeexcludedfrom
10.1.500 SupplyChainManagement PurchasingManagement 185733 Application TotalsandTaxCalculations
PurchaseOrderEntryWhenaPOlineorRelisVoided,itshouldbeexcludedfrom
10.1.500 SupplyChainManagement PurchasingManagement 185733 Application TotalsandTaxCalculations
PurchaseOrderEntryDeletingLineMisccostdoesnotupdateLineMiscCharge
10.1.500 SupplyChainManagement PurchasingManagement 185789 Application Total
PurchaseOrderEntryIncorrectUnitPricevaluehavingForeignSupplierPriceListin
10.1.500 SupplyChainManagement PurchasingManagement 186583 Application BaseCurrencyPO
10.1.500 SupplyChainManagement PurchasingManagement 186975 Application PurchaseOrderEntryInvalidcolumnnamewhenSearchingforPOwithsupplier

Page87
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


PurchaseOrderEntryInspectionRequiredcheckboxisnotcheckedforJob
10.1.500 SupplyChainManagement PurchasingManagement 187068 Application Materials
PurchaseOrderEntryNorecordsselectedreportresultsifMassPrintisprinted
10.1.500 SupplyChainManagement PurchasingManagement 187357 Application afterStandardPrint
PurchaseOrderEntryAddinganinspectionpartwithReadytoprocessenabled
10.1.500 SupplyChainManagement PurchasingManagement 187404 Application generatesPODetailInspconstrainterror
OpenPurchaseOrderReportReportTotalsnotprintedonreportwithseveral
10.1.500 SupplyChainManagement PurchasingManagement 188084 Application pagesinSSRS
POEntryIncorrectzDataaboutPObusinessobjectleadstoinabilitytocreatea
10.1.500 SupplyChainManagement PurchasingManagement 188794 Application newBPMdirectiveonseveralmethodsofPObusinessobject
10.1.500 SupplyChainManagement PurchasingManagement 189291 Application PurchaseOrderEntryPMPMSetPOTotalAndTaxDefaultsshouldbeautorun
TransferOrderPickListdoesnotdisplayanopenlineifithasanotheronewith
10.1.500 SupplyChainManagement Shipping/Receiving 57429 Application overshipment(Alsofixedin10.1.400.x)
ICPOReceiptEntryPartialreceiptssavedandthendeletedchangethetotal
10.1.500 SupplyChainManagement Shipping/Receiving 116395 Application receivedquantity

ReceiveTransferOrderReceivingtwoTOshipmentautocreatedfromacrosssite
10.1.500 SupplyChainManagement Shipping/Receiving 151241 Application jobreceipttojobdisplaysnegativerunningtotalonparttransactionhistorytracker
10.1.500 SupplyChainManagement Shipping/Receiving 156190 Application ReceiptEntryUseofLastWarehouse/Binruledoesnotwork
MaterialRequestQueueWhenhavingaTimezoneassigned,applicationallows
10.1.500 SupplyChainManagement Shipping/Receiving 159868 Application changingitforapriortimezone
SubcontractorShipmentEntryFromEWAgridcolumns,sequenceandlabelsdonot
10.1.500 SupplyChainManagement Shipping/Receiving 161244 Application matchsmartclient
StageShipConfirmEntryFromEWAgridcolumns,sequenceandlabelsdonot
10.1.500 SupplyChainManagement Shipping/Receiving 161246 Application matchsmartclient
CustomerShipmentEntryDocumentsnotavailableerrornottriggeredonPackSlip
10.1.500 SupplyChainManagement Shipping/Receiving 162866 Application printLottrackedpart
SSRSContainerShipmentStatusReportBlanklinesdisplayedfromshipmentsfrom
10.1.500 SupplyChainManagement Shipping/Receiving 163128 Application othercontainers
SSRSContainerShipmentStatusReportPromiseDatedoesnotretrievethecorrect
10.1.500 SupplyChainManagement Shipping/Receiving 165018 Application value
10.1.500 SupplyChainManagement Shipping/Receiving 168269 Application ReceiptEntryEWAUnabletocreateSerialNumberswhenReceiptaPO
TransferOrderShipmentTrackerUsingContextMenu,Trackerdoesnotdisplay
10.1.500 SupplyChainManagement Shipping/Receiving 168984 Application Packinfofromwhereitwascalled
TransferOrderShipmentEntryContextmenuonBAQAnalyzesheetopensUIwith
10.1.500 SupplyChainManagement Shipping/Receiving 170454 Application incorrectvaluespassedin
10.1.500 SupplyChainManagement Shipping/Receiving 172747 Application TransferOrderShipmentEntry"ShipDate"labelmissingonHeadertab
CustomerShipmentEntryDeletepacksettingincorrectordernumonserial
10.1.500 SupplyChainManagement Shipping/Receiving 172842 Application numberswhenunpacktopickedisTrue

Page88
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


ContainerReceiptEntryAttachmentcannotbeaddedtoShipmentortoLine(Also
10.1.500 SupplyChainManagement Shipping/Receiving 173488 Application fixedin10.1.400.x)
SubcontractorShipmentEntryCannotdeselectsubshippedSNafteranyreceipts
10.1.500 SupplyChainManagement Shipping/Receiving 173580 Application havetakenplace
10.1.500 SupplyChainManagement Shipping/Receiving 173661 Application ReceiptEntrySupplierPartscannotbeaddedintheReceipt
ReceiptEntryIndirectCostvalueisnotcalculatedproperlywhenworkingwitha
10.1.500 SupplyChainManagement Shipping/Receiving 173764 Application CurrencydifferentthanUSD
SubcontractorShipmentEntryReportprintsinfoofonly1stline,andsetsquantity
10.1.500 SupplyChainManagement Shipping/Receiving 173979 Application thatisequaltosumofallunits(Alsofixedin10.1.400.x)
DataDirectiveBartenderLabelsrefertoallReceiptLines,insteadofonlythe
10.1.500 SupplyChainManagement Shipping/Receiving 174094 Tools ReceiptLineitgenerated
CustomerShipmentEntryShippingaSalesKit,NonStockandNonQuantity
10.1.500 SupplyChainManagement Shipping/Receiving 174253 Application BearingPartsarenotadded
CustomerShipmentEntryUnabletoshipNegativeQtyforEMSLanguage(Also
10.1.500 SupplyChainManagement Shipping/Receiving 174266 Application fixedin10.1.400.x)
ReceiptEntrySelectedserialnumberswithactivityafterreceiptsavecreateissues
10.1.500 SupplyChainManagement Shipping/Receiving 174640 Application ifthereceiptlineisupdated
CustomerShipmentEntrySettingInventorytoPart,whileshipping,duplicatesSales
10.1.500 SupplyChainManagement Shipping/Receiving 175140 Application PickedQtyandPickedQtyvalues
CustomerShipmentEntryTheerrormessageisnotdisplayedwhenenteringan
10.1.500 SupplyChainManagement Shipping/Receiving 175187 Application OrderonHoldinthePackOutTab
TransferOrderShipmentEntryNegativeqtywarningmessageisnotdisplayedfor
10.1.500 SupplyChainManagement Shipping/Receiving 175393 Application EMSLanguage
CustomerShipmentEntryCannotsaveLineafterenteringincorrectsalesorder
10.1.500 SupplyChainManagement Shipping/Receiving 175397 Application witherror"Customerisrequired"
TransferOrderShipmentEntryDirectShipmentdoesnotconsiderPartClass
10.1.500 SupplyChainManagement Shipping/Receiving 175428 Application NegativeQuantityActionvalues(Alsofixedin10.1.400.x)
10.1.500 SupplyChainManagement Shipping/Receiving 175543 Application ReceiveTransferOrderSearchisnotfilteringbycompany
CustomerShipmentEntrySalesOrdermarkedasonHoldcanbeShippedusing
10.1.500 SupplyChainManagement Shipping/Receiving 175697 Application PickedOrdersfunction
ReceiveTransferOrderIftheshipmentisunshippedandreshipped,then
10.1.500 SupplyChainManagement Shipping/Receiving 175707 Application duplicaterowsareprintedonreport
10.1.500 SupplyChainManagement Shipping/Receiving 175801 Application MasterPackShipmentEntryAdditionalPack(EDI)cannotbeaddedtoMasterPack
DropShipmentEntryTheMassshipmentbuttonretrievesanincorrect
10.1.500 SupplyChainManagement Shipping/Receiving 176050 Application DropShipmentLinewhenthatlinewaspreviouslyretrieved
VoidPackVoidingfreightedpackwhennotloggedintomanifestworkstationleaves
10.1.500 SupplyChainManagement Shipping/Receiving 176549 Application voidedpackwithmanifestinfo
10.1.500 SupplyChainManagement Shipping/Receiving 176800 Application TransferOrderShipmentEntryMultiplePackscannotbeloaded
10.1.500 SupplyChainManagement Shipping/Receiving 176848 Application ReceiptEntryChangingUOMinReceipt,setsOnHand=False(PartLottable)

Page89
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


TransferOrderShipmentEntrySavingDirectTransferOrdertakesalongtime(Also
10.1.500 SupplyChainManagement Shipping/Receiving 177020 Application fixedin10.1.400.x)
CustomerShipmentEntryThegeneratedInvoicenumberisrepeatedfromthe
10.1.500 SupplyChainManagement Shipping/Receiving 177026 Application previouscanceledinvoice
10.1.500 SupplyChainManagement Shipping/Receiving 177141 Application CustomerShipmentEntrySearchshouldbefilteredbySalesKitPart
10.1.500 SupplyChainManagement Shipping/Receiving 177274 Application TransferOrderShipmentEntryErrormsgisdisplayedwhentryingtodoUnpack
10.1.500 SupplyChainManagement Shipping/Receiving 177413 Application MasterPackShipmentEntryUnabletostageapackafterapackisfreighted
SSRSContainerLandedCostReportInfoofRelease2isnotprinted(Alsofixedin
10.1.500 SupplyChainManagement Shipping/Receiving 177491 Application 10.1.400.x)
ReceiptEntryRcvDtl.ExtTransValueiscorruptedwhen'IncintransactionValue'is
10.1.500 SupplyChainManagement Shipping/Receiving 177520 Application specifiedagainsttheindirectcost(Alsofixedin10.1.400.x)
CustomerShipmentEntryUPCvaluenotrecognizedwhenmakingaPackOut(Also
10.1.500 SupplyChainManagement Shipping/Receiving 177562 Application fixedin10.1.400.x)
10.1.500 SupplyChainManagement Shipping/Receiving 177590 Application ReceiptEntryMultiplecodeanalysiswarningsintheReceiptBO
ReceiptEntryQtyonhandsometimesgetsoutofsynchwithnumberofserial
10.1.500 SupplyChainManagement Shipping/Receiving 177658 Application numbersininventory
PackagingCodeCustomer&ShipToID'sarenotupdatedtomatchcasein
10.1.500 SupplyChainManagement Shipping/Receiving 177786 Application Customershiptowhensaving(Alsofixedin10.1.400.x)
CustomerShipmentEntryErrorwhengeneratingseveralPackedLinesforsame
10.1.500 SupplyChainManagement Shipping/Receiving 178112 Application OrderLine
StageShipConfirmEntryContextMenuoptionsfromPackIDfield,listCustomer
10.1.500 SupplyChainManagement Shipping/Receiving 178251 Application Shipmentoptions
TransferOrderShipmentEntrySecondDirectShipmentcannotbesavedwithalow
10.1.500 SupplyChainManagement Shipping/Receiving 178287 Application quantityvalue
CustomerShipmentEntryADJCSTtransactionscreatedforSalesKitPartsinstead
10.1.500 SupplyChainManagement Shipping/Receiving 178414 Application ofKITCUSwhenunshipping(Alsofixedin10.1.400.x)
CustomerShipmentTrackerSerialNumbersof2ndSerialTrackedPartarenot
10.1.500 SupplyChainManagement Shipping/Receiving 178466 Application displayed
PackagingCodePackageCodeshouldbeinthesamecaseasenteredinPackage
10.1.500 SupplyChainManagement Shipping/Receiving 178750 Application CodeMaintenance
StageShipConfirmEntryOpeningStageNumberdropdownlisttakesmorethan5
10.1.500 SupplyChainManagement Shipping/Receiving 178798 Application minutes
StageShipConfirmEntryShipping2,000+salesordersviaSubmitcausesthe
followingerror:Thetransactionassociatedwiththecurrentconnectionhas
10.1.500 SupplyChainManagement Shipping/Receiving 178899 Application completedbuthasnotbeendisposed(Alsofixedin10.1.400.x)
BillofLadingEntryTheweightisroundedevenwhenthesystemissettonotround
10.1.500 SupplyChainManagement Shipping/Receiving 178902 Application thisUnitofMeasure
ReceiptEntryMissingPartFIFOcosterrorwhenupdatingReceiptDateforthe
10.1.500 SupplyChainManagement Shipping/Receiving 178907 Application secondtime(Alsofixedin10.1.400.x)

Page90
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


10.1.500 SupplyChainManagement Shipping/Receiving 178958 Application ReceiptEntryNowarningmessagewhenoverreceivingonanotherPackingSlip
CustomerShipmentEntryGeneratingaPackthroughPickedOrdersfunction,does
10.1.500 SupplyChainManagement Shipping/Receiving 178962 Application notwriteOurBankvalueintodatabase
ReceiptTrackerIndex1errorgeneratedwhenswitchingbetweenPackingSlipsof
10.1.500 SupplyChainManagement Shipping/Receiving 178981 Application samePO
StageShipConfirmEntryErrorwhenshippingmultiplemasterpackscontaining
10.1.500 SupplyChainManagement Shipping/Receiving 178987 Application miscshipmentpacksandhavingamanifestenabledWS
CustomerShipmentEntryConsolidateserialvalidationsin
10.1.500 SupplyChainManagement Shipping/Receiving 179026 Application preProcessSerialNumberstolibValidateSNForPack
CustomerShipmentEntryEWALineColumninOrderReleaseSearchscreen
10.1.500 SupplyChainManagement Shipping/Receiving 179032 Application displaysextracharacters
CustomerShipmentEntryFromInvBinvalueisdefaultedtoSalesKitLinewhen
10.1.500 SupplyChainManagement Shipping/Receiving 179097 Application makingaMassShipment(Alsofixedin10.1.400.x)
10.1.500 SupplyChainManagement Shipping/Receiving 179524 Application CustomerShipmentEntryAssignwarehousebutnotBINonsaleskitshipdtlline
SSRSContainerShipmentStatusReportUsingFilterbyContainerIDthereport
10.1.500 SupplyChainManagement Shipping/Receiving 179632 Application displaysanextrashipmentID
SSRSContainerShipmentStatusReportFilterbyPartretrievesallexistingpartsfor
10.1.500 SupplyChainManagement Shipping/Receiving 179659 Application thatcriteria
CustomerShipmentEntryManifestPackageroundsUDnumericfieldstothe
10.1.500 SupplyChainManagement Shipping/Receiving 179753 Application integervalue(Alsofixedin10.1.400.x)
CustomerShipmentEntryCannotpastelinesgeterror'Thevalue0forcolumn:
10.1.500 SupplyChainManagement Shipping/Receiving 179932 Application PCIDParentLineisnotvalid'
CustomerShipmentEntryPackingandShippingaSalesKitSalesOrderdoesnotset
10.1.500 SupplyChainManagement Shipping/Receiving 180134 Application theSalesOrderasClosed(Alsofixedin10.1.400.x)
CustomerShipmentEntryShippingtwopacksatthesametimeincreasesthe
10.1.500 SupplyChainManagement Shipping/Receiving 180301 Application inventory(Alsofixedin10.1.400.x)
ContainerReceiptEntryInputStringerrorwhendeletinganInterCompanyReceipt
10.1.500 SupplyChainManagement Shipping/Receiving 180328 Application Line
StageShipConfirmEntryStatusbarlabelnotsettoReadybyrunningSubmitShip
10.1.500 SupplyChainManagement Shipping/Receiving 180402 Application Confirmprocess
ContainerLandedCostEntryPOReleasesfromdifferentsitescanbeaddedto
10.1.500 SupplyChainManagement Shipping/Receiving 180415 Application container
ReceiptEntryJobSubcontractforaLotPartwithUnitCost=0,setsReceiptUnit
10.1.500 SupplyChainManagement Shipping/Receiving 181066 Application Cost=MaterialUnitCost
CustomerShipmentEntryOneOffforSCR150299causesMassShip/ShipAllona
10.1.500 SupplyChainManagement Shipping/Receiving 181095 Application saleskittogenerateextracomponent
CustomerShipmentEntry"Customerisoncredithold"messageboxappearsin
10.1.500 SupplyChainManagement Shipping/Receiving 181402 Application incorrectplacesonPackOuttab

Page91
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


CustomerShipmentEntryPackingbackflushedkitthatisinpickingdoesnot
10.1.500 SupplyChainManagement Shipping/Receiving 181422 Application decrementtheKITSHPMtlQueueentry
ContainerLandedCostEntryMaterialBurdenvaluenotcalculatedafterdisbursing
10.1.500 SupplyChainManagement Shipping/Receiving 181424 Application andapplyingaLateCostInvoice(Alsofixedin10.1.400.x)
ReceiptEntryMassReceiptshouldallowprocessSerialNumbers,ifOwnerSiteis
10.1.500 SupplyChainManagement Shipping/Receiving 181463 Application NonSerialTrackingSite
ContainerReceiptEntryReceivedMonth/Dayvalueswitchedwhenworkingwith
10.1.500 SupplyChainManagement Shipping/Receiving 181477 Application Germany(Belgium)settingsinServer(Alsofixedin10.1.400.x)
ContainerReceiptEntrySupplierPriceupdatevaluecanbechanged,eventhough
10.1.500 SupplyChainManagement Shipping/Receiving 181478 Application itisrestrictedatCompanylevel(Alsofixedin10.1.400.x)
CustomerShipmentEntryMassshipmentandstandardcustshipnotusing
10.1.500 SupplyChainManagement Shipping/Receiving 181892 Application CompanySequencePackNumSequenceforgeneratingpacknum
TransferOrderShipmentEntryErrormessageisdisplayedwhentryingtoshipa
10.1.500 SupplyChainManagement Shipping/Receiving 182053 Application transferorderlinethatwasallocated
10.1.500 SupplyChainManagement Shipping/Receiving 182054 Application ReceiptEntryPackingSlipcannotbereusedbetweenStandardandSMIreceipts
DropShipmentEntryCostsforline2+arepickedupfrompreviousPOline(Also
10.1.500 SupplyChainManagement Shipping/Receiving 182179 Application fixedin10.1.400.x)
CustomerShipmentEntryIncorrectallocationserrorwhenchangingthereleaseon
10.1.500 SupplyChainManagement Shipping/Receiving 182280 Application anexistingshipline
CustomerShipmentEntryForOneTimeShipTostheShipToNumfieldshouldbe
10.1.500 SupplyChainManagement Shipping/Receiving 182504 Application emptyregardlessofthestatus
CustomerShipmentEntryIncorrectspellinginManifestInfoGeneraltab,
10.1.500 SupplyChainManagement Shipping/Receiving 182630 Application incorrectspellingofSignature
10.1.500 SupplyChainManagement Shipping/Receiving 182691 Application DropShipmentEntryPOisclosedwhennotcompletelyreceived
BillofLadingEntryGeneratecombinespackswithdifferentclassificationand
10.1.500 SupplyChainManagement Shipping/Receiving 182722 Application packagecodeintosingleBOLline
CustomerShipmentEntryIncorrectsyntaxnearPackNumerrorgenerated(Also
10.1.500 SupplyChainManagement Shipping/Receiving 182784 Application fixedin10.1.400.x)
TransferOrderShipmentEntryInvaliderroriftheusertriestoshipmoreQtythan
10.1.500 SupplyChainManagement Shipping/Receiving 182899 Application ordered
CustomerShipmentEntryUpdatetheuseofNextValuetopasscurrentDB
10.1.500 SupplyChainManagement Shipping/Receiving 182982 Application connection(Alsofixedin10.1.400.x)
ReceiptEntryRcvHead.POTypeisnotsetwhenintercompanypackslipiscreated
10.1.500 SupplyChainManagement Shipping/Receiving 182990 Application (Alsofixedin10.1.400.x)
CustomerShipmentEntryPackcannotbeStagedifitsstatusisFreighted(Alsofixed
10.1.500 SupplyChainManagement Shipping/Receiving 183080 Application in10.1.400.x)
CustomerShipmentEntryPackoutStagefieldclearedwhenSaving,iffocusis
10.1.500 SupplyChainManagement Shipping/Receiving 183175 Application changedtoanotherfield(tabout)

Page92
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


ContainerLandedCostEntryDisbursementofupdatedForeignCurrencyIndirect
10.1.500 SupplyChainManagement Shipping/Receiving 183269 Application Cost,revertsIndirectCostamount
10.1.500 SupplyChainManagement Shipping/Receiving 183382 Application CustomerShipmentEntryOurSupplierCodenotsetonShipHead
CustomerShipmentEntryErroronPackOuttabwhensaleskitcomponentis
10.1.500 SupplyChainManagement Shipping/Receiving 183436 Application packedafterstandardpurchasedpart
10.1.500 SupplyChainManagement Shipping/Receiving 183439 Application ContainerReceiptEntryImproveSupplierPricerestrictionlogic
MultiCompanyDirectServerProcessDropShipmentLinesmarkedasPending,
10.1.500 SupplyChainManagement Shipping/Receiving 183564 Application insteadofDropped(Alsofixedin10.1.400.x)
CustomerShipmentEntryMassshipmentdoesnotworkforSalesOrderwithtwo
10.1.500 SupplyChainManagement Shipping/Receiving 183821 Application JobsforanOrderRelease
CustomerShipmentEntryCreatepackfromPickedispullinginreleasespickedina
10.1.500 SupplyChainManagement Shipping/Receiving 183857 Application differentsite(Alsofixedin10.1.400.x)
SSRSContainerLandedCostReportIndirectCostsofdifferentcurrenciesarenot
10.1.500 SupplyChainManagement Shipping/Receiving 183980 Application displayedcorrectly(Alsofixedin10.1.400.x)
ContainerLandedCostReportIndirectCostsofdifferentCurrenciesarenot
10.1.500 SupplyChainManagement Shipping/Receiving 183980 Application displayedproperlyinSSRS
10.1.500 SupplyChainManagement Shipping/Receiving 184048 Application VoidPackcausestheStackemptyerror
10.1.500 SupplyChainManagement Shipping/Receiving 184339 Application CustomerShipmentEntryReviewpacknumgenerationfrompicked
CustomerShipmentEntryDeclaredvaluedoesnottakeintoaccountdiscountson
10.1.500 SupplyChainManagement Shipping/Receiving 184363 Application componentpricedkits
CustomerShipmentEntryShippedToDatevalueshouldbeupdatedafterSaveShip
10.1.500 SupplyChainManagement Shipping/Receiving 184443 Application Line,notbefore
TransferOrderShipmentEntryCheckAllocationsneedstosupportthechange
10.1.500 SupplyChainManagement Shipping/Receiving 184452 Application allowinguserstoshipthesametransferlinemultipletimesonsamepack
ContainerReceiptEntryPartLotAttributeEntryscreennotopenedforaLot
10.1.500 SupplyChainManagement Shipping/Receiving 184546 Application TrackedPart
10.1.500 SupplyChainManagement Shipping/Receiving 184565 Application VoidPackProblemswhenthePackhasnoassociatedShipDtllines
CustomerShipmentEntryErrormessagedisplayedwhenpackingtheremaining
10.1.500 SupplyChainManagement Shipping/Receiving 184617 Application quantityofanOrder
CustomerShipmentEntryAddingaSalesKitwith2ormorereleasesfromPicked
10.1.500 SupplyChainManagement Shipping/Receiving 184637 Application Ordersisaddedincorrectly
CustomerShipmentSummaryPackqtyandUOMcolumnsinincorrectorderand
10.1.500 SupplyChainManagement Shipping/Receiving 184664 Application notlinked
CustomerShipmentEntryIfchangingthereleaseonashipline,thenewreleaseis
10.1.500 SupplyChainManagement Shipping/Receiving 184670 Application notalwaysautoallocated
ReceiptEntryReceiptscanbemadeintoaClosedPeriod(EarliestApplyDate=
10.1.500 SupplyChainManagement Shipping/Receiving 184741 Application today)
10.1.500 SupplyChainManagement Shipping/Receiving 184765 Application TransferOrderShipmentEntryReshippingtakesitemsagainfromPickeditems

Page93
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


TransferOrderShipmentEntryError"Notenoughunallocatedinventory"displays
ifanotherallocationexistsagainstthesamePart/Warehouse/Bin(Alsofixedin
10.1.500 SupplyChainManagement Shipping/Receiving 184907 Application 10.1.400.x)
CustomerShipmentEntryErrorsdisplayedwhenmakingaSerialMatching(Also
10.1.500 SupplyChainManagement Shipping/Receiving 184989 Application fixedin10.1.400.x)
CustomerShipmentEntryUnabletoShipKitsfrompickedorderswhenone
10.1.500 SupplyChainManagement Shipping/Receiving 185111 Application componentisNonQuantityBearingpart(Alsofixedin10.1.400.x)
CustomerShipmentEntryNullRefexceptionwhenshippingakitcontaininganon
10.1.500 SupplyChainManagement Shipping/Receiving 185112 Application quantitybearingpart
CustomerShipmentEntryError"Packingsliphasbeenprinted"displayswhen
10.1.500 SupplyChainManagement Shipping/Receiving 185228 Application markingpackasshipped(Alsofixedin10.1.400.x)
10.1.500 SupplyChainManagement Shipping/Receiving 185282 Application MasterPackShipmentEntryObjectReferenceerrorworkingwithBLTester
SSRSContainerLandedCostReportIndirectCostsofdifferentcurrenciesarenot
10.1.500 SupplyChainManagement Shipping/Receiving 185461 Application displayedcorrectly(Alsofixedin10.1.400.x)
CustomerShipmentEntryMassShipmentpackingslipshowskitlinesoutof
10.1.500 SupplyChainManagement Shipping/Receiving 185512 Application sequence
CustomerShipmentEntryRemainingQtydoesnotchangewhenclickingTabin
10.1.500 SupplyChainManagement Shipping/Receiving 185573 Application Line/Release
CustomerShipmentEntryMaster&MixedPCIDstatusnotsetcorrectlywhenpack
10.1.500 SupplyChainManagement Shipping/Receiving 186331 Application statuschanges
10.1.500 SupplyChainManagement Shipping/Receiving 186909 Application CustomerShipmentSummaryPackIdcolumnisnotsortedindescendingorder
DropShipmentEntryUnitCostinforeigncurrencyonPOdefaultsintodrop
10.1.500 SupplyChainManagement Shipping/Receiving 187758 Application shipmentwithbasecurrencyamount
10.1.500 SupplyChainManagement Shipping/Receiving 187946 Application CustomerShipmentEntryUserisabletoenterthesamePCIDmultipletimes
10.1.500 SupplyChainManagement Shipping/Receiving 187947 Application CustomerShipmentEntryInvalidLabelTypesarenotvalidated
10.1.500 SupplyChainManagement Shipping/Receiving 187995 Application ReceiptEntryItdoesnotprompttocreateanewLotNumber
BillofLadingEntryLinkPack/MPfunctionallowsaShipToaddressthatisdifferent
10.1.500 SupplyChainManagement Shipping/Receiving 188439 Application thanShipPackaddress
10.1.500 SupplyChainManagement Shipping/Receiving 188471 Application ReceiptEntryAValidOurQuantityErrorappearswhenreceivingaLinefromaPO
10.1.500 SupplyChainManagement Shipping/Receiving 188797 Application ReceiveTransferOrderAllowedtoreceivebeforeEarliestApplyDate
10.1.500 SupplyChainManagement Shipping/Receiving 188869 Application StageShipConfirmEntryMultiplePackcreatesidenticalASNDocuments
ContainerLandedCostEntryMltBurUnitCostdoesnotdisplayanyvalue,after
10.1.500 SupplyChainManagement Shipping/Receiving 188933 Application addaIndirectCosttotheContainer
CustomerShipmentEntryErrorwhenshippingtwoPacksreferringtoSalesOrders
10.1.500 SupplyChainManagement Shipping/Receiving 189023 Application markedasAutoInvoice
10.1.500 SupplyChainManagement Shipping/Receiving 189024 Application CustomerShipmentEntryMessageisnotclearwhenrepackaPCID
CustomerShipmentEntryPCIDcanbeaddedtoapackcausingovershipofan
10.1.500 SupplyChainManagement Shipping/Receiving 189827 Application orderrelease

Page94
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


SupplierRelationship SupplierTrackerButtonCopyToExcelisnotactiveonTabSupplier
10.1.500 SupplyChainManagement Management 164107 Application Tracker\Links\Invoices\Open
SupplierRelationship
10.1.500 SupplyChainManagement Management 171779 Application BuyerWorkbenchAllowtodeleteSupplierrecords
SupplierRelationship
10.1.500 SupplyChainManagement Management 172087 Application PartPriceReportSupplierPartvaluenotdisplayedonaspecificReportOption
SupplierRelationship RFQEntryPrintFormgeneratesreportonUser'slanguage,insteadofSupplier's
10.1.500 SupplyChainManagement Management 172716 Application language
SupplierRelationship SupplierTrackerCalcDocTotalCostfielddisplayzeros,insteadofPO'sExtended
10.1.500 SupplyChainManagement Management 172987 Application Costvalue
SupplierRelationship
10.1.500 SupplyChainManagement Management 173244 Application BuyerWorkbenchSupplierWizarddoesnothavetheAttributesfilter
SupplierRelationship
10.1.500 SupplyChainManagement Management 174692 Application SupplierTrackerSystemOutOfMemoryExceptionerrorwhenretrievingOpenPOs
SupplierRelationship BuyerWorkbench"SupplierisnotapprovedforatleastoneoftheselectedRFQ"
10.1.500 SupplyChainManagement Management 175018 Application messageappears,evenwhenthesupplierisapproved
SupplierRelationship BuyerWorkbench"Supplieralreadyexists"messageappearswhenunselectingand
10.1.500 SupplyChainManagement Management 175019 Application selectingtheRFQcheckboxonSuggestionsgridagain
SupplierRelationship
10.1.500 SupplyChainManagement Management 175090 Application SupplierResponses"Startingat"filteriscasesensitive
SupplierRelationship BuyerWorkbenchRFQSuggestionsSupplierfromquoteorjobisnotdisplayedin
10.1.500 SupplyChainManagement Management 176375 Application theSuppliersgrid
SupplierRelationship BuyerWorkbenchSupplierWizard"Providedpricebreakinformation"optionnot
10.1.500 SupplyChainManagement Management 176424 Application workingforsubcontractpricelists
SupplierRelationship
10.1.500 SupplyChainManagement Management 176529 Application BuyerWorkbenchSupplierWizardCompliancefilterdoesnotwork
SupplierRelationship
10.1.500 SupplyChainManagement Management 176634 Application BuyerWorkbenchReadytabdisplaysclosedlinesfromopenRFQ's
SupplierRelationship
10.1.500 SupplyChainManagement Management 176637 Application SupplierResponsesItispossibletocreatePOmultipletimesforthesameRFQline
SupplierRelationship BuyerWorkbenchDecisionWizardExcludeAttributesoptiondoesnotworkif
10.1.500 SupplyChainManagement Management 176797 Application addingmultipleattributes
SupplierRelationship RFQEntryItispossibletoaddAuctioninformationwhenSourcingisnotenabledin
10.1.500 SupplyChainManagement Management 178126 Application company
SupplierRelationship RFQEntryLinesforStockorOtherRequisitionLinesoptionssetitemtypeas
10.1.500 SupplyChainManagement Management 182706 Application Material(MTL)
SupplierRelationship RFQEntryDeletinglinefromRFQSuggestiondoesnotcreatetheRFQsuggestion
10.1.500 SupplyChainManagement Management 182707 Application again

Page95
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


SupplierRelationship BuyerWorkbenchGeneratinganRFQfromasuggestiondoesnotcreateRFQPart
10.1.500 SupplyChainManagement Management 184028 Application entriesforitemswithQualifiedManufacturers
SupplierRelationship RFQEntryAddinganRFQLineusingPartsearchscreendoesnotretrievetheUOMs
10.1.500 SupplyChainManagement Management 187552 Application andClassinformation
SystemWide CrossApplicationorothernonmenurelatedListofprojectsthatstillhavethetag
10.1.500 Enhancements FRx 180484 Application TO_CONVERT_2012R
SystemWide ProductLifecycle
10.1.500 Enhancements Management 168371 Application PLMServerProcessImproveerrormessages
SystemWide ProductLifecycle PLMIntegrationDonotunapprovepreviousrevisionswhenanewrevisionissent
10.1.500 Enhancements Management 174105 Application throughEpicor10
SystemWide ProductLifecycle PLMServerProcessThePLMprocesscannotberunintwoCompaniesatthesame
10.1.500 Enhancements Management 178787 Application time
ARInvoiceFormChangeARFormtoAddInvcDtl.PoLineNumtoCrystalRPTasCalc
10.1.500 ToolsandTechnologies AccountsReceivable 175061 Application POLine
ARInvoiceFormProgramdoesnotprintthedecimalpartwhenusing
10.1.500 ToolsandTechnologies AccountsReceivable 183196 Application customization
SetupEnvironmentVersionFieldontheInformationWorkerextensionsheet
10.1.500 ToolsandTechnologies AdminConsole 166636 Tools displaystheincorrectversion
SetupEnvironmentEpicorUsernamefieldblankswhenBinding=Windowson
10.1.500 ToolsandTechnologies AdminConsole 169893 Tools appserver
10.1.500 ToolsandTechnologies AdminConsole 171843 Tools SetupEnvironmentExtensionsdropdownlistduplicatesnames(EWA,EMA)
SetupEnvironmentWindowsAuthenticationappservercannotbesetonsome
10.1.500 ToolsandTechnologies AdminConsole 171893 Tools boxes
SetupEnvironmentSetupEnvironmentdoesnotbringfullinformationfor
10.1.500 ToolsandTechnologies AdminConsole 171917 Tools extensions
SetupEnvironmentApplicationPoolUsername/Passwordshouldbeblankifthe
10.1.500 ToolsandTechnologies AdminConsole 172021 Tools checkboxiscleared
10.1.500 ToolsandTechnologies AdminConsole 172292 Tools SetupEnvironmentLightweightSmartClientfromEWAclientservermismatch
10.1.500 ToolsandTechnologies AdminConsole 172730 Tools SetupEnvironmentReportssheetdoesnotremovethevalueinSSRSBaseURL
10.1.500 ToolsandTechnologies AdminConsole 172975 Tools Ice.LicenseTenanttableisnotclearedafterarecordisdeleted
SetupEnvironmentDeploymentstatusmessagemustbechangedwhenyou
10.1.500 ToolsandTechnologies AdminConsole 173018 Tools connecttoanappserverremotely
EpicorpasswordfieldispopulatedbutuserisnotabletoenteritonSetup
10.1.500 ToolsandTechnologies AdminConsole 174593 Tools Environmentwhenbinding=windows
10.1.500 ToolsandTechnologies AdminConsole 174598 Tools SetupEnvironmentSSLcertificateandDNSfieldsarehidden
10.1.500 ToolsandTechnologies AdminConsole 175284 Tools SetupEnvironmentEWAneedsinstallationimprovements
UnabletoImportActiveDirectoryUsersinanOnpremiseinstallation(Alsofixedin
10.1.500 ToolsandTechnologies AdminConsole 175460 Tools 10.1.400.x)

Page96
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


SetupEnvironmentRegistering+301.1AppServerchangestheVersiontoBase(Also
10.1.500 ToolsandTechnologies AdminConsole 175695 Tools fixedin10.1.400.x)
10.1.500 ToolsandTechnologies AdminConsole 176768 Tools SetupEnvironmentPublishextensionsshouldnotdisplayerror/warningmessages
SetupEnvironmentActionsmenushouldbedisabledonSetupEnvironmentUI
10.1.500 ToolsandTechnologies AdminConsole 176771 Tools (publishextensions)
UnabletoopenuserpropertiesasApplicationlaunchersettingdoesnotwork
10.1.500 ToolsandTechnologies AdminConsole 177187 Tools properly
SetupEnvironmentDBValidationwhenusingwindowsauthenticationneeds
10.1.500 ToolsandTechnologies AdminConsole 177808 Tools improvement
SetupEnvironmentFullconfigurationrunwhenapplyinganupdate(Alsofixedin
10.1.500 ToolsandTechnologies AdminConsole 178300 Tools 10.1.400.x)
SetupEnvironmentOntheAdminConsolesettingssheet,EpicorApplication
10.1.500 ToolsandTechnologies AdminConsole 178980 Tools Launcherdoesnotwork
10.1.500 ToolsandTechnologies AdminConsole 180056 Tools LicenseNamenotalwayslistedinLicenseProperties
SetupEnvironmentUnexpectedbehaviorwithApplicationpoolsfromEWASettings
10.1.500 ToolsandTechnologies AdminConsole 180162 Tools withintheAdminconsole
10.1.500 ToolsandTechnologies AdminConsole 180256 Tools SetupEnvironmentRadiobuttonsdonotworkonEpicorApplicationLauncher
SetupEnvironment2012RTest<AppServerURL>valueismissingaftercreatingan
10.1.500 ToolsandTechnologies AdminConsole 180483 Tools appserverandpreventsusersfromloggingintoERP
IncorrectDBversionifversionofthebuildnumberisbiggerthan9(Alsofixedin
10.1.500 ToolsandTechnologies AdminConsole 181072 Tools 10.1.400.x)
10.1.500 ToolsandTechnologies AdminConsole 181185 Tools SetupEnvironmentMisspellederrormessage
"ChildListforfieldUserFileListcannotbecreated"errordisplayswhenimporting
10.1.500 ToolsandTechnologies AdminConsole 181220 Tools Activedirectoryuser(Alsofixedin10.1.400.x)
SetupEnvironmentErrormessageshouldbechangedwheninvalidtimeoutisset
10.1.500 ToolsandTechnologies AdminConsole 181675 Tools onmachine.config

10.1.500 ToolsandTechnologies AdminConsole 181679 Tools DataModelGeneratorEmptyloginnameifpasswordisincorrectonDMvalidation


SetupEnvironmentThedeploymentversioncomboboxisnotsortedcorrectly
10.1.500 ToolsandTechnologies AdminConsole 181772 Tools whenupdate10isreached
SetupEnvironmentEWAcanbeinstalledbutsetupenvironmentsaysitwasnot
10.1.500 ToolsandTechnologies AdminConsole 182599 Tools installed
SetupEnvironmentErrorwhenchangingfromHTTPBinarySSLbindingtoanyother
10.1.500 ToolsandTechnologies AdminConsole 182669 Tools binding
10.1.500 ToolsandTechnologies AdminConsole 183073 Tools SetupEnvironmentErrorextractingfiles
SetupEnvironmentAdditionalloggingfromtheSetupEnvironmentisneededto
10.1.500 ToolsandTechnologies AdminConsole 183330 Tools determinetheissueasnoerrorsdisplayintheEventViewer
SetupEnvironmentSetupEnvironmentUI.exedoesnotdisplaynewHTTPBinary
10.1.500 ToolsandTechnologies AdminConsole 183331 Tools bindings

Page97
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


SetupEnvironmentDNSIdentitytagisnotenabledwhen
HttpBinaryUsernameSslChannelisselectedandDNSEndpointIdentityfieldis
10.1.500 ToolsandTechnologies AdminConsole 183692 Tools populated
SetupEnvironmentBindingConfigurationlabelshouldbechangedinApplication
10.1.500 ToolsandTechnologies AdminConsole 183703 Tools ServerSetup
10.1.500 ToolsandTechnologies AdminConsole 184057 Tools UnabletoaddcompanyinAdminConsole
SetupEnvironmentClosebuttondisabledinDeploymentstatuswindow(publish
10.1.500 ToolsandTechnologies AdminConsole 184263 Tools extensions)
10.1.500 ToolsandTechnologies AdminConsole 184266 Tools SetupEnvironmentValidateWCFcertificateisnotenabledwhenbinding=
Unhandledexceptionoccurswhenstoppingtheapplicationpoolforoneappserver
10.1.500 ToolsandTechnologies AdminConsole 184783 Tools andthenswitchingtoadifferentappserver
10.1.500 ToolsandTechnologies AdminConsole 185220 Tools SetupEnvironmentHelpuninstallcausesthe"objectreference.."error
SetupEnvironmentSSRSReportServerLocationfieldisnotbeingpopulatedusing
10.1.500 ToolsandTechnologies AdminConsole 187300 Tools SQL2016
ServerManager"Couldnotfindpath..."errorwheninstallingServerManager
10.1.500 ToolsandTechnologies AdminConsole 187364 Tools snapin
SetupEnvironment"HTTPstatuserror503:Servertoobusy"errorisdisplayed
10.1.500 ToolsandTechnologies AdminConsole 187703 Tools whenSSRSisconfigured
IQSInstallJava,AQMWebClient,AQMAPIToolkit,andServiceConnectonnewQA
10.1.500 ToolsandTechnologies AdvanceQuality 170924 Application Servers:10.1.300.1
IQSInstallJava,AQMWebClient,AQMAPIToolkit,andServiceConnectonnewQA
10.1.500 ToolsandTechnologies AdvanceQuality 170926 Application Servers:10.1.301
IQSIncorrectAcceptedQtyisprocessedinServiceConnect,DMRProcessingisnot
10.1.500 ToolsandTechnologies AdvanceQuality 176883 Application updatedcorrectly
IQSWIPrecordsarenotconsiderinnonconformancetransactions,WIPrecordsare
10.1.500 ToolsandTechnologies AdvanceQuality 176893 Application notupdatedcorrectly
IQSSynchronizationProcessExportingPartsaddinganumbertotheRevisionDate
10.1.500 ToolsandTechnologies AdvanceQuality 184134 Application (Alsofixedin10.1.400.x)
AttachmentsAttachmentdescriptionstoredintheSharePointportalisnot
10.1.500 ToolsandTechnologies Attachments 171852 Tools renamediftheuserrenamesthesameattachmentviaEpicorERP10interface
AttachmentsInEngineeringWorkbench,whentheTreePanelismoved(separated
fromtheMainForm)andanAttachmentisdoubleclickedintheTreeView,anerror
10.1.500 ToolsandTechnologies Attachments 176083 Tools occurs
10.1.500 ToolsandTechnologies Attachments 178425 Tools AttachmentsErrorwhentryingtoopenanattachmentonadetachedmenutree
10.1.500 ToolsandTechnologies Attachments 185771 Tools AttachmentsProblemwithSysconfigsettingtoautoassignuniquefilenames
10.1.500 ToolsandTechnologies Attachments 187287 Tools AttachmentsAttachmentscausingissueswithhttps
UpdatableBAQDirectivesIfyouaddanExtendedUDfieldtoUBAQasan
updatablefieldwithadropdownlistdefined,thedropdowndoesnotgetactivated
10.1.500 ToolsandTechnologies BAQDesigner 133968 Tools onanupdatabledashboard

Page98
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


10.1.500 ToolsandTechnologies BAQDesigner 164147 Tools Errorwhencreatinganewfieldattributeifnodisplayfieldsselected
10.1.500 ToolsandTechnologies BAQDesigner 166029 Tools UnnecessarysavingconfirmationdisplaysonExternalDatasourcesform
10.1.500 ToolsandTechnologies BAQDesigner 168124 Tools CopyofglobalUBAQworksincorrectly
10.1.500 ToolsandTechnologies BAQDesigner 168129 Tools ExportofglobalUBAQworksincorrectly
10.1.500 ToolsandTechnologies BAQDesigner 168399 Tools ExternalBAQsdonotworkwithODBCProvider(ExcelandAccess)
UBAQBPMdirectivedesignercannotcreateESCprogramminginterface,andifit
10.1.500 ToolsandTechnologies BAQDesigner 170172 Tools does,importedschemasarebroken
10.1.500 ToolsandTechnologies BAQDesigner 170440 Tools BAQexecutionstopsworkingwithNullReferenceException
10.1.500 ToolsandTechnologies BAQDesigner 170544 Tools Newlycreatedcalculatedfieldisnotsavedifanychangesweremadeaftersaving
10.1.500 ToolsandTechnologies BAQDesigner 171494 Tools ErroroccurswhenreplacingexistingExternalDatasourceduringimport
WhenusingtheNewbutton,thereshouldbeaninfomessagethataworkflowis
10.1.500 ToolsandTechnologies BAQDesigner 171763 Tools created
10.1.500 ToolsandTechnologies BAQDesigner 171772 Tools Nomethodsavailableforglobalqueryinthetargetcompany
NeedtoselectGlobalcheckboxtomakethechangesintheoriginalqueryvisiblein
10.1.500 ToolsandTechnologies BAQDesigner 171773 Tools thetargetcompany
NeedtoaddScopesettinglogicinallcompanies/companylocalBAQforBPM
10.1.500 ToolsandTechnologies BAQDesigner 172630 Tools directivestoMigration,UpgradeandImport
10.1.500 ToolsandTechnologies BAQDesigner 172722 Tools IssueswithSSRSBAQReports
10.1.500 ToolsandTechnologies BAQDesigner 172737 Tools Programdoesnotremoveall"updatability"metadata
10.1.500 ToolsandTechnologies BAQDesigner 172881 Tools UnabletoenterCalc_fieldswiththesamenameindifferentSubqueries
10.1.500 ToolsandTechnologies BAQDesigner 173023 Tools Epicorstopsworkingifanemptystringisselectedonthecolumnmappingsheet
10.1.500 ToolsandTechnologies BAQDesigner 173170 Tools AllCompaniescheckboxdoesnotworkintheExternalBAQdesignersearchdialog
10.1.500 ToolsandTechnologies BAQDesigner 173720 Tools BAQwithID"yada_yada(whizz"causesissues
10.1.500 ToolsandTechnologies BAQDesigner 174015 Tools BAQExportProcessdoesnotcreateinformationontheSystemMonitorDetailsheet
BAQExportProcessdoesnotcreateinformationontheSystemMonitorDetailsheet
10.1.500 ToolsandTechnologies BAQDesigner 174423 Tools investigation
10.1.500 ToolsandTechnologies BAQDesigner 174428 Tools NeedtocorrectIntelliSenceinBAQC#expressioneditors
10.1.500 ToolsandTechnologies BAQDesigner 174647 Tools DataFixWorkbenchActionforlaunchingDataHealthformishidden
10.1.500 ToolsandTechnologies BAQDesigner 174648 Tools DataFixWorkbenchformmissingthe"runasagent"label
10.1.500 ToolsandTechnologies BAQDesigner 175012 Tools ErrorinUBAQfortablewithanExternalColumndefinedinzDataField
10.1.500 ToolsandTechnologies BAQDesigner 175118 Tools UnabletoimportGlobalBAQfromEpicor9.05to10.1.400version
10.1.500 ToolsandTechnologies BAQDesigner 175120 Tools UnexpectedbehaviorinCalculatedfieldeditorafterclickingtheNewbutton
10.1.500 ToolsandTechnologies BAQDesigner 175237 Tools Nowarningwhenthefieldlabeluserentersistoolong
10.1.500 ToolsandTechnologies BAQDesigner 175352 Tools NeedtoimproveCompanyVisibilityGUIandLogicinBAQImport
10.1.500 ToolsandTechnologies BAQDesigner 175730 Tools UIofassigningdatasourcetypetocompanyworksincorrectly
10.1.500 ToolsandTechnologies BAQDesigner 175731 Tools CopyingofexternalUBAQstopsworkingwithexception
10.1.500 ToolsandTechnologies BAQDesigner 175789 Tools UnabletocreateaReportfromaSystemBAQ(Alsofixedin10.1.400.x)
ExternalBAQcannotbereplacedwhentheuserinstallingitisdifferentthanthe
10.1.500 ToolsandTechnologies BAQDesigner 176113 Tools creator
10.1.500 ToolsandTechnologies BAQDesigner 176207 Tools DisplayFieldsnodeisemptyinCalcFieldeditor

Page99
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


10.1.500 ToolsandTechnologies BAQDesigner 176355 Tools Import\exportofUBAQviaESCdoesnotworkwithCompanyESCconnection
10.1.500 ToolsandTechnologies BAQDesigner 177037 Tools SQLErroronCustomerdesignedBAQ
10.1.500 ToolsandTechnologies BAQDesigner 177717 Tools CannotrefertoBAQconstantsinExecutionFilterclause
10.1.500 ToolsandTechnologies BAQDesigner 177894 Tools BASEdirectiveforUpdatemethodinUBAQisnotcompiled
10.1.500 ToolsandTechnologies BAQDesigner 178033 Tools BAQExportProcessdoesnotacceptsystemqueries
10.1.500 ToolsandTechnologies BAQDesigner 178038 Tools UBAQmethodswithoutBPMcustomizationaremissingincopiedupdatablequery
10.1.500 ToolsandTechnologies BAQDesigner 178290 Tools SSRSReportGenerationSomefieldsaregeneratedwithincorrectname
10.1.500 ToolsandTechnologies BAQDesigner 178357 Tools UnabletouseDynamicDateTimesinBAQReport
10.1.500 ToolsandTechnologies BAQDesigner 178856 Tools Customer9.05.702CrosscompanyBAQstopsworking
10.1.500 ToolsandTechnologies BAQDesigner 179086 Tools BASEdirectiveshouldberegeneratedifBOwaschangedinUBAQ
ExternalDataSourcesProgramcannotbeusedwithMySQLin10.1.400(Alsofixed
10.1.500 ToolsandTechnologies BAQDesigner 179556 Tools in10.1.400.x)
BAQImportProgramshouldallowusertoselectdestinationESCworkflowpackage
10.1.500 ToolsandTechnologies BAQDesigner 180111 Tools whenupdatablequeriesareimported
10.1.500 ToolsandTechnologies BAQDesigner 180673 Tools WhereUsedcannotfindBAQReportsthatrefertotheBAQ
PasswordshouldnotbedisplayedtouserswhoopenExternalDataSource
10.1.500 ToolsandTechnologies BAQDesigner 180795 Tools maintenance
Unabletoupdatetrackerbyaddingnew/additionalBAQfieldintoanexistingtracker
10.1.500 ToolsandTechnologies BAQDesigner 181023 Tools (Alsofixedin10.1.400.x)
CustomattributesforUDfieldsarenotfetchedcorrectlyduringdesignandruntime
10.1.500 ToolsandTechnologies BAQDesigner 181154 Tools (Alsofixedin10.1.400.x)
10.1.500 ToolsandTechnologies BAQDesigner 181465 Tools DiagnosticDataHealth/FixissuesinSaaS
10.1.500 ToolsandTechnologies BAQDesigner 182144 Tools ExternalquerywithTVFstopsworkingwitherrorifdatasourcecontainsafilter
10.1.500 ToolsandTechnologies BAQDesigner 182154 Tools SkipifEmptyparametersdonotdisplayintheCalcfieldeditor
10.1.500 ToolsandTechnologies BAQDesigner 182215 Tools Performanceissuewhenusingsubtotalsandlargevolumeofdata
10.1.500 ToolsandTechnologies BAQDesigner 182888 Tools CorrectEpiGuidsinBAQdesigner
AbletodeleteaBAQinuseevenafter"No"isclickedonthemessageboxthatasks
10.1.500 ToolsandTechnologies BAQDesigner 183471 Tools toconfirmdeletion
10.1.500 ToolsandTechnologies BAQDesigner 183508 Tools IncompleteclassnameforContextBoundprofile
"Anonexistentvariable...isreferencedinexpression"erroronBPMWorkflow
10.1.500 ToolsandTechnologies BAQDesigner 183593 Tools validation
ExternalDatasources"Index1iseithernegative"erroronattempttoclosethe
10.1.500 ToolsandTechnologies BAQDesigner 183817 Tools formunderspecificconditions(unsavediScaladatasource)
10.1.500 ToolsandTechnologies BAQDesigner 184105 Tools DuplicateGUIDsattheExternalDatasourceMaint.form
UpdatableBAQDirectives"Index1iseithernegative..."erroronattempttodelete
10.1.500 ToolsandTechnologies BAQDesigner 184381 Tools unsaveddirective
UpdatableBAQMethodswithoutdirectivesarenotdisplayedinthetreeinBAQ
10.1.500 ToolsandTechnologies BAQDesigner 184387 Tools MethodDirectivesMainformafterrefreshing

Page100
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


"Parametershouldbespecified"erroronattempttoopenColumnInitialExpression
10.1.500 ToolsandTechnologies BAQDesigner 185783 Tools ifBOwasnotspecified
10.1.500 ToolsandTechnologies BAQDesigner 186438 Tools Workflowpackageslistisnotloaded
10.1.500 ToolsandTechnologies BAQDesigner 188041 Tools ImportBAQwithstoredESCcredentials:additionalcredentialswindowappears
10.1.500 ToolsandTechnologies BPM 189209 Tools BPMUpgradeleavesunupgradedBPMcustomizationassembliesinthedatabase
BPMIncorrectlysavedstateforsyntaxvalidationofexpressioninFill/Updatetable
10.1.500 ToolsandTechnologies BPM 189879 Tools mapping
BAMAutoPrintforBartenderreportsandSchedulesettoImmediatecannotbe
10.1.500 ToolsandTechnologies BPMDesigner 151478 Tools executed
BAMErrorwhenAutoPrintActiondoesnothaveuserdefinedsettingsand
10.1.500 ToolsandTechnologies BPMDesigner 162443 Tools DirectiveisEnabled/saved.
10.1.500 ToolsandTechnologies BPMDesigner 171165 Tools DataDirectiveDesignergridthrowaberrorwhenusingttShipMisc
10.1.500 ToolsandTechnologies BPMDesigner 172697 Tools UnexpectedcolorschemechangeatBPMDesigner
10.1.500 ToolsandTechnologies BPMDesigner 172698 Tools ColorschemenotproperlyappliedtoBPMDesigner
DataDirectiveSearchforAutoPrintReportdisplaysallthestyleseveniftheyarein
10.1.500 ToolsandTechnologies BPMDesigner 173273 Tools differentTenants
DataDirectiveCompilationerrordisplays:ErrorCS0029:Cannotimplicitlyconvert
10.1.500 ToolsandTechnologies BPMDesigner 173754 Tools type'string'to'long'
10.1.500 ToolsandTechnologies BPMDesigner 173757 Tools "Attemptlockwithnotransaction"errorwhenpostprocessingonsometable
10.1.500 ToolsandTechnologies BPMDesigner 174039 Tools BAMAutoPrintEDIignoresConditionnodes
10.1.500 ToolsandTechnologies BPMDesigner 174421 Tools "Attemptlockwithnotransaction"errorwhenpostprocessingonsometables
DataDirectiveWhenhavingsameBPMontwocompanies,the.btfileonthe2nd
10.1.500 ToolsandTechnologies BPMDesigner 174585 Tools companyisnotgenerated(Alsofixedin10.1.400.x)
UnabletocreateacompliableBPMdirectivewithAttachorRemoveHoldaction
10.1.500 ToolsandTechnologies BPMDesigner 175865 Tools againstErp.BO.PO
10.1.500 ToolsandTechnologies BPMDesigner 176084 Tools Changesintheformcanbetestedaftersaveonly
10.1.500 ToolsandTechnologies BPMDesigner 176094 Tools Needtoaddawarninginvalidationresultsthatcustomcodeisnotspecified
10.1.500 ToolsandTechnologies BPMDesigner 176095 Tools UnnecessarysavingconfirmationdisplaysinBPMDesigner
SystemFlagshouldberemovedfromthelistofmethodsinBPMDirectives
10.1.500 ToolsandTechnologies BPMDesigner 176596 Tools Maintenanceforms
BPMshouldnotuseparameterlessconstructorsforclassesderivedfrom
10.1.500 ToolsandTechnologies BPMDesigner 176713 Tools ContextBoundBase
WhenbothShowMessageandRaiseExceptionarelinkedinBPMDesigner,BPMonly
10.1.500 ToolsandTechnologies BPMDesigner 177078 Tools displaysanexception
MethodArgumentsformraisesanerrorforSysTask.DeleteSysTaskKillRecords
10.1.500 ToolsandTechnologies BPMDesigner 177215 Tools method
10.1.500 ToolsandTechnologies BPMDesigner 177613 Tools "Failedtoenableconstraints"errorin"SetField"action
10.1.500 ToolsandTechnologies BPMDesigner 178042 Tools TableSetvariableisnotfullyrestoredbyRedo
10.1.500 ToolsandTechnologies BPMDesigner 178146 Tools UnabletocreateadirectiveonICEBOsafternewcodegenerationimplementation

Page101
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


FulfillmentWorkbencherrorwhenusingPreprocessingMethodDirectiveandBPM
10.1.500 ToolsandTechnologies BPMDesigner 178288 Tools DataForm(Alsofixedin10.1.400.x)
10.1.500 ToolsandTechnologies BPMDesigner 178835 Tools Issuewith"TheunderlyingproviderfailedonEnlistTransaction"
10.1.500 ToolsandTechnologies BPMDesigner 178989 Tools Autoprintreportscannotberouted
10.1.500 ToolsandTechnologies BPMDesigner 179192 Tools BAMDBContextrelatedobsoletewarninginBAMcode
FulfillmentWorkbencherroroccurswhenusingPreprocessingMethodDirective
10.1.500 ToolsandTechnologies BPMDesigner 179288 Tools andBPMDataForm(Alsofixedin10.1.400.x)
10.1.500 ToolsandTechnologies BPMDesigner 179614 Tools IncorrectvalidationofFillTableByQueryaction
10.1.500 ToolsandTechnologies BPMDesigner 179623 Tools FillTableByQuerymappingstatusisincorrect
10.1.500 ToolsandTechnologies BPMDesigner 180580 Tools Fill(Update)Tablebyquerychecksyntaxworksincorrectly
MethodDirectivesUnabletouse"SetField"onPart.PartNumwhencreatingaBPM
10.1.500 ToolsandTechnologies BPMDesigner 181635 Tools (Alsofixedin10.1.400.x)
10.1.500 ToolsandTechnologies BPMDesigner 181684 Tools ICEBuildBuilddeploysmscorlibandcausesthedirectivesnottocompile
10.1.500 ToolsandTechnologies BPMDesigner 182585 Tools AddEpicor.Ice.Shared.Social.dlltolistofstandardBPMprojectreferences
10.1.500 ToolsandTechnologies BPMDesigner 182841 Tools Layoutandconnectionlinkarelostafterimport
BAMSettingupanEmailactioninaDataDirectivewithAttachLinksettotrue
10.1.500 ToolsandTechnologies BPMDesigner 182894 Tools throwsexceptiononcompiling
10.1.500 ToolsandTechnologies BPMDesigner 183537 Tools OKbuttonisoutofvisibleareaiftherearenofieldsonDataForm
DataDirectiveDirectivelinkspecifiedinConditionblockislostduring
10.1.500 ToolsandTechnologies BPMDesigner 184022 Tools export/import
DirectiveExportUnabletoexportdirectivesforemptygroupdespitetheir
10.1.500 ToolsandTechnologies BPMDesigner 184138 Tools availabilityinthelist
OK,Cancel,CheckSyntaxbuttonsarenotavailableonSpecifyC#expressionform
10.1.500 ToolsandTechnologies BPMDesigner 184226 Tools maximize
CannottoenableconstraintsmessageonConfigurationRuntimepreprocessing
10.1.500 ToolsandTechnologies BPMDesigner 184569 Tools MethodDirective
DataDirectiveErrorwhentryingtoexecuteAutoPrintBartenderreportusing
10.1.500 ToolsandTechnologies BPMDesigner 184619 Tools DataDirective
10.1.500 ToolsandTechnologies BPMDesigner 184800 Tools MethodDirectivesItshouldnotbepossibletocreatedirectivewithanempty
BAMSSRSRenderFormatnotsetforAutoPrintreportswhenprintactionis
10.1.500 ToolsandTechnologies BPMDesigner 184871 Tools AutoPreview
10.1.500 ToolsandTechnologies BPMDesigner 185116 Tools SelectWorkflowOKbuttonisnotenabledonworkflowselection
10.1.500 ToolsandTechnologies BPMDesigner 185159 Tools WorkflowContextParametersformisresizedincorrectly
AddReferenceAssemblyselectedbeforefilteringofthelistisnotaddeddespiteOK
10.1.500 ToolsandTechnologies BPMDesigner 185318 Tools buttonavailability
10.1.500 ToolsandTechnologies BPMDesigner 185324 Tools FailedtoconfiguretablerelationsinUpdateTablebyqueryaction
10.1.500 ToolsandTechnologies BPMDesigner 185376 Tools Removebuttonremainsenableddespitenoassemblyisselected
ECCCustomerQuotesexpiredinECCandmessageissenttoexpiredarenot
10.1.500 ToolsandTechnologies CommerceConnect 169875 Application expiredinEpicor10

Page102
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


ECCSupplierAddingNewReleasesorLinestoConfirmedPOdonotappearat
10.1.500 ToolsandTechnologies CommerceConnect 172583 Application ConfirmPOChanges
ECCCustomerOrderlinecommentdoesnotgetretrieved,componentpricing
10.1.500 ToolsandTechnologies CommerceConnect 175744 Application incorrect
10.1.500 ToolsandTechnologies CommerceConnect 175747 Application ECCCustomerAlternatepartnumbersnotsynchronizedtoweb
ECCSupplierIncomingchangerequestshouldnotprocessblanklines;datesshould
10.1.500 ToolsandTechnologies CommerceConnect 175910 Application notbeUTCconvertedanduploadingdatesshouldhavezerotime
ECCCustomerAvailableqtyforkitsneedstobecalculatedbasedoncomponents
10.1.500 ToolsandTechnologies CommerceConnect 176330 Application (Alsofixedin10.1.400.x)
ECCSupplierRejectedchangedrequestforduedatenotrevertedback(Alsofixed
10.1.500 ToolsandTechnologies CommerceConnect 177465 Application in10.1.400.x)
ECCCustomerQuoteadminpricingupdate,multiplelocations(Alsofixedin
10.1.500 ToolsandTechnologies CommerceConnect 178298 Application 10.1.400.x)
ECCCustomerStockinquiryforkitswherecomponentdoesnotexistforlocation
10.1.500 ToolsandTechnologies CommerceConnect 178299 Application shouldnotreturn0
ECCCustomerCreationoforderstopsworkingwiththefollowingerror:Indexout
10.1.500 ToolsandTechnologies CommerceConnect 179938 Application ofrange(Alsofixedin10.1.400.x)
10.1.500 ToolsandTechnologies CommerceConnect 180205 Application ECCCustomerRFQupdate(CRQU)needstostoreadditionsalesrepID
10.1.500 ToolsandTechnologies CommerceConnect 180208 Application ECCCustomerCustomersearchesbysalesrepneedtoworkformultiplecustomers
ECCCustomerQuoteupdaterevertsunitpricebacktolistprice(Alsofixedin
10.1.500 ToolsandTechnologies CommerceConnect 180591 Application 10.1.400.x)
10.1.500 ToolsandTechnologies CommerceConnect 180827 Application ECCCustomerQuotedisplayofpricedatashouldbenet(Alsofixedin10.1.400.x)
ECCCustomerQuoteUpdate(CRQU)functionalitydoesnotworkforconfig
10.1.500 ToolsandTechnologies CommerceConnect 181338 Application clone/editandaddresschange(Alsofixedin10.1.400.x)
10.1.500 ToolsandTechnologies CommerceConnect 181762 Application ECCCustomerSalesrepbasketaddeddiscountisignored(Alsofixedin10.1.400.x)
10.1.500 ToolsandTechnologies CommerceConnect 182814 Application SQLInjectionerrorsinSI.ECCLib
ECCCustomerConfiguredcolumns,suchaslinedescandcommentarenotsaved
10.1.500 ToolsandTechnologies CommerceConnect 183322 Application toorderline(Alsofixedin10.1.400.x)
CustomerForconfiguredpartsorderandquotecreateneedtoexecutedocrules
10.1.500 ToolsandTechnologies CommerceConnect 184393 Application (Alsofixedin10.1.400.x)
10.1.500 ToolsandTechnologies CommerceConnect 185989 Application ECCCustomerReconfigureofpartwithoutsavingquotedoesnotupdate
ECCCustomerEditingofanexistingquoteandreconfigureofapartrevertspart
10.1.500 ToolsandTechnologies CommerceConnect 186722 Application numberback
ECCCustomerTaxexemptionsarenotbeentakenintoaccountwhentheSOis
10.1.500 ToolsandTechnologies CommerceConnect 187763 Application createdinECC
ECCCustomerOrdersfromwebthatareintendedtobeonaccountarerequiringa
10.1.500 ToolsandTechnologies CommerceConnect 187979 Application creditcardname
10.1.500 ToolsandTechnologies Conversions 172145 Tools BaseupdatedirectiveonUBAQismigratedwitherrors
10.1.500 ToolsandTechnologies Conversions 176565 Tools BAQUpgradeInvestigateclientDBupgradeissues

Page103
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


10.1.500 ToolsandTechnologies Conversions 176749 Tools DatabaseMigrationCollationconflictwhenupgradingdatabase
DatabaseMigrationUDdatamigrationfromtableProjectCst_UDdoesnotworkin
10.1.500 ToolsandTechnologies Conversions 177771 Tools Epicor10.1(Alsofixedin10.1.400.x)
DatabaseMigrationE905702amigrationtoE10.0receiveserror"ErrorStaging
TablesMigration:Mobility_UDMigration.sql.Conversionfailedwhenconvertingthe
10.1.500 ToolsandTechnologies Conversions 178139 Tools nvarcharvalue'2074433193'todatatypeint"
DatabaseMigrationDBmigrationgridhasDDLobjectonStatus&ExecutedTime
10.1.500 ToolsandTechnologies Conversions 178672 Tools (Min)columns
DatabaseMigrationHighlightthewordErrorintheDatabaseupgradeerrorlogso
10.1.500 ToolsandTechnologies Conversions 178976 Tools thatitismorevisibletousers
DatabaseMigrationMigrationfromEpicor9.05.702ASQLtoEpicorERP10.1.400
creatingaerp.vendor_ud_udtableandcausingerrorsinthemigrationlogbecauseit
10.1.500 ToolsandTechnologies Conversions 179229 Tools doesnotcontainasysrowidfield(Alsofixedin10.1.400.x)
DatabaseMigrationCertainICEtables,suchasxFileAttch,Memo,MemoCat,and
SysagentdonotgetcopiedoverduringthemigrationfromEpicor9toEpicor10
10.1.500 ToolsandTechnologies Conversions 179554 Tools (Alsofixedin10.1.400.x)
DatabaseMigrationDBMigrationtoolcannotchangetheSQLTimeOutwhenthe
10.1.500 ToolsandTechnologies Conversions 179795 Tools databaseisupgradedtothecurrentcode
DatabaseMigrationMigrationfrom10.0to10.1stopswithanerroronconversion
10.1.500 ToolsandTechnologies Conversions 181440 Tools 50(Alsofixedin10.1.400.x)
DatabaseMigrationColumndoesnotallowDBNull.ValueerrorsforNonConf_UD
10.1.500 ToolsandTechnologies Conversions 182386 Tools andJobHead_UDonTask600duringEpicor9.05to10.1migration
DatabaseMigrationErrordisplaysifotherprogressdatabasesaremigratedusing
10.1.500 ToolsandTechnologies Conversions 182387 Tools thesameinterimdatabasename(Alsofixedin10.1.400.x)
10.1.500 ToolsandTechnologies Conversions 182597 Tools DatabaseMigrationLabelsforUDFieldsonBAQsdonotcarryfromE9to10.1
BPMBPMUpgrade10to10reportsanonfatalerrorupgradingthecustomization
10.1.500 ToolsandTechnologies Conversions 182702 Tools onIce.Company.UpdateExt(Alsofixedin10.1.400.x)
BAQUpgradereportserrorconvertingBAQsonSaaS,iftheBAQismarkedas
10.1.500 ToolsandTechnologies Conversions 182757 Tools CompanyIndependent/TenantDependent
10.1.500 ToolsandTechnologies Conversions 184018 Tools DatabaseMigrationEPICxcompaniesseededincustomerdatabases
DatabaseMigrationSeveralICEtablespotentiallyhavemissingrowsaftermigrating
10.1.500 ToolsandTechnologies Conversions 184114 Tools fromEpicor9.05.702AtoEpicorERP10.1.400.7(Alsofixedin10.1.400.x)
RefreshPartBinQOHFromPartTranCorruptingQOHforpackagingpartsconsumed
10.1.500 ToolsandTechnologies Conversions 185384 Application whenpickingintoaPCID
DatabaseMigrationSeedpreparationscriptisnotexecutedduringdatabase
10.1.500 ToolsandTechnologies Conversions 187646 Tools upgradefrom10.0.600.3to10.1.500
DatabaseMigrationE9Progressto10.1.500.0migrationfailsduetoinvalidcolumn
10.1.500 ToolsandTechnologies Conversions 188666 Tools name

Page104
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


CustomerRelationship PriceListReviewingonListtab,BasePricevaluechangeswhenmovingwithscroll
10.1.500 ToolsandTechnologies Management 173921 Application barandkeyboard
ObjectreferenceerrorafteraMESMainMenuCustomizationisVerifiedin
10.1.500 ToolsandTechnologies Customization 157391 Tools CustomizationMaintenance
CandeleteaCustomColumnLikevaluethatwascreated,thoughaftersavingthe
10.1.500 ToolsandTechnologies Customization 161339 Tools deleteandrunningtheCustomization,theCustomColumnLikevaluereturns
MiscSectiondoesnotincludetheManualWidthvaluesfortheEpiRetrieverCombo,
10.1.500 ToolsandTechnologies Customization 164502 Tools ComboandUltraCombo
Whenerasingtextboxesandaddinganew,onethrowsanerrorandifyoudeleteit,
10.1.500 ToolsandTechnologies Customization 171794 Tools thesheetiserasedtoobecausethenewobjectisnotselectable
ThetypeornamespacenameUOMClasscouldnotbefound,erroroccurswhile
10.1.500 ToolsandTechnologies Customization 172928 Tools verifyingacustomization
10.1.500 ToolsandTechnologies Customization 173096 Tools SomeLocalizationsThrowexceptioninControlDesignerBase
10.1.500 ToolsandTechnologies Customization 173142 Tools UDxxfieldsarenotsavedonallSalesOrderswheredatawasentered
Indexwasoutofrange;itmustbenonnegativeandlessthanthesizeofthe
10.1.500 ToolsandTechnologies Customization 173147 Tools collectioninMultiTenant
10.1.500 ToolsandTechnologies Customization 173287 Tools CustomizationMaintsearchignoresthestatusnotyetvalidatedforselection
EpiComboondockingsheetcausesobjectreferenceerrorwhennotindeveloper
10.1.500 ToolsandTechnologies Customization 174945 Tools mode
AfterupgradingEpicor,anE9.05.700cCustomizationdisplayscorrectlyin
E9.05.702a,inE10.0.700.4andinE10.1.300.4,However,afterupgradingto
10.1.500 ToolsandTechnologies Customization 174947 Tools E10.1.301.1,thecustomizedBaseandCustomcontrolsareremoved
10.1.500 ToolsandTechnologies Customization 176858 Tools PossibleproblemwithIce.Adapters.CompanycalltoGetRows
ClickingTestCodecausesfalsecompileerrorforsomecustomizations(Alsofixedin
10.1.500 ToolsandTechnologies Customization 179031 Tools 10.1.400.x)
CustomizationwithembeddedDashboardPanelcauseserrorinPersonalizationlayer
10.1.500 ToolsandTechnologies Customization 179293 Tools (Alsofixedin10.1.400.x)
ErrordisplayedwhenaverifiedcustomizationfromEpicor9ismigratedtoEpicor
10.1.500 ToolsandTechnologies Customization 179940 Tools ERP10:Lengthcannotbelessthanzero(Alsofixedin10.1.400.x)
10.1.500 ToolsandTechnologies Customization 182228 Tools BPMcallcontextdatasetdoesnotworkincustomizationlayer
CustomizationMaintenanceshouldverifytheNewNameenteredandifitcontains
SpacesintheID,changethoseSpacestoUnderscores"_",justlikeinCustomization
10.1.500 ToolsandTechnologies Customization 182292 Tools Tools
PersonalizationCRMCalllogcausesexceptionwhenusingTools>Optionsand
10.1.500 ToolsandTechnologies Customization 183111 Tools cannotsethotkeys
10.1.500 ToolsandTechnologies Dashboards 132672 Tools AfterRefreshingtwocolumns,SysRowID+rowModdisplayintrackerview
10.1.500 ToolsandTechnologies Dashboards 156263 Tools Cannotdeploydashboard
DashboardsKanbanMonitorstopsworkingwhenitisopenedandclosedvery
10.1.500 ToolsandTechnologies Dashboards 161089 Tools often

Page105
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


10.1.500 ToolsandTechnologies Dashboards 161173 Tools Modificationofsystemdashboards(withcompany=)shouldbepossible
Inthegridproperties,movingfieldlocationisnotsavedonthegridoncedashboard
10.1.500 ToolsandTechnologies Dashboards 162112 Tools hasbeensaved
Savingchangesfromthegridviewofadashboardapplieschangestothefiltering
10.1.500 ToolsandTechnologies Dashboards 162372 Tools tracker
10.1.500 ToolsandTechnologies Dashboards 163894 Tools Performanceissueonmultipartpubandmultipartsub
10.1.500 ToolsandTechnologies Dashboards 164071 Tools PublishercomboboxisdisabledafterclickingonEPMTypecombo
10.1.500 ToolsandTechnologies Dashboards 165035 Tools RowRulesarenotsaved
10.1.500 ToolsandTechnologies Dashboards 165505 Tools Updatabledashboardsdonotallowpromptforfieldsfromsubquery
CannotpastevaluesintofieldsofanembeddedURL(website)forDeployed
10.1.500 ToolsandTechnologies Dashboards 168946 Tools Dashboards
10.1.500 ToolsandTechnologies Dashboards 169391 Tools ProgramdoesnotalwayscaptureOwningCompanyforUsercreateddashboards
10.1.500 ToolsandTechnologies Dashboards 169458 Tools InconsistentbehaviorofUsercreatedGridImagecolumnsonRuntimeDashboards

10.1.500 ToolsandTechnologies Dashboards 172970 Tools DashboardwithTrackerViewusingEpicombomodifiestheGridResultsonassembly


10.1.500 ToolsandTechnologies Dashboards 173347 Tools Cannotdeleteadashboardthathasallcompaniessettotrue
UnabletocreateadashboardwiththesamenameofanAllCompaniesdashboard
10.1.500 ToolsandTechnologies Dashboards 173463 Tools fromanotherCompany
Dashboards"ReportFile"fieldisnotvalidatedwhenuserimplementadifferent
locationfromtheonetheindicatedinthe"ServerDataDirectory"+
10.1.500 ToolsandTechnologies Dashboards 173730 Tools "CustomReports"bytypingorpastingthepaths
10.1.500 ToolsandTechnologies Dashboards 174081 Tools Comboboxontrackerpaneldoesnotdisplaydropdownvalueswhenopened
Unexpectederrorwhencopyingsystemdashboardswithlargedescriptions(Oruser
10.1.500 ToolsandTechnologies Dashboards 174109 Tools definedwithlargecaption)
10.1.500 ToolsandTechnologies Dashboards 174653 Tools Dashboardwithinvalidnamecanbesaved
10.1.500 ToolsandTechnologies Dashboards 174674 Tools Improveexceptiontextwhenassemblycanbefoundbutcannotbeaccessed
10.1.500 ToolsandTechnologies Dashboards 174679 Tools MultiThreadedSave,StartandCloseButtonsareoutofalignment
10.1.500 ToolsandTechnologies Dashboards 174935 Tools "Matches"and"StartWith"conditionsaredifferentinEpicor9andEpicorERP10
10.1.500 ToolsandTechnologies Dashboards 175015 Tools Epicombofielddoesnotdisplaydropdowninfofordashboardruntime
10.1.500 ToolsandTechnologies Dashboards 175038 Tools EPMitemsdonotworkfromdashboardassemblies(theyonlyworkindesignmode)
10.1.500 ToolsandTechnologies Dashboards 175124 Tools Dot.inmatchesbehavesdifferentlyin10.1.300.1to9.05.702.12A
10.1.500 ToolsandTechnologies Dashboards 175203 Tools UnabletomodifyqueryPublishorFiltersettings(Alsofixedin10.1.400.x)
ErrorwhenDashboardswithonlyURL/XSLTviewsaredeployed(orgeneratedits
10.1.500 ToolsandTechnologies Dashboards 175541 Tools webform)fromdashboardMaintenanceform
10.1.500 ToolsandTechnologies Dashboards 175711 Tools Whenaddingtwotrackerviews,theyarenotfilledafterrefreshing
DashboardswithalotofEPMURL/XSLTviewsthrowerrorswhenuserdeletesthose
10.1.500 ToolsandTechnologies Dashboards 176158 Tools viewelements
10.1.500 ToolsandTechnologies Dashboards 176196 Tools ProgramignoresAdvColEditorOrderforUpdatableBAQdropdowns
10.1.500 ToolsandTechnologies Dashboards 177073 Tools InvalidNavControlsettingsmessagewhenlaunchingdashboards
10.1.500 ToolsandTechnologies Dashboards 177569 Tools UpdatableDashboardwithGridColumnFilterswillnotupdateMultipleRows

Page106
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


10.1.500 ToolsandTechnologies Dashboards 177768 Tools NomessageisthrownaftercopyingadashboardandenteringanexistingID
10.1.500 ToolsandTechnologies Dashboards 178241 Tools Deployingadashboardwithembedgridcauseserror
Dashboardsarenotimportedthefirsttimeafteropeningthedashboardsform(Also
10.1.500 ToolsandTechnologies Dashboards 178811 Tools fixedin10.1.400.x)
10.1.500 ToolsandTechnologies Dashboards 178983 Tools ComboontrackerviewdisplaystheIDoftheoptioninsteadofthedescription
EnableRefreshAllCheckboxandRefreshAllIconnotretrievedwhenDevModeisoff
10.1.500 ToolsandTechnologies Dashboards 179697 Tools (Alsofixedin10.1.400.x)
10.1.500 ToolsandTechnologies Dashboards 180569 Tools Captionsremainswhenclearingformafterenablingdevelopermodeagain
GridTextistemporarilyunreadablewhenusingRowRuleHighlightinginUpdatable
10.1.500 ToolsandTechnologies Dashboards 181333 Tools DBs
Ifthedecimalsymboliscommaandyouhavetwonumbersafterthecommawhatis
10.1.500 ToolsandTechnologies Dashboards 182658 Tools notzeroitwillputastarbeforethenumber.
10.1.500 ToolsandTechnologies DatabaseAdministration 174318 Tools Setthedatabaseconfiguration"transformnoisewords"to1forParttable
10.1.500 ToolsandTechnologies DatabaseAdministration 177820 Tools SchemaChangesAddthreeindexesfortheproductconfiguratorteam
10.1.500 ToolsandTechnologies DatabaseAdministration 184305 Tools Dropduplicatedindexes
10.1.500 ToolsandTechnologies DatabaseAdministration 185528 Tools Fixesrelatedto"RelatedToFile"forHelpDeskMemos(Alsofixedin10.1.400.x)
EngineeringWorkbenchIndex1iseithernegativeoraboverowscountnavigating
10.1.500 ToolsandTechnologies Engineering 167350 Tools intabs
10.1.500 ToolsandTechnologies EnterpriseSearch 166639 Tools EnterpriseSearchicononSearchPanelonModernShellhastheoldimage
10.1.500 ToolsandTechnologies EnterpriseSearch 167079 Tools DBcreationshoulddefaulttosimpleloggingtoavoidunnecessaryHDusage
10.1.500 ToolsandTechnologies EnterpriseSearch 167113 Tools Searchindexwizardpreventssettingappservertimeoutgreaterthan300
10.1.500 ToolsandTechnologies EnterpriseSearch 169393 Tools Authorizationerrorcausedbyregionaldatesettings(Alsofixedin10.1.400.x)
10.1.500 ToolsandTechnologies EnterpriseSearch 169408 Tools TheDetailsDialogboxoftheindexmustbeuneditable
TheEndpointlabelontheSearchIndexCreationWizard,shouldbeBindinginstead
10.1.500 ToolsandTechnologies EnterpriseSearch 169525 Tools ofEndpoint
10.1.500 ToolsandTechnologies EnterpriseSearch 171382 Tools EntSearch/SocialAllresultsforquotesaredescribedaszES_Quote(BAQName)
OverwriteflaginstructionshouldbedisplayedwhencreatingtwoESindiceswith
10.1.500 ToolsandTechnologies EnterpriseSearch 172088 Tools samename
10.1.500 ToolsandTechnologies EnterpriseSearch 172571 Tools TheSearchIndexCreationWizardisonthebackgroundwhencreatinganIndex
10.1.500 ToolsandTechnologies EnterpriseSearch 177875 Tools ErroraddingBAQtoindexwhenusingwindowsauthentication
PreventcreatingtwoESindiceswiththesamenameinsidetheextensiononAdmin
10.1.500 ToolsandTechnologies EnterpriseSearch 179100 Tools Console
Searcheswithspacesdonotworkwhenchangingfromgridtoclassicandback(Also
10.1.500 ToolsandTechnologies EnterpriseSearch 180505 Tools fixedin10.1.400.x)
10.1.500 ToolsandTechnologies EnterpriseSearch 180830 Tools Emptytemplateismissingsubfolders,resultinginerrorscreatingindexfromit
10.1.500 ToolsandTechnologies EnterpriseSearch 180832 Tools CannotclearoutusersetLikeFieldafterinitialsaveofchange
10.1.500 ToolsandTechnologies EnterpriseSearch 181596 Tools Installationprocessneedstovalidateserviceaccount
10.1.500 ToolsandTechnologies EnterpriseSearch 184611 Tools HttpsbindingsdonotrequireDNSIdentity
10.1.500 ToolsandTechnologies EnterpriseSearch 184879 Tools SystemBAQscannotbeusedinQuickSearches
10.1.500 ToolsandTechnologies EnterpriseSearch 184941 Tools RefreshBAQontemplatestopsworkingwithexception

Page107
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


10.1.500 ToolsandTechnologies EnterpriseSearch 184942 Tools ShowIndexLogactioninEpicorSearchManagerstopsworkingwithexception
10.1.500 ToolsandTechnologies EnterpriseSearch 184949 Tools Replaceexistingflashbasedcopy/pastelibrarywithamoremodernoption
10.1.500 ToolsandTechnologies EnterpriseSearch 184950 Tools BAQselectionwizardinEpicorSearchManagershouldbelarger
10.1.500 ToolsandTechnologies EnterpriseSearch 184951 Tools ResultsinBAQselectionwizarddisplayasduplicates
EnterpriseSearchDoesnotapplysamecontextmenusecurityasdoesbase
10.1.500 ToolsandTechnologies EnterpriseSearch 186740 Tools application

10.1.500 ToolsandTechnologies ESCAdminConsole 177454 Tools AdminConsolestopsworkingonclosingwhenDocumentTrackingViewloadstraces


AdminConsolestopsworkingifmovingfocusfromDocumentTrackingViewto
10.1.500 ToolsandTechnologies ESCAdminConsole 177456 Tools anothernodewhentheViewloadstraces
AdminConsolestopsworkingonclosingwhenDocumentTrackingViewisemptyor
10.1.500 ToolsandTechnologies ESCAdminConsole 178039 Tools DCviewcompletedloadingoftraces
10.1.500 ToolsandTechnologies ESCAdminConsole 182470 Tools AdminConsolestopsworkingonDocumenttrackingviewcreation
10.1.500 ToolsandTechnologies ESCAdminConsole 183146 Tools ViewActivityProgressignoresuserpermissions
10.1.500 ToolsandTechnologies ESCAdminConsole 183880 Tools ObjectChoicedoesnotdisplayinDocumenttrackingasacondition
AsynchronoussubworkflowcandisposeEpicorsessionofanothersynchronoussub
10.1.500 ToolsandTechnologies ESCDESRouter 179108 Tools workflow
ImportofWebreferenceITSMwebservice(party.asmx)stopsworkingwithInvalid
10.1.500 ToolsandTechnologies ESCDESRouter 179259 Tools token'+'
10.1.500 ToolsandTechnologies ESCDESRouter 182833 Tools EnqueuedRequestsforAsyncpoolshouldignorefileswithemptysize
ServiceConnectstopsworkingwhencallsfortheWCFwebservicewithUDfieldsof
10.1.500 ToolsandTechnologies ESCDESRouter 184736 Tools Epicor10.1
ServiceConnectTrackingarchivingarchivesrandomactivityprocessesshouldbe
10.1.500 ToolsandTechnologies ESCOther 178196 Tools documented
TheBackup/RestoreoperationsworkincorrectlyforScheduledbusinesseventswith
10.1.500 ToolsandTechnologies ESCOther 178995 Tools identicalpropertiesofSourceObject,Sourceaction,Companycode,Financialyear
LiteralvaluecannotbeassignedinXMLMappertoanelementwith
10.1.500 ToolsandTechnologies ESCOther 183834 Tools maxOccurs="unbounded"
10.1.500 ToolsandTechnologies ESCOther 185041 Tools TaskMonitorunhandledexceptionswithAppVerifier(w3wp)
EpicorServiceConnectOtherOutdatednoteonMicrosoftSQL2008SP1inthe
10.1.500 ToolsandTechnologies ESCOther 185454 Tools Softwareprerequisitessection;relatedoutdatedTroubleshootingsection
10.1.500 ToolsandTechnologies ESCOutputChannel 182246 Tools Fixedwidthoutputconverterduplicatesrecords
10.1.500 ToolsandTechnologies ESCTaskMonitor 182327 Tools TaskMonitorErrorwhenaddingsecondattributewithnonemptyURI
10.1.500 ToolsandTechnologies General 51644 Application SupplierPerformancehasincorrectcalculationsforOnTimeLateDate
Needtoeliminatetheuseofstaticfieldsthatcanleakdatabetween
10.1.500 ToolsandTechnologies General 164022 Application sessions/companies
10.1.500 ToolsandTechnologies General 166017 Tools Projecttemplatescreateaparameterlessconstructor
GeneralFrameworkBizRuleEngineExtendermemoryleakOrderHed(Alsofixedin
10.1.500 ToolsandTechnologies General 167944 Application 10.1.400.x)

Page108
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


GeneralFrameworkUsingUpdateExttocreateanewServiceCallCenterFSCallHd
10.1.500 ToolsandTechnologies General 170674 Tools recordwithCallNum=0causesanerror
10.1.500 ToolsandTechnologies General 171107 Application GenericImportProcessSystemMonitorchanges
10.1.500 ToolsandTechnologies General 172662 Application MESMenuLaborInterfaceOptionasHoursarenotupdatedtothetimerecorded
RefreshPartBinQOHFromPartTranErrordisplayedwhenLanguageandFormat
10.1.500 ToolsandTechnologies General 173320 Application CultureisFrench(Canada)(Alsofixedin10.1.400.x)
10.1.500 ToolsandTechnologies General 173459 Application ExternalCRMInterfaceIssuesforExternalCRMIntegration
10.1.500 ToolsandTechnologies General 173617 Application IncorrectspellingofErp.Internal.Lib.TaskAgentExtenion(ExtenSion)
GeneralEnablethechangelogoptionandattachmentsfortablesManufacturer
10.1.500 ToolsandTechnologies General 174717 Application andPartXRefMfg
MenuMaintenanceSecurityIDduplicatedinSetupandRecurringCycleon
10.1.500 ToolsandTechnologies General 174997 Application AccountsPayable
Addpercentagecompletetomigrationlogforautorunmigrationsequence1100
10.1.500 ToolsandTechnologies General 175316 Application CreatePartCostforPartPlant
ImageLabelinImageExportwindowdisplaysInitializePhysicalInventoryinsteadof
10.1.500 ToolsandTechnologies General 175945 Application ImageExport
10.1.500 ToolsandTechnologies General 176426 Application Queriesshoulduseacompanyparameter,ratherthanSession.CompanyID
10.1.500 ToolsandTechnologies General 176725 Application MESMenuEndActivity,MaterialTagreportnotdisplayingthefullOperationID
10.1.500 ToolsandTechnologies General 177045 Application Companyexistsinatable,butisnotusedinthequerywhereclause
10.1.500 ToolsandTechnologies General 177063 Application GeneralCompanyexistsonatablebutisnotusedinthequerywhereclause
10.1.500 ToolsandTechnologies General 177227 Application Companyexistsonatablebutisnotusedinthequerywhereclause
ConversionWorkbenchConversionSeq8980
(GLConverCurrencyRevalueAcctFormat)displaysanerror(Nullreference)during
10.1.500 ToolsandTechnologies General 177423 Application migration(Alsofixedin10.1.400.x)
ConversionWorkbenchGLConvertCurrencyRevalueAcctFormat8980Support
10.1.500 ToolsandTechnologies General 177576 Application triggerscorrectly
ConversionWorkbenchGLConvertConsolidationsForE1019020Supporttriggers
10.1.500 ToolsandTechnologies General 177580 Application correctly
10.1.500 ToolsandTechnologies General 177649 Application MESMenuMESisnotupdatingtheuserIDwhenswitchingemployees

10.1.500 ToolsandTechnologies General 177922 Application CoreProcessesCompanyexistsinatable,butisnotusedinthequerywhereclause


MESMenuEndDowntimesetsthestatustoEnteredinsteadofApproved(Also
10.1.500 ToolsandTechnologies General 177939 Application fixedin10.1.400.x)
10.1.500 ToolsandTechnologies General 178936 Application DatabasePurgeandSummarizeNologinsystemmonitorafterPOpurge
MESMenuMESStatuswillremainasWIPforserialnumberswhenusingReport
10.1.500 ToolsandTechnologies General 179197 Application QtyonMESandthelast(final)operationismarkedasautoreceive
TransactionLogPrintOptionsshouldnotbeenabledwhentheapplicationis
10.1.500 ToolsandTechnologies General 179356 Application openedfromJobReceipttoInventory

Page109
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


Publicmethodsinpartialclassneedtobemadeprivateortheymaybecomeservice
10.1.500 ToolsandTechnologies General 180058 Application methods
CrossApplicationorothernonmenurelatedListofprojectsthatstillhavethetag
10.1.500 ToolsandTechnologies General 180480 Application TO_CONVERT_2012R
CrossApplicationorothernonmenurelatedListofprojectsthatstillhavethetag
10.1.500 ToolsandTechnologies General 180485 Application TO_CONVERT_2012R
CrossApplicationorothernonmenurelatedSCMListofprojectsthathavethetag
10.1.500 ToolsandTechnologies General 180487 Application TO_CONVERT_2012R
PurchasingPartRevisionfielddoesnotretrievetheRevisionvaluefortheSite
10.1.500 ToolsandTechnologies General 181307 Application beingworkedon
PlantConfigurationControlMaxNumberofPCIDstoGenerateonlyallowsvalues
10.1.500 ToolsandTechnologies General 181427 Application upto9
RefreshPartBinQOHFromPartTranRunningprocessundoesanySplit/Merge
10.1.500 ToolsandTechnologies General 181838 Application madetothePart(Alsofixedin10.1.400.x)
10.1.500 ToolsandTechnologies General 182172 Application CompanyConfigurationUpdateEpicorHelpdescriptionforAR/AP
DMRProcessingNotupdatingLaborcostonmaterialcorrectlywhencostis
10.1.500 ToolsandTechnologies General 182199 Application overriddeninRMA
PlantConfigurationControl"Failedtoenableconstraints"errorappearswhen
10.1.500 ToolsandTechnologies General 182441 Application searchingforSiteonanonMultiSiteenvironment(Alsofixedin10.1.400.x)
CrossApplicationorothernonmenurelatedQueriestofixupunreferenced
10.1.500 ToolsandTechnologies General 183039 Application parametersandinstancemembers
10.1.500 ToolsandTechnologies General 183867 Application GeneralUpgradescriptstocheckinformationclearedoutofICPOrelatedtables
DeleteRowmessageisdisplayedonprocessscreenswhenusingthekeyboardto
10.1.500 ToolsandTechnologies General 184107 Application deletearowintheFiltertab
Sessionvaluesarenotstored/retrievedbecauseofanincorrectuseofstring.Format
10.1.500 ToolsandTechnologies General 184237 Application atPartandSalesOrder
PackageControlPCIDVerifythatthecodeusescorrectstringsforreferencesto
LabelType,PkgControlStatusandLabelPrintControlStatus(MASTER,MIXED,
10.1.500 ToolsandTechnologies General 184243 Application MIXEDMASTER,CONFIRMandCONFIRMED)
ServerFileDownloadClientstopsworkingwhentryingtodownloadfromServer
10.1.500 ToolsandTechnologies General 185057 Application FileDownload
PackageControlPCIDVerifythatthecodeusescorrectstringsforreferencesto
LabelType,PkgControlStatusandLabelPrintControlStatus(MASTER,MIXED,
10.1.500 ToolsandTechnologies General 185595 Application MIXEDMASTER,CONFIRMandCONFIRMED)
CompanyAPInvoiceDatesSetUpfieldsdefaultblankaftermigratingto10.1.100
10.1.500 ToolsandTechnologies General 186422 Application orabove
10.1.500 ToolsandTechnologies General 186563 Tools ICEBuildAddcheckfor.net4.6.1to10.1.500installer
10.1.500 ToolsandTechnologies General 187736 Application SCMRelatedMenusHaveaduplicatedSecurityCode
10.1.500 ToolsandTechnologies General 189111 Application ScriptFixMigratePatchFldBankTran.sqlupgradescript

Page110
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


10.1.500 ToolsandTechnologies GeneralFramework 133676 Tools Menu/CustomizationCannotdraganddropmenuoptions
10.1.500 ToolsandTechnologies GeneralFramework 133677 Tools ExceptiononLogin,ChangePlant,ChangeUser
"EpicorisOffline"featureoccasionallythrowsaGetRowsexceptionandcancause
10.1.500 ToolsandTechnologies GeneralFramework 147816 Tools Epicor.exetostopworking
10.1.500 ToolsandTechnologies GeneralFramework 149126 Tools EWAFrameworkUpdatedoesnothappenwhenexpected
PersonUnexpectederrormessagewheninsertingaduplicateIDthroughtheList
10.1.500 ToolsandTechnologies GeneralFramework 151768 Tools sheet
ExtendedUDTableMaintenanceWhenrunningBaseUD01&UD02Menusand
thenselectingtheListGrid,allUDfieldsarenotlisted;thisgivestheimpression
10.1.500 ToolsandTechnologies GeneralFramework 153870 Tools thesefieldsdonotexistintheUD01andUD02tables
10.1.500 ToolsandTechnologies GeneralFramework 159692 Tools ServerSideerrorwhenchangingbarpanelsoptions
ExtendedUDTableMaintenanceFormatfordefaultvalueisignoredwhenthe
10.1.500 ToolsandTechnologies GeneralFramework 161948 Tools recordiscreatedthefirsttime
SearchFrameworkMovingcolumnsandaddingfiltersSearchGridcauseserrors
10.1.500 ToolsandTechnologies GeneralFramework 163785 Tools whensearching
ZFieldDecimalwasremovedfrombeingaglobalcacheiteminthedatalayer(Also
10.1.500 ToolsandTechnologies GeneralFramework 166105 Tools fixedin10.1.400.x)
10.1.500 ToolsandTechnologies GeneralFramework 167443 Application Whenmultiplepaymentsaremade,onlythe1stlinedisplaysUDfielddata
10.1.500 ToolsandTechnologies GeneralFramework 167781 Tools SearchFrameworkMultipleissuesonNamedSearch
10.1.500 ToolsandTechnologies GeneralFramework 169616 Tools Formatfieldisnotsavedonextendedpropertymaintenance
10.1.500 ToolsandTechnologies GeneralFramework 169669 Tools Db.Currentshouldbeobsolete
ClearHistorybuttonatthePreferencesscreenisnotstylizedasaregularultra
10.1.500 ToolsandTechnologies GeneralFramework 170038 Tools button
Differencesondisplayed/hiddenoptionsbetweenShellandclassicmodeswhen
10.1.500 ToolsandTechnologies GeneralFramework 171359 Tools Singlesignonisimplemented
EpicordataiseithernotdisplayedcorrectlyorcanbeeditedinExtendedPropMaint
10.1.500 ToolsandTechnologies GeneralFramework 171363 Tools UI
10.1.500 ToolsandTechnologies GeneralFramework 171470 Tools ExtendedUDTableMaintenancehascacheissues
10.1.500 ToolsandTechnologies GeneralFramework 171574 Tools FormsCustomization/localizationstopsworkingifBASEcurrencydoesnotexist
SearchFrameworkQuickSearchcannothandleasecondsearch,QuickSearch
10.1.500 ToolsandTechnologies GeneralFramework 171998 Tools windowcloses
Onceuser'scurrentcompanyisdeletedbymanager,userisnotabletologinusing
10.1.500 ToolsandTechnologies GeneralFramework 172258 Tools anothervalidcompany
CustomFieldMapUDMapColumntableisnotmigratedfromEpicor9toEpicorERP
10.1.500 ToolsandTechnologies GeneralFramework 172389 Tools 10
MinorerrorintheBizRuleEngine"ValidateReferentialIntegrityerrorreporting"when
ValidateReferentialIntegritystopsworking;errorcontainsthelabelofthelatestfield
10.1.500 ToolsandTechnologies GeneralFramework 172585 Tools inthecolumnlistifthisfieldhasalabel
10.1.500 ToolsandTechnologies GeneralFramework 172623 Tools TranslationofMainmenudoesnotdisplay(Alsofixedin10.1.400.x)

Page111
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


10.1.500 ToolsandTechnologies GeneralFramework 172732 Tools SearchFrameworkDetailtabshouldbethefirsttobedisplayedonNamedSearch
UDTableEntryExtendedUDMaintenance"UserCharnn"namingpattern;adda
10.1.500 ToolsandTechnologies GeneralFramework 172779 Tools serversidefixaswell
10.1.500 ToolsandTechnologies GeneralFramework 172948 Tools IncompleteexceptionsdisplayintheClientExceptionBox
CreditcardauthenticationmoduleforESDM2.4stopsworkingastheweb
10.1.500 ToolsandTechnologies GeneralFramework 173441 Tools componentsarenotcompatiblewithnewerbrowsers
10.1.500 ToolsandTechnologies GeneralFramework 173462 Tools DatamodelregencannotbeperformedonCSGtableProcErrorInfo

10.1.500 ToolsandTechnologies GeneralFramework 173610 Tools EpiControlsCurrencyfieldformatdisplayedasisifdefinedusinglowercase(onSD)


10.1.500 ToolsandTechnologies GeneralFramework 173828 Tools RelatedToSysRowIDismissinginMemoEntrymethods
10.1.500 ToolsandTechnologies GeneralFramework 173975 Tools BAQCombodoesnotkeepvaluewhenusingdatasetbindingcriteria
10.1.500 ToolsandTechnologies GeneralFramework 174017 Tools Usercanconnectautomaticallyevenifhavingnopermission
F5SwitchcannotoffloadSSLprocessingfromIIS;needaWCFextensiontousethe
10.1.500 ToolsandTechnologies GeneralFramework 174100 Tools F5asintermediary
10.1.500 ToolsandTechnologies GeneralFramework 174295 Tools UnittestrunningintheCIbuilddonotloadextensionscorrectly
ZDataTableservicedoesnotpreventchangingthedatatypeonanexistingUD
10.1.500 ToolsandTechnologies GeneralFramework 174723 Tools column
10.1.500 ToolsandTechnologies GeneralFramework 174873 Tools ContextMenuCustomerContextMenuerror
10.1.500 ToolsandTechnologies GeneralFramework 175024 Tools ConversionWorkbenchPendingtasksdonotruniftheCWformisclosed
10.1.500 ToolsandTechnologies GeneralFramework 175289 Tools IncorrectwindowsizewhenremovingitemfromPreferences>Tabs
QuickSearchfiltersareappliedtotheleftouterjoinwhereclauseinsteadofgeneral
10.1.500 ToolsandTechnologies GeneralFramework 175448 Tools whereclause
10.1.500 ToolsandTechnologies GeneralFramework 175450 Tools ICEDiagnosticsDataFixcannotbeexecutedwhenrunasprocess
10.1.500 ToolsandTechnologies GeneralFramework 175456 Tools CoreFrameworkServicesCodecleanupinOperationDispose
10.1.500 ToolsandTechnologies GeneralFramework 175463 Tools UsercannotqueryforaCompany(EPIC06)towhichhe/shedoesnothaveaccess
10.1.500 ToolsandTechnologies GeneralFramework 175799 Tools Changingcompanyusingatouchdeviceonwindows8.1causesanerror
UsingTabinSalesOrder>Linestab>GriddoesnotworkwhentheRibbonlayoutis
10.1.500 ToolsandTechnologies GeneralFramework 175826 Tools used(Alsofixedin10.1.400.x)
CustomerEntryformremainsdisabledifindevelopermode,useropensMemo
10.1.500 ToolsandTechnologies GeneralFramework 175973 Tools EntrybutcancelsfromCustomizationDialog
MultiCompanyServerProcessCannotaddnewcompaniestoexistingstartup
schedule;insteaditwasnecessarytocreateanewstartupscheduleandaddthe
10.1.500 ToolsandTechnologies GeneralFramework 176003 Application twocompaniestothenewstartuptask(Alsofixedin10.1.400.x)
PaymentEntryAnerrormessageisdisplayedwhentryingtoselecttheInvoices
10.1.500 ToolsandTechnologies GeneralFramework 176149 Tools withtheOptionofRibbonsettoTrue(Alsofixedin10.1.400.x)
10.1.500 ToolsandTechnologies GeneralFramework 176194 Tools ShouldenabletypedaccesstoErp.Lib.GlobalStrings
10.1.500 ToolsandTechnologies GeneralFramework 176242 Tools IncorrectmessagewhenmismatchversionexistsbetweenserverandDB
10.1.500 ToolsandTechnologies GeneralFramework 176342 Tools SaveConfirmationdialogcancauseproblemswithEpicorclosing
10.1.500 ToolsandTechnologies GeneralFramework 176371 Tools UpgradeUpgradeto10.1musthandleincorrectCompanyspecificSecurityrecords

Page112
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


ChangeWorkstationwhenscreenopencrashesapplicationwith"Collectionwas
10.1.500 ToolsandTechnologies GeneralFramework 176544 Tools modified;enumerationoperationmaynotexecute"

10.1.500 ToolsandTechnologies GeneralFramework 176666 Tools UnabletoregenerateDMincludingschemawithvalidtable(Alsofixedin10.1.400.x)


SearchFramework"Displaymemberisrequired"errorisdisplayedwhenclicking
10.1.500 ToolsandTechnologies GeneralFramework 176735 Tools newquicksearchvalueitem(Alsofixedin10.1.400.x)
CoreFrameworkServicesLoaderExceptionsshouldbethrownwhenextension
10.1.500 ToolsandTechnologies GeneralFramework 176815 Tools cannotbeloaded
CoreFrameworkServicesAddingawhereclauseinBeforeGetRowsmakesGetByID
10.1.500 ToolsandTechnologies GeneralFramework 176818 Tools ignoretheID
CoreFrameworkServicesAccountisunlockedwhencounterisrestartedinsteadof
10.1.500 ToolsandTechnologies GeneralFramework 176881 Tools reachingLockedOutUntil
10.1.500 ToolsandTechnologies GeneralFramework 176939 Tools CoreFrameworkServicesAccountstilllockedoutwhenitshouldnotbe
InvoiceSelectionDiscountdisabledoninvoiceselectiontabifnumberofInvoicesis
10.1.500 ToolsandTechnologies GeneralFramework 177021 Tools high
SearchFrameworkQuickSearchreturnsallrowswhenusingrightclickmenubut
10.1.500 ToolsandTechnologies GeneralFramework 177079 Tools notwhenusingsearchmenu
SessionManagementEpicor.exe.configChannelTimeToLivedefaultshouldbe9
10.1.500 ToolsandTechnologies GeneralFramework 177192 Tools (Alsofixedin10.1.400.x)
ICESearchFrameworkUnabletocreateQuickSearchusingsubquerydisplayfield
10.1.500 ToolsandTechnologies GeneralFramework 177206 Tools ascriteriacolumn
10.1.500 ToolsandTechnologies GeneralFramework 177277 Tools ServiceDesignertoolsSettingsvalueisnotsavedtosysconfigfile
10.1.500 ToolsandTechnologies GeneralFramework 177517 Tools SearchFrameworkQuickSearchusingConstant:CurrentUserisnotfunctional
IceColumn'Character01'alreadyexistsinthecollectionerrorwhencreatingan
10.1.500 ToolsandTechnologies GeneralFramework 177537 Tools Invoicegroupafterapppoolrestart(Alsofixedin10.1.400.x)
10.1.500 ToolsandTechnologies GeneralFramework 177603 Tools ICESetupcannotbeperformedwhenSQLconnectionissettotrusted
10.1.500 ToolsandTechnologies GeneralFramework 177693 Tools SaaSPerformanceissuesinSaaSdeployments(Alsofixedin10.1.400.x)
10.1.500 ToolsandTechnologies GeneralFramework 177733 Tools Companiesarenotdisplayedaccordingtothecompanywhereuserislocated
SearchFrameworkAdvancedSearchDashboarddoesnotdisplayonrelatedBase
10.1.500 ToolsandTechnologies GeneralFramework 177856 Tools SearchAdvancedsheet
CoreFrameworkServicesSmartClientconnectionclosedduetoaserverinitiated
10.1.500 ToolsandTechnologies GeneralFramework 177931 Tools shutdown(Alsofixedin10.1.400.x)
10.1.500 ToolsandTechnologies GeneralFramework 177961 Tools SearchFrameworkPredictivesearchesdonotworkforcalculatedcolumns
10.1.500 ToolsandTechnologies GeneralFramework 178084 Tools TranslationofMainmenudoesnotdisplay(Alsofixedin10.1.400.x)
CreationofIce.Core.Sessioninmultithreadedenvironmentsometimesdoesnot
10.1.500 ToolsandTechnologies GeneralFramework 178123 Tools work(Alsofixedin10.1.400.x)
10.1.500 ToolsandTechnologies GeneralFramework 178360 Tools BAQzES_Customers.innotseededintothecurrent10.1.400.1
10.1.500 ToolsandTechnologies GeneralFramework 178410 Tools SearchFrameworkRadiobuttonsaredisabledonnamedsearch
10.1.500 ToolsandTechnologies GeneralFramework 178881 Tools Queryexceptionsindatalayershouldcapturemoredetails

Page113
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


10.1.500 ToolsandTechnologies GeneralFramework 179013 Tools TimeouterrorwhenrunningmethodBO.SchemaSvc.GetFileList(StringpcWhere)
10.1.500 ToolsandTechnologies GeneralFramework 179183 Tools Outputsessionisautoclosedduetoaserverinitiatedshutdownerror
10.1.500 ToolsandTechnologies GeneralFramework 179487 Tools EpiControlsEpiGLControlsegmentselectionworksincorrectly
CoreFrameworkServicesUpdateExtshouldallowoverridingSysRevIDcolumn
10.1.500 ToolsandTechnologies GeneralFramework 179503 Tools valueintableset
10.1.500 ToolsandTechnologies GeneralFramework 179528 Tools DBMismatchproducedanerror
Applicationdisplaysasusing32bitwhenclassicmodeisusedeventhoughtheicon
10.1.500 ToolsandTechnologies GeneralFramework 179543 Tools usestheEpicor64.execlient
ShouldnotchangetheBusinessTypewhentryingtheformatfromExtended
10.1.500 ToolsandTechnologies GeneralFramework 179699 Tools PropertiesformforStartQuoteNum(Alsofixedin10.1.400.x)
10.1.500 ToolsandTechnologies GeneralFramework 179706 Tools SysUserFiletablehasincorrectformatstringforWinXandWinYfields
10.1.500 ToolsandTechnologies GeneralFramework 180303 Tools IncorrectmessagewhenNonSMuserretrievesnonexistinguserrecord
10.1.500 ToolsandTechnologies GeneralFramework 180471 Tools NextValue.Setusesobsoletedatabasecontext
10.1.500 ToolsandTechnologies GeneralFramework 180609 Tools WebFormsImagecannotbeuploadedusingimageservice
10.1.500 ToolsandTechnologies GeneralFramework 180637 Tools ErrorsrelatedtoBindings
EnhanceFileTransfer.DownLoadmethodneedtoincludethereportfilesfromother
10.1.500 ToolsandTechnologies GeneralFramework 180672 Tools users
UDFieldsdonotdisplayinBAQresults(QuickSearches)forfieldssetsashiddenby
10.1.500 ToolsandTechnologies GeneralFramework 180770 Tools default
EpiControlsEpiUltraGriddoesnotchangeActiveRowpropertyifanewrowis
10.1.500 ToolsandTechnologies GeneralFramework 180778 Tools addedbypressingtheEnterkey
10.1.500 ToolsandTechnologies GeneralFramework 180902 Tools Connectionstringshouldnotberequiredwhendatasourceisdefinedas"iScala"
10.1.500 ToolsandTechnologies GeneralFramework 180933 Application EWAServerFileDownloadisnotusableinEWA

10.1.500 ToolsandTechnologies GeneralFramework 181053 Tools IncorrectDBversionreturnedpreventsuserfromloggingin(Alsofixedin10.1.400.x)


10.1.500 ToolsandTechnologies GeneralFramework 181083 Tools UpgradeProcessSetseeddatadoesnotcleanup"blankcompany"records
AttachmentsApplicationerrorwhenaddingaParttotheline"MustsetStaticFilter
10.1.500 ToolsandTechnologies GeneralFramework 181142 Tools beforesettingParent/Childrelations"
ExtendedUDTableMaintenanceErrorwhenselectingincorrectinitialvaluefor
10.1.500 ToolsandTechnologies GeneralFramework 181296 Tools booleanUDfield
WhenappserverspinsupandthereisnoErp.Data.910100.dlland/or
Ice.Data.Model.dllinthe<website>\server\assembliesfolder,itflushesthe
ice.assemblystoreversionsfromthedatabaseas
Ice.Data.Model.new/Erp.Data.910100.newitneverrenamesthemto.dllsothe
10.1.500 ToolsandTechnologies GeneralFramework 181603 Tools appservercannotstartupproperly
10.1.500 ToolsandTechnologies GeneralFramework 181621 Tools RemovingglobalexternalBAQcausesPredictivesearchtostopworking
10.1.500 ToolsandTechnologies GeneralFramework 181793 Tools CachingPendingconversionarenotrunin10.1.301.10
ConversionWorkbenchAfterrunningconversionUD10.1.301.10theStatusis
10.1.500 ToolsandTechnologies GeneralFramework 181843 Tools "RUN"

Page114
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


10.1.500 ToolsandTechnologies GeneralFramework 181919 Tools NullReferenceExceptiononcolumnsecurity
10.1.500 ToolsandTechnologies GeneralFramework 182055 Tools Missingbindingson*.sysconfiginthe"EndpointBindingValue"tag
Cannotlogintotheclientiftheversionice.icevertablehasarowthathasan
10.1.500 ToolsandTechnologies GeneralFramework 182105 Tools incorrectversionvalue
ServiceDesignerWhenthereisarelationinadatasetthatcomesfromstringto
10.1.500 ToolsandTechnologies GeneralFramework 182182 Tools boolean,theSQLlqueryisnotcreatedcorrectly
10.1.500 ToolsandTechnologies GeneralFramework 182251 Tools ServiceDesignerUpdateExtgeneratesincorrectGetNewcallsforGLJournalEntry
SearchFrameworkInE10.1JobEntry,whenaNewNamedSearchiscreatedforthe
JobNumberfieldandtheSearchTypeissettoBAQSearch,noBAQsarelistedinthe
10.1.500 ToolsandTechnologies GeneralFramework 182291 Tools dropdown,eventhoughtheBAQTaboftheSearchWindowdisplaysBAQs
AddtheabilitytocopyvaluesoutoftheHelp>About>Systeminfosettingsinthe
10.1.500 ToolsandTechnologies GeneralFramework 182699 Tools smartclient
ConversionWorkbenchEnsurethatconversionsBPM0001andBAQ001aremarked
10.1.500 ToolsandTechnologies GeneralFramework 182867 Tools toberuneveryReleaseandUpdate(Alsofixedin10.1.400.x)
10.1.500 ToolsandTechnologies GeneralFramework 183004 Tools SSLbasedbindingsdonotworkin.Net4.6.1
10.1.500 ToolsandTechnologies GeneralFramework 183180 Tools Dashboard/UBAQforVendParttableInsertsrecordinsteadofUpdate
10.1.500 ToolsandTechnologies GeneralFramework 183237 Tools PartMaintenancedoesnotdisplaythestarindicatorwhenitisusingchangelog
EpiControlsUndoingaGroupByfieldresultsinthefieldtonolongerbeseeninthe
10.1.500 ToolsandTechnologies GeneralFramework 183376 Tools Grid
POUpdateExtBOissuewhereiffieldsarepassedwithaNULL,theyarecachedas
thatontheClientandServer.Inthatcasetheycannotbeupdated.(Alsofixedin
10.1.500 ToolsandTechnologies GeneralFramework 183590 Tools 10.1.400.x)
10.1.500 ToolsandTechnologies GeneralFramework 183671 Tools Whentheclientstartsup,thesystemshouldcheckthat.Net4.6.1isinstalled
10.1.500 ToolsandTechnologies GeneralFramework 183682 Tools Windows10andSurfaceProWinFormsOddity
10.1.500 ToolsandTechnologies GeneralFramework 183800 Application MenuOptionsGoldenDatabasehascargumentsdeployed
ContextMenuContextMenu.xmlisconfiguredwithanincorrectvalidationtypefor
LaborHed.LaborHedSeqasStringGetByIDandthiscausesissueswithcreatinganFKV
10.1.500 ToolsandTechnologies GeneralFramework 183810 Tools fortheLaborAdapter
MenuOptionsSuppressConnectionInformationfornonGSMwithMultitenancy
10.1.500 ToolsandTechnologies GeneralFramework 184123 Application LicenseHelpAbout(Alsofixedin10.1.400.x)
10.1.500 ToolsandTechnologies GeneralFramework 184688 Tools ExtendedUDTableMaintenanceCannotAddDateTimecolumnswithinitialvalues
10.1.500 ToolsandTechnologies GeneralFramework 184847 Tools FormatCultureisnotappliedtoEpicorclient
10.1.500 ToolsandTechnologies GeneralFramework 184979 Tools Addabilitytoaddacustomversionnumber
10.1.500 ToolsandTechnologies GeneralFramework 185332 Tools UpgradeDatabaseupgrademaystopsworkingwithodderror
10.1.500 ToolsandTechnologies GeneralFramework 185738 Tools Ice.UI.InfoPromptFormdisplayanerrorthatitisnotvalidfromMES
RESTFrameworkUnabletouseREST,Noassemblyfoundcontainingan
10.1.500 ToolsandTechnologies GeneralFramework 186836 Tools OwinStartupAttribute
10.1.500 ToolsandTechnologies GeneralFramework 186843 Tools RESTFrameworkClientsmaycacheresponsesforsameurl,differentheaders
10.1.500 ToolsandTechnologies GeneralFramework 187064 Tools ErrordisplayedwhenRegDMthefirsttime

Page115
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


10.1.500 ToolsandTechnologies GeneralFramework 187450 Tools ExtendedUDTableMaintenanceErrordisplayswhenBytesdatatypeisselected
EpiControlsPastingatextattheendofatextfieldinanenabledgridoverridesthe
10.1.500 ToolsandTechnologies GeneralFramework 187662 Tools existingtext
10.1.500 ToolsandTechnologies GeneralFramework 188790 Tools TenancySecurityissueswithReportMonitorservice
10.1.500 ToolsandTechnologies GeneralFramework 188897 Tools TenancySecurityissueswithSysMonitorservice
JournalEntryUDtablevalueisnotgeneratedinJournalEntryandisnotdisplayed
10.1.500 ToolsandTechnologies GeneralLedger 183630 Application inChartTracker
10.1.500 ToolsandTechnologies HelpSystem 175614 Tools NewzipneedtobeaddedforHelpinstallation
HelpinstallationdoesnotreflectthechangesintheDirectoryfield(Alsofixedin
10.1.500 ToolsandTechnologies HelpSystem 177142 Tools 10.1.400.x)
MissingdllsonbinfolderafterReinstalling/UpdatingHelpsite(Alsofixedin
10.1.500 ToolsandTechnologies HelpSystem 177338 Tools 10.1.400.x)
Whenusersdonothaveaccesstocertainmenus,theycangettothemthroughthe
10.1.500 ToolsandTechnologies HelpSystem 177881 Tools EmbeddedEducationmodulecreatingabackdoor
Helpinstallershouldwrapthesetupoftheindexsearchinatry/catch;errorsmay
10.1.500 ToolsandTechnologies HelpSystem 178442 Tools occur
10.1.500 ToolsandTechnologies HelpSystem 178753 Tools Helpdisplays500.19htmlerrorwithsomeinstalls(Alsofixedin10.1.400.x)
10.1.500 ToolsandTechnologies HelpSystem 179846 Tools HelpdoesnotworkifauserusesEnglishUKlanguage(Alsofixedin10.1.400.x)
10.1.500 ToolsandTechnologies HelpSystem 179917 Tools Helpopensoncompanieswhereitisnotconfigured
UsershouldgetwarningwheninstallingHelponlocationslikeDesktopwhereIIShas
10.1.500 ToolsandTechnologies HelpSystem 180177 Tools noaccess
10.1.500 ToolsandTechnologies HelpSystem 182670 Tools ErrorsayingHelpisnotsetupwhenHelpmenuisclicked/Can'tuseFieldHelp
IncludeChangingTaskAgentPurgeSettingsintheSystemAdministrationguide>
10.1.500 ToolsandTechnologies HelpSystem 183390 Tools SystemTasks>PurgeDatabasesectionofapplicationhelp
IncludeanewPrintingOutagestopicintheSystemAdministrationGuidefor"All
10.1.500 ToolsandTechnologies HelpSystem 183392 Tools processeshaveaPENDINGstatusinActiveTaskstaboftheSystemMonitor"
10.1.500 ToolsandTechnologies HelpSystem 184658 Tools EmbeddedEducationUIRemovelegacyLicensedandUnlicensednodes
10.1.500 ToolsandTechnologies HelpSystem 184885 Tools Helpdoesnotworkin10.1.500
FieldHelpworkswithEnglishbutdoesnotworkwithPolishlanguage(Alsofixedin
10.1.500 ToolsandTechnologies HelpSystem 184904 Tools 10.1.400.x)
10.1.500 ToolsandTechnologies HelpSystem 186154 Tools Needtoperformweb.configcorrectiontoavoidhelperror
10.1.500 ToolsandTechnologies InformationWorker 145077 Application HDCaseLinksnotimportedintoOffice
10.1.500 ToolsandTechnologies InformationWorker 148824 Application Customer&ShipToContactsnotimportedintoOutlook
10.1.500 ToolsandTechnologies InformationWorker 162436 Application WordUnabletosynchronizeContactaddressduemaximumcharacters
10.1.500 ToolsandTechnologies InformationWorker 162538 Application Word/ExcelContactNamenotsynchronizedbacktoEpicor
10.1.500 ToolsandTechnologies InformationWorker 162577 Application SalespersonfromAppointmentsisnotupdatedbackintoEpicor
10.1.500 ToolsandTechnologies InformationWorker 162669 Application OutlookExplorerelatedentitiesdoesnotretrieveexistingdata
WhentryingtosaveaCallinCRMCalllaunchedfromExcel,the'Key1isrequired'
10.1.500 ToolsandTechnologies InformationWorker 169343 Application errorisdisplayed

Page116
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


10.1.500 ToolsandTechnologies InformationWorker 181089 Application OrigDCDUserIDvalueisblankwhentheCRMCallrecordiscreatedviaIW
10.1.500 ToolsandTechnologies InformationWorker 182404 Tools ErrorSyncingcontactsinsomeoffice2010setups
IssueMaterialSerialnumbernotavailableinjobreceipttoinventorywithNo
10.1.500 ToolsandTechnologies Installation 183705 Application LowerLevelSerialTracking
PackageControlIDAdhocPCIDUnabletoentermorethantwocharactersinthe
Warehousefield;thewarehousedescriptionisnotrecognized(Alsofixedin
10.1.500 ToolsandTechnologies InventoryManagement 175023 Application 10.1.400.x)
10.1.500 ToolsandTechnologies InventoryManagement 183570 Application ControlIDMaintenancePasteInsertdoesnotworkinControlIDMaintenance
10.1.500 ToolsandTechnologies JobManagement 174870 Tools Site(Plant)AbletosaveasitethathasnoID
10.1.500 ToolsandTechnologies JobManagement 176022 Application PlantConfigurationTheTimeZoneselecteddoesnotsetthecorrecttimeinMES
10.1.500 ToolsandTechnologies JobManagement 177749 Tools MESMenuFrameworkWarningmessageisblankwhenenteringinvalidShiftID
10.1.500 ToolsandTechnologies JobManagement 179471 Application PlanningContractAddpartdescriptiontothedemandandsupplytabs
MattecIntegrationMultipleErrorswhentheexportfileiscreatedifthereare
multiplesitesusingthemattecintegrationinthesamecompany(Alsofixedin
10.1.500 ToolsandTechnologies JobManagement 180258 Application 10.1.400.x)
PlanningContractAnerrorisdisplayedwhenseekingaPlanningContractwitha
10.1.500 ToolsandTechnologies JobManagement 181076 Application Parteliminatedrelated
JobEntryWhenattachmentisdeletedusingtheDeleteicon,theDelete
10.1.500 ToolsandTechnologies JobManagement 181931 Tools Confirmationdialogisnotdisplayed
LicenseUtilityAdd'ExternalPayrollIntegration'moduletoErpLicensableModules
10.1.500 ToolsandTechnologies Licensing 184282 Tools soitisvisibleforapplicationtouse
10.1.500 ToolsandTechnologies Licensing 189189 Tools LicenseUtilityExtra<modules>nodeintemplateinAdmionLicense.exetool
10.1.500 ToolsandTechnologies Licensing 189200 Tools LicenseUtilityOmitting/LogFileargumentAdminLicensecausesittonotwork
ShellMenuMenuoptionsaredisplayedintwocolumnsevenwhenthereisaspace
10.1.500 ToolsandTechnologies Menus 160798 Tools ontheUItoputeverythinginasinglecolumn
ShellMenuFavoritescanbeaddedtoagroupbuttheyarenotvisibleinshellmenu
10.1.500 ToolsandTechnologies Menus 165507 Tools afterloggingbackintheclient
ClassicMenuCannotseenewMenusaddedontheMainMenuscreenforClassic
10.1.500 ToolsandTechnologies Menus 169681 Tools Style
10.1.500 ToolsandTechnologies Menus 172766 Tools MESMenuFramework"InvalidImage"errormessage
ShellMenuInFavoritesTile,whenaformiserased,itstilldisplayswhencollapsing
10.1.500 ToolsandTechnologies Menus 173576 Tools andcanbeclickedtoopenbuterrorappears
ShellMenuUnabletosavefavoriteitemtoalwaysruninthecompanywhere
10.1.500 ToolsandTechnologies Menus 175751 Tools favItemcreatedinitially(Alsofixedin10.1.400.x)
MenuMaintenanceAllowsProductizationstobeselectedasProductization
10.1.500 ToolsandTechnologies Menus 175842 Tools Extensions
ShellMenuChanginguserwiththebuttonatthebottombarusingTabthrowsand
10.1.500 ToolsandTechnologies Menus 176409 Tools error

Page117
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


MenuMaintenanceDetailtabshouldbethefirsttobedisplayedonMenu
10.1.500 ToolsandTechnologies Menus 176648 Tools Maintenance
10.1.500 ToolsandTechnologies Menus 177742 Tools MenuMaintenance&ServiceSecurityUsercanmodifySystemSecurityintenancy
10.1.500 ToolsandTechnologies Menus 177760 Tools MenuMaintenanceUserisforcedtoenter"www."onaURLlink
10.1.500 ToolsandTechnologies Menus 177950 Tools ShellMenuUnabletoviewHelpfromthemodernshellwhenrunningEpicor64.exe
ShellMenuTouchdoesnotworkonAddToFavoritesdialogwhenopenedfrom
10.1.500 ToolsandTechnologies Menus 178388 Tools Menuapp
ShellMenuAddaNewTiledropdownlistsforFormandCompanydonotworkin
10.1.500 ToolsandTechnologies Menus 178423 Tools ModernShell(Alsofixedin10.1.400.x)
10.1.500 ToolsandTechnologies Menus 179475 Tools ShellMenuUsabilityofColorChangeOptions
ShellMenuUserwithoutaccesstoanystandardmenuitemsgetsanindexoutof
10.1.500 ToolsandTechnologies Menus 179701 Tools rangeerror
ClassicMenuAfteraddingafavorite,"epicor.exehasstoppedworking"error
10.1.500 ToolsandTechnologies Menus 179982 Tools occurswhenlogginginClassicstyle
10.1.500 ToolsandTechnologies Menus 180181 Tools ShellMenuBAQLineLinksarenotFunctional(Alsofixedin10.1.400.x)
MenuMaintenanceAddLanguageMaintenance,CustomizationMaintenanceand
10.1.500 ToolsandTechnologies Menus 180901 Tools ContextMenulinkstoICEExtend
MESMenuFrameworkNeedtoaddErp.UI.PkgControlLibtothelistofvalidMES
10.1.500 ToolsandTechnologies Menus 183754 Tools assembliesinRestrictedLicenseLib
10.1.500 ToolsandTechnologies Menus 185440 Tools ShellMenuTilegroupsorderontheModernMenuisnotsavedwhenrearranged
ShellMenuWhenchanginglanguage,Homepageisnottranslateduntilyougo
10.1.500 ToolsandTechnologies Menus 187499 Tools backtoEnglish
ShellMenuIntheMenu,AddtoFavoritesandAddtoHomebuttonsdonotappear
10.1.500 ToolsandTechnologies Menus 188057 Tools whenrightclickmultipletimesaform
10.1.500 ToolsandTechnologies Menus 189257 Tools MenuMaintenanceMenuPerformanceCanvasLinktypedoesnotwork
10.1.500 ToolsandTechnologies Menus 189420 Tools ShellMenuUnabletoopenforms
PartGlobalPartsSearchResultsgriddisplaysrecordsasPhantomBOMwhenthey
10.1.500 ToolsandTechnologies OpenActivePlanner 179508 Application arenotmarkedasPhantomBOM
10.1.500 ToolsandTechnologies OrderManagement 173452 Application PartUDFieldcanbeupdatedbytwousersatthesametime
ConfigCheckAdjustfreespaceofMDFtohavetext:"lessthan25%free.Please
10.1.500 ToolsandTechnologies Performance/Diagnostics 175921 Tools increasesothatmorethan25%freespaceisavailable"

10.1.500 ToolsandTechnologies Performance/Diagnostics 176101 Tools ICEPerfDiagToolG001primenumbertestisnotreportingFAILasexpected

10.1.500 ToolsandTechnologies Performance/Diagnostics 181699 Tools Epicor.ServiceModel.Trace.ClientTracing.UserTracerThreadsafetyissue

10.1.500 ToolsandTechnologies Performance/Diagnostics 181699 Tools Epicor.ServiceModel.Trace.ClientTracing.UserTracerThreadsafetyissue

10.1.500 ToolsandTechnologies Performance/Diagnostics 182648 Tools LoadtestWorkbenchSupportfornew<executionTime/>nodeformat

Page118
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description

10.1.500 ToolsandTechnologies Performance/Diagnostics 183449 Tools DataHealth/Fixscriptsstillrunnableevenwhenexpired

10.1.500 ToolsandTechnologies Performance/Diagnostics 186161 Tools ICEPerfDiagToolMissingInternalMethodsontransformedfile

10.1.500 ToolsandTechnologies Performance/Diagnostics 186348 Tools ICEPerfDiagToolErrorwhiletryingtoexportanexcelfilefrom


ICEPerfDiagToolLogCaptureScriptstorunarenotdisplayedimmediatelyaftera
10.1.500 ToolsandTechnologies Performance/Diagnostics 187176 Tools newserverisadded

10.1.500 ToolsandTechnologies Performance/Diagnostics 187489 Tools ICEPerfDiagToolLogCapturePluginErrorwhenlaunching


TaskAgentServiceCorrectexceptiondetailsshouldbereported(Alsofixedin
10.1.500 ToolsandTechnologies ProcessManagement 169008 Tools 10.1.400.x)
SystemMonitorAfterchangingCompany,ReportscannotbeprintedunlessSystem
10.1.500 ToolsandTechnologies ProcessManagement 173897 Tools Monitorisclosedandopened
TaskAgentServiceCannotdeleteothersservertaskagentfromtheTaskAgent
10.1.500 ToolsandTechnologies ProcessManagement 175332 Tools Configurator
10.1.500 ToolsandTechnologies ProcessManagement 176188 Tools TaskAgentServicePossibletogetatimeoutexceptionwhenpurgingoldrecords
TaskAgentServiceSaaSenvironment10.1.301.3restartsprocessesafterseveral
10.1.500 ToolsandTechnologies ProcessManagement 176753 Tools hoursofrunning
SystemMonitorThePrintandPrintPreviewbuttonsaredisabled(Alsofixedin
10.1.500 ToolsandTechnologies ProcessManagement 176922 Tools 10.1.400.x)
SecurityGroupMultiTenantwithMultiCompanyUserscanonlyhaveSecurity
10.1.500 ToolsandTechnologies ProcessManagement 177016 Tools Groupfromonecompany(Alsofixedin10.1.400.x)
TaskAgentServiceFrequentdeadlockswhenrunningmultipletaskagentsagainst
10.1.500 ToolsandTechnologies ProcessManagement 177464 Tools thesamedatabase(Alsofixedin10.1.400.x)
SystemMonitorTheSystemMonitordoesnotrespondforCrystalreports(Also
10.1.500 ToolsandTechnologies ProcessManagement 178329 Tools fixedin10.1.400.x)
10.1.500 ToolsandTechnologies ProcessManagement 178677 Tools SystemMonitorUserDescriptiondoesnotdisplayvalueforprocessset
10.1.500 ToolsandTechnologies ProcessManagement 178992 Tools TaskAgentServiceSpecifictask/reportfunctiondoesnotwork
SystemAgentTheSchedulesavailableontheprogramdropdownselectionshould
10.1.500 ToolsandTechnologies ProcessManagement 178993 Tools besavedwhenaddedtoSystemAgent
SystemAgent"Invalidusernameorpassword"errorwhenconfiguringSystem
10.1.500 ToolsandTechnologies ProcessManagement 179077 Tools AgentTaskAgentruleswithaWindowsendpointbindingappserver
TaskAgentServiceSpecifictask/reportfunctiondoesnotworkifausergroupis
10.1.500 ToolsandTechnologies ProcessManagement 179146 Tools specified
SystemAgentOnTaskAgentRulesform,DNSIdentityfieldisdisabledwhen
10.1.500 ToolsandTechnologies ProcessManagement 179152 Tools selectingtheUsernameSslChannelbinding
TaskAgentServiceDNSEndpointIdentityfieldisnotwipedoutwhenbeing
10.1.500 ToolsandTechnologies ProcessManagement 181714 Tools changedtoanonSSLbinding

Page119
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


10.1.500 ToolsandTechnologies ProcessManagement 181716 Tools SystemAgentSetPurgeFrequencyisonlyenabledwhenTaskAgentRuleisopened
TaskAgentServiceTaskagentstopsworkinginSaaSPilotenvironments(Alsofixed
10.1.500 ToolsandTechnologies ProcessManagement 181949 Tools in10.1.400.x)
ProcessSetMaintenanceThezScheduleLoadGraphprocesssetdoesnotcontain
anytasks(becauseofthis,theResourceScheduleLoadGraphisnottriggeringand
10.1.500 ToolsandTechnologies ProcessManagement 182591 Tools displaysemptycolumns)
10.1.500 ToolsandTechnologies ProcessManagement 184027 Tools ProcessSetMaintenanceUnexpectedAddNewConfirmationwindowdisplays
ProcessSetMaintenanceUnabletosaveareporttoaprocesssetforaspecific
10.1.500 ToolsandTechnologies ProcessManagement 184566 Tools company(Alsofixedin10.1.400.x)
TaskAgentServiceIce.Services.Lib.RunTask::RunSystemTaskshouldincludestack
10.1.500 ToolsandTechnologies ProcessManagement 184602 Tools traceinthemessagethatisloggedforunexpectederrors
SystemAgentScheduledMRPProcessdoesnotrunaccordingtoschedule
10.1.500 ToolsandTechnologies ProcessManagement 184933 Tools configuredbyuser
ProjectEntry"Objectreference"messagedisplayswhenupdatingtheParentofa
10.1.500 ToolsandTechnologies ProjectManagement 172290 Application Phase
10.1.500 ToolsandTechnologies ReportsFramework 154234 Tools SSRSReportsinLandscapeareprintedinPortrait(Alsofixedin10.1.400.x)
ReportDataDefinitionUDcolumndisappearsfromtheFieldNamelistinReport
10.1.500 ToolsandTechnologies ReportsFramework 165476 Tools Table>Criteriasheet
PRINTifyoupressclearonanyprintscreen,itdoesnotresettheOutputFormat
10.1.500 ToolsandTechnologies ReportsFramework 172305 Tools dropdownonthefrontend,butdoesinthedataset
ReportStyleWhenareportstyleiscopied,thePrintersandRoutingRulesshould
10.1.500 ToolsandTechnologies ReportsFramework 172893 Tools alsobecopied
10.1.500 ToolsandTechnologies ReportsFramework 172921 Tools ReportStyleUsingRecentItemsunderFileMenuloadsalltheReports
ReportStyleInMultiTenant,anonGSMshouldnotbeabletomodifytheBase
10.1.500 ToolsandTechnologies ReportsFramework 172926 Tools Style
ReportStyleEDIOutboundasPlainTextexportsaccentuatedcharactersas
10.1.500 ToolsandTechnologies ReportsFramework 172990 Tools questionmarks
10.1.500 ToolsandTechnologies ReportsFramework 173019 Tools ReportDataDefinitionFormatisnotsetautomaticallywhenchangingdatatype
IftheReportStylereferencesaBaselineReport,anoptiontodisabletheSync
10.1.500 ToolsandTechnologies ReportsFramework 173127 Tools Buttonshouldbeprovided
10.1.500 ToolsandTechnologies ReportsFramework 173554 Tools ReportDataDefinitionValidateformatforcalculatedfields
ReportDataDefinitionCannotaddERP.CompanytabletoRDD(Alsofixedin
10.1.500 ToolsandTechnologies ReportsFramework 174255 Tools 10.1.400.x)
10.1.500 ToolsandTechnologies ReportsFramework 174634 Tools ReportStyleNewmenubuttonstillfunctionsifPrintRoutinglicenseisnotenabled
ReportStyleReportStyleCopydialogdoesnotdisplaytextineditmodefornon
10.1.500 ToolsandTechnologies ReportsFramework 174658 Tools defaultthemes
10.1.500 ToolsandTechnologies ReportsFramework 175584 Tools MenuSecurityReportneedstobeupdated(Crystalrpt)
ReportStyleDownloadSSRSReportandUploadSSRSreportshouldbedisabled
10.1.500 ToolsandTechnologies ReportsFramework 175776 Tools whenselectingaCrystalStyle

Page120
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


10.1.500 ToolsandTechnologies ReportsFramework 175777 Tools RemovecodethatsetstheMarginsinthePageSettingsfromtheclient
10.1.500 ToolsandTechnologies ReportsFramework 175779 Tools Removecodethatusesuserdefinedmargins
ReportStyleProvideanUpgradewhichremovestheMarginsfromtheserialized
10.1.500 ToolsandTechnologies ReportsFramework 175784 Tools Breaking/Routingrulein500
PrintingdirectPDFSSRSReportsfromEpicortoaprinterproduceshugesizefiles
10.1.500 ToolsandTechnologies ReportsFramework 175833 Tools (comparedtoprintingfromaprintpreviewwindow)
10.1.500 ToolsandTechnologies ReportsFramework 176125 Tools Breaking/RoutingruledesignerdoesnotdisplaypersistedClientPrintersettings
ReportStyleReportStyleMaintenance"SyncDataset"operationonanewPacking
10.1.500 ToolsandTechnologies ReportsFramework 176164 Application Slipstyleresultsinerror(Alsofixedin10.1.400.x)
ReportStyleErrorduringSyncDataset"ThedatasetCustomerBillToreferstothe
10.1.500 ToolsandTechnologies ReportsFramework 176317 Tools datasourcedsPackSlip,whichdoesnotexist"
10.1.500 ToolsandTechnologies ReportsFramework 176419 Tools PrintingEMFcausesSystemerrorthatoccursinSystemMonitor
10.1.500 ToolsandTechnologies ReportsFramework 177042 Tools ReportDataDefinitionAddexportandimportcapability
ReportDataDefinitionLinktablesdonotsupportUDfields(Alsofixedin
10.1.500 ToolsandTechnologies ReportsFramework 177772 Tools 10.1.400.x)
10.1.500 ToolsandTechnologies ReportsFramework 178056 Tools ReportDataDefinitionChildFieldNamedropdowndisplaysduplicatefieldnames
ModifiedReportDataDefinition(RDD)doesnotdisplayUDfieldsforaddedtables
10.1.500 ToolsandTechnologies ReportsFramework 178140 Tools untilsavingandreenteringtheRDD
CrystalreportsdoesnotdisplaycorrectUIswhenselectingprintandtheparameters
10.1.500 ToolsandTechnologies ReportsFramework 178199 Tools areignored
10.1.500 ToolsandTechnologies ReportsFramework 178396 Tools BAQReportsDynamicDatesdonotflowintoCrystalreportheading
10.1.500 ToolsandTechnologies ReportsFramework 179312 Tools ReportStyleSyncDatasetdoesnotexcludeexcludedUDfields
ReportDataDefinitionIncorrectmessagewhenuserloadsanRDDthatexistson
10.1.500 ToolsandTechnologies ReportsFramework 179682 Tools othertenant
10.1.500 ToolsandTechnologies ReportsFramework 179893 Tools ReportStyleErrorwhenclickingtheSyncDatasetbutton
10.1.500 ToolsandTechnologies ReportsFramework 180816 Tools SSRSreportfilescanbewrittenanywhere
10.1.500 ToolsandTechnologies ReportsFramework 181104 Tools Index1erroroccurstwicewhenPaymentEntry>ProcessPaymentisselected
ReportStyleInStyleMaintenancewhenDatasetissynchronized,itdoesnot
10.1.500 ToolsandTechnologies ReportsFramework 181345 Tools includethelinkedtablefieldsintheSSRSreportdataset
ReportStyleSpellingerrorintheSyncDatasetfunctionalityinE10.1.400.2"SSRS
10.1.500 ToolsandTechnologies ReportsFramework 181377 Tools reportissynchronized(sic)withreportdatadefinition"
10.1.500 ToolsandTechnologies ReportsFramework 181474 Tools PrintRoutingcanbeconfiguredbutcannotbeselectedforAPPaymentform
ReportDataDefinitionImportReportunabletoimporta10.0RDDthatincludesa
Criteriainthedefinition;"Thispropertycannotbesettoanullvalue"errordisplays
10.1.500 ToolsandTechnologies ReportsFramework 181498 Tools (Alsofixedin10.1.400.x)
10.1.500 ToolsandTechnologies ReportsFramework 182138 Tools CrystalReportsdonotworkwithbackslashesinpath
10.1.500 ToolsandTechnologies ReportsFramework 182139 Tools CrystalBAQReportsformultitenantcannotberun
10.1.500 ToolsandTechnologies ReportsFramework 182710 Tools AllowBartenderfilestooverwriteexistingfiles

Page121
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


SSRSPackingSlipReportReportDatasyncissuewhenSaleTaxReportcopiedand
onlythePercentfieldinincluded.orwhenPackskipiscopiedandsyncedwithout
10.1.500 ToolsandTechnologies ReportsFramework 182896 Application anychanges.
10.1.500 ToolsandTechnologies ReportsFramework 184315 Tools GenerateEDIDefinitionbuttonshouldbedisabledwhenXMLFileoptionisselected
10.1.500 ToolsandTechnologies ReportsFramework 184441 Tools GenerateEDIDefinitionshouldonlybeavailableforGSMinmultitenant
UsersshouldbeabletocreateFormsandReportsinSSRSwithparametersthatcan
10.1.500 ToolsandTechnologies ReportsFramework 184908 Tools bechosenbeforeshowingtheactualdocument
10.1.500 ToolsandTechnologies ReportsFramework 185673 Tools ReportStyleRemoveUIRptStyleExtEntry.dll
10.1.500 ToolsandTechnologies ReportsFramework 187338 Tools AutoPrintExceptionwhenopeningClientPrinterdialogonAutoPrint
OrderbyrequirestouseDB.ColumnNameandselectparameterrequiresNameof
10.1.500 ToolsandTechnologies RESTFramework 185183 Tools thecolumnthatdisplaystheservice
ICESDKandDevUtilitiesFxCopruletovalidateEpiGuidisavalidguidshouldbe
10.1.500 ToolsandTechnologies SDK 171183 Tools eliminated
10.1.500 ToolsandTechnologies SDK 177791 Tools ICESDKandDevUtilitiesUnhandledexceptiononICEapplicationgenerator
ICESDKandDevUtilitiesGenApptoolhasmisspelling:"Vale"isdisplayedinsteadof
10.1.500 ToolsandTechnologies SDK 178409 Tools "Value"onerrormessage
10.1.500 ToolsandTechnologies SDK 179171 Tools ICESDKandDevUtilitiesIssuesinClientUIRpttemplate
10.1.500 ToolsandTechnologies SDK 181080 Tools ICESDKandDevUtilitiesICEExplorer2015requiresVisualStudio2012/2013
ICESDKandDevUtilitiesGetLatestZDatacannotbeexecutedifitdoesnotexistin
10.1.500 ToolsandTechnologies SDK 181158 Tools sourcecontrol
10.1.500 ToolsandTechnologies SDK 181363 Tools ICESDKandDevUtilitiesICEExplorercannotreliablyselectiteminatree
ICESDKandDevUtilitiesSupportGetLatestandCollectactionsfromtoplevel
10.1.500 ToolsandTechnologies SDK 181802 Tools ZDatanodesinICEExplorer
BLTesterErrorwheninstantiatinginputparametercontrolsforDateTime?type
10.1.500 ToolsandTechnologies SDK 182646 Tools parameters
10.1.500 ToolsandTechnologies SDK 183757 Tools ICESDKandDevUtilitiescannotenternegativevaluesindecimalparameters
ICESDKandDevUtilitiesICEExplorershouldusedatabaseconnectioninformation
10.1.500 ToolsandTechnologies SDK 183758 Tools fromweb.config
10.1.500 ToolsandTechnologies SecurityFramework 171396 Tools SecurityReportNotenancyisolationonUsers/GroupsReport
ProcessSecurityProcessSecurityfunctionconfigurationon"DeleteByIDinbo.PO"
10.1.500 ToolsandTechnologies SecurityFramework 171972 Tools doesnottransferdowntoallconfigurations
ProcessSecurityUIdoesnotdisplayAllow/DisallowAccessselectionswhentrying
10.1.500 ToolsandTechnologies SecurityFramework 172098 Tools toreloadjustaddednewmethod
SettingDefaultAccesstoREADdoesnotaffecttheUIwhenitwaspreviouslysetto
10.1.500 ToolsandTechnologies SecurityFramework 172105 Tools NONE
MenuSecurityReportSecuritygroupsarenotdisplayedifmultitenancylicenseis
10.1.500 ToolsandTechnologies SecurityFramework 172384 Tools installedinCompany
FieldSecurityAllCompaniescheckboxisnotsavedwhenitistheonlyobject
10.1.500 ToolsandTechnologies SecurityFramework 172734 Tools updated

Page122
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


FieldSecurityExplicityuseraccessdoesnottakeeffectwhenuserispartofagroup
10.1.500 ToolsandTechnologies SecurityFramework 172812 Tools andithasexplicityaccesstype
SecurityFrameworkItshouldnotbepossibletomakeanonGSMusertobeapart
10.1.500 ToolsandTechnologies SecurityFramework 172830 Tools ofmorethanonetenant
ItshouldnotbepossibletoassignaMultiTenant(MT)licenseonanenvironment
10.1.500 ToolsandTechnologies SecurityFramework 172832 Tools thatisnotaMT,makingnormalusersxtenants
ModernMenuuserswhodonothave'AllowMultipleSessions'assigned,donotget
10.1.500 ToolsandTechnologies SecurityFramework 172844 Tools thecompanyspecificmenulistingswhenmovingbetweencompanies
10.1.500 ToolsandTechnologies SecurityFramework 173354 Tools UserSecurityPasswordPolicyexceptionforGSMintenancy
ProcessSecurityChangeformname"Processsecuritymaintenance"to"Service
10.1.500 ToolsandTechnologies SecurityFramework 173442 Tools Security"
ProcessSecurityBlockingaccesstobo.Tipprocessthrowsincorrectapplication
10.1.500 ToolsandTechnologies SecurityFramework 173448 Tools errorinsteadof"Accessdenied(BO.Tip)"
10.1.500 ToolsandTechnologies SecurityFramework 173843 Tools ProcessSecurityMethodnamelistdisplaysonlyERPmethods
MenuSecurityReportUnabletogeneratereportwhenradiobuttonisselectedand
10.1.500 ToolsandTechnologies SecurityFramework 174370 Tools havingSecManagerscheckboxiscleared
MenuSecurityReportCurrentcompanysecurityitemsforglobalmenuitemsdo
10.1.500 ToolsandTechnologies SecurityFramework 174617 Tools notdisplayinreport
UserCompanycanbeaddedmanuallytoauthorizedcompanylistoutsidethe
10.1.500 ToolsandTechnologies SecurityFramework 174688 Tools tenancy
FieldSecurityWhenauserisgrantedwithexplicitaccess,andthegroupheorshe
10.1.500 ToolsandTechnologies SecurityFramework 175749 Tools isapartofdoesnothavethisaccess,userexplicitaccessisdenied
10.1.500 ToolsandTechnologies SecurityFramework 176224 Tools MenuSecurityReportWhenreportisemptythecountis<>than0
10.1.500 ToolsandTechnologies SecurityFramework 176498 Tools SecurityServiceProperhandlingofSystemFlagandSysRowIdshouldbeconfirmed
ObjectSecurityServiceProperhandlingofSystemFlagandSysRowIdshouldbe
10.1.500 ToolsandTechnologies SecurityFramework 176501 Tools confirmed
10.1.500 ToolsandTechnologies SecurityFramework 179748 Tools NonSMuserscandeleterecordfromsys.userfiletable
10.1.500 ToolsandTechnologies SecurityFramework 180007 Tools NonSMuserscanremoveassignedcompanies
10.1.500 ToolsandTechnologies SecurityFramework 185019 Tools SM/GSMcanseeanddeletecompaniesthattheydohaveaccessto
10.1.500 ToolsandTechnologies SocialEnterprise 142920 Tools DataNotificationsDeletinganotificationsourcedoesnotdeleterelatedicons
ResolvewebbrowsercontrolissuesforEpicorSocialEnterpriseembeddedinEpicor
10.1.500 ToolsandTechnologies SocialEnterprise 159592 Tools ERP10
SwitchoverEpicorSocialEnterprisetouseEpicorERP10Tokenforsecurity
10.1.500 ToolsandTechnologies SocialEnterprise 164117 Tools identification
10.1.500 ToolsandTechnologies SocialEnterprise 166407 Tools Addapincolumnicontocollapsedcolumnsinthemycolumnscolumn
DataNotificationsCreatingaNotificationSourcewitha"."doesnotfunction
10.1.500 ToolsandTechnologies SocialEnterprise 167253 Tools whencreatingaBPM
10.1.500 ToolsandTechnologies SocialEnterprise 168063 Tools LinksinSocialTilearenotopenedwhenclicked

Page123
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


DataNotificationsWhenaNotificationSourceisinactive,ausercanenteranduse
10.1.500 ToolsandTechnologies SocialEnterprise 168145 Tools SocialwithoutissuesonERPModernShell
10.1.500 ToolsandTechnologies SocialEnterprise 168909 Tools Alllinksareopenedinthesamewindow
10.1.500 ToolsandTechnologies SocialEnterprise 168911 Tools Notesonimagelinksarenotupdatedafteralinkreplacement
EpicorSocialEnterpriseshouldnotdisplaythedatabasenameorlogininerror
10.1.500 ToolsandTechnologies SocialEnterprise 169113 Tools messages
MediumformattingcontrolsdisplaybuttodoactuallyformattextinInternet
10.1.500 ToolsandTechnologies SocialEnterprise 170627 Tools Explorer
10.1.500 ToolsandTechnologies SocialEnterprise 170860 Tools SendPrivateMessageonNotificationCenterpagedoesnotwork
10.1.500 ToolsandTechnologies SocialEnterprise 171027 Tools Socialtileisnotupdatedwhenchangingcompanies
Labelsforattachment,imageandlinkdonotdisplaywhenthemessageisinediting
10.1.500 ToolsandTechnologies SocialEnterprise 171074 Tools mode
10.1.500 ToolsandTechnologies SocialEnterprise 173662 Tools NotificationMessagesinmodernshelldonotdisplaymessagecontents
ApplicationServerURLValid/Errorlegendneedstobemorealignedtocenter
10.1.500 ToolsandTechnologies SocialEnterprise 173852 Tools insteadoftotheleft
10.1.500 ToolsandTechnologies SocialEnterprise 175341 Tools DataNotificationsUpdatetheRegisterNotificationSourcesectioninOnlineHelp
10.1.500 ToolsandTechnologies SocialEnterprise 175446 Tools Linksonpostmessagedonotworkproperly
CreatingaNotificationRule(namedwithnumbers)doesnotwork,evenwhenthe
10.1.500 ToolsandTechnologies SocialEnterprise 175659 Tools userhasapremiumlicenseforEpicorSocialEnterprise
ProfileAutocreationofEpicorSocialEnterpriseprofilefromEpicorERP10doesnot
10.1.500 ToolsandTechnologies SocialEnterprise 175956 Tools workwhenusingWindowsendpointbinding(Alsofixedin10.1.400.x)
Cannotopenrepliesforaconversationasasinglemessagecolumnbyclickingonthe
10.1.500 ToolsandTechnologies SocialEnterprise 175976 Tools timeagolink
10.1.500 ToolsandTechnologies SocialEnterprise 176154 Tools DeploymentNameshouldbenoneditable
Uninstallprocessdoesnotwork,needtorunittwotimestouninstallEpicorSocial
10.1.500 ToolsandTechnologies SocialEnterprise 176161 Tools Enterprise
10.1.500 ToolsandTechnologies SocialEnterprise 176462 Tools TestingofActivityStreamsingeneralandanUWPinparticular
RuleExportingaruledoesnotworkinInternetExplorer,Edge(v13+)(Alsofixedin
10.1.500 ToolsandTechnologies SocialEnterprise 177490 Tools 10.1.400.x)
InstallingEpicorSocialEnterpriseonadifferentDBinsteadoftheActivityStreams
10.1.500 ToolsandTechnologies SocialEnterprise 177627 Tools default,multitenantconfigurationsettingarenotapplied
10.1.500 ToolsandTechnologies SocialEnterprise 177777 Tools FixpartofEpicorERP10integration(Alsofixedin10.1.400.x)
10.1.500 ToolsandTechnologies SocialEnterprise 177826 Tools ExportinganotificationruledisconnectsSignalRconnectioninFirefox
WhenviewingamessageattachmentinUWP,itisopenedinaseparatebrowser
10.1.500 ToolsandTechnologies SocialEnterprise 177928 Tools windowwitherror500
Ontheinviteusersdialog,whenopenitonce,andcanceltocloseit,thenreopenit
andclickontheaccesslevel,theformautomaticallyclosesandnoneofthebuttons
10.1.500 ToolsandTechnologies SocialEnterprise 178320 Tools orlinksinEpicorSocialwork
10.1.500 ToolsandTechnologies SocialEnterprise 178429 Tools SocialUWPapplicationstopsworkingonLumia635

Page124
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


10.1.500 ToolsandTechnologies SocialEnterprise 178430 Tools ErrorswhenusingcortanacommandsinUWPapplication
10.1.500 ToolsandTechnologies SocialEnterprise 178790 Tools Linktostandalonepageonprivatemessagesdoesnotwork
10.1.500 ToolsandTechnologies SocialEnterprise 179180 Tools Helpisnotupdatedaspartofnightlybuilds
10.1.500 ToolsandTechnologies SocialEnterprise 179181 Tools Supportneedsadocumentexplaininghowtoworkwithtracing
10.1.500 ToolsandTechnologies SocialEnterprise 179588 Tools ErrorfromEpicorSocialwhenchangingcompaniesinmenulistofmodernshell
10.1.500 ToolsandTechnologies SocialEnterprise 179789 Tools Socialsheetisnotupdatedwhenchangingcompaniesonclassicstyle
SocialIconsonformsinEpicorERP10displayintoomanyplaces,shouldonly
10.1.500 ToolsandTechnologies SocialEnterprise 179852 Tools displayonformaldetailforms
10.1.500 ToolsandTechnologies SocialEnterprise 179856 Tools FollowforminEpicorERP10integrationisnotresizedcorrectly
10.1.500 ToolsandTechnologies SocialEnterprise 180078 Tools Selectionoflinksautoinsertedbymediumeditordoesnotworkcorrectly
Needtoupdatecortanacommandsdocumentationbasedonchangestovoice
10.1.500 ToolsandTechnologies SocialEnterprise 180230 Tools commands
ActivityStreamsAftercreatingaNotificationSource,thebackbuttonredirectsyou
10.1.500 ToolsandTechnologies SocialEnterprise 180297 Tools tothesameform
Rapidlyclosingmultiplecolumnscancauseerrorsorgetcolumnsassignedthe
10.1.500 ToolsandTechnologies SocialEnterprise 180550 Tools incorrectIDs
Whenaddinganotificationcolumnonmystream,thebuttonsdonotfitonthe
10.1.500 ToolsandTechnologies SocialEnterprise 180582 Tools screen
FormswithSave/CancelbuttonsneedtobefixedforthebrowserBackbuttontogo
10.1.500 ToolsandTechnologies SocialEnterprise 180811 Tools throughhistorycorrectly
10.1.500 ToolsandTechnologies SocialEnterprise 180821 Tools SQLexceptionswhenindexingmessages(Alsofixedin10.1.400.x)
WindowsAuthenticationdoesnotworkwhenEpicorERP10connectstoEpicor
10.1.500 ToolsandTechnologies SocialEnterprise 181054 Tools SocialEnterprisewithWindowsbinding(Alsofixedin10.1.400.x)

10.1.500 ToolsandTechnologies SocialEnterprise 181269 Tools DataNotificationsInvestigateandfixanyissuesrelatedtoBPMdirectiveupgrades


10.1.500 ToolsandTechnologies SocialEnterprise 181590 Tools Install/Deploymentshouldvalidateuser/password
10.1.500 ToolsandTechnologies SocialEnterprise 182012 Tools Groupsandnotificationcolumnsdonotgetmessagespushedinrealtime
10.1.500 ToolsandTechnologies SocialEnterprise 182013 Tools Logoutmethodinuserprofilesendsouttwosetsofcookies
10.1.500 ToolsandTechnologies SocialEnterprise 182017 Tools Editingamessagewithcontextduplicatesthecontextheader
10.1.500 ToolsandTechnologies SocialEnterprise 182021 Tools Mentionsafteranewlinecharacterdonotworkinmessagepost
10.1.500 ToolsandTechnologies SocialEnterprise 182023 Tools Mentionsatthebeginningofalinearenotautolinked

10.1.500 ToolsandTechnologies SocialEnterprise 182056 Tools UpdateprofilesactiononNotificationSourcetakesuserbacktoAdministrationpage


10.1.500 ToolsandTechnologies SocialEnterprise 182065 Tools ActionsonNotificationSourcesshouldnotbeabletoberunsimultaneously
Eightcortanacommandsareremovedfromapplication,needtoberemovedfrom
10.1.500 ToolsandTechnologies SocialEnterprise 182268 Tools documentation
10.1.500 ToolsandTechnologies SocialEnterprise 182375 Tools ModifyingtheURLonCompanyMaintenancecauseserror401
10.1.500 ToolsandTechnologies SocialEnterprise 182446 Tools TestlatestRoundofUWPfixesbasedonQEDtestingfromMicrosoft
10.1.500 ToolsandTechnologies SocialEnterprise 182495 Tools Using@mentioninmessagecausesallothermarkdowntobelost
10.1.500 ToolsandTechnologies SocialEnterprise 182612 Tools ErrortryingtoenableExternalBAQgeneratedfromsocialvalidations

Page125
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


10.1.500 ToolsandTechnologies SocialEnterprise 182653 Tools Needtocheckallforms,reviewforabilitytoscrolldownandclickbuttons
10.1.500 ToolsandTechnologies SocialEnterprise 182668 Tools FourellipsesdisplayoverUIwhentheyshouldnotinUWP
10.1.500 ToolsandTechnologies SocialEnterprise 182893 Tools NeedanoteexplainingthepurposeofSMTPemailaddressfield
10.1.500 ToolsandTechnologies SocialEnterprise 183524 Tools EpicorSocialshouldnotbehardcodedinthepathtoSignalRhub
10.1.500 ToolsandTechnologies SocialEnterprise 183763 Tools Errorwhenupdatingdatabaseto10.1.400.xwithtwoormorenotificationsources
ForgotPassworddisplaysanerrormessageevenwhenavalidSMTPaccountis
10.1.500 ToolsandTechnologies SocialEnterprise 183785 Tools available
ForgotPasswordlinklooksdisabledbutstillworksinInternetExplorer,Edgewhen
10.1.500 ToolsandTechnologies SocialEnterprise 183797 Tools selectinganERPSource
Files,text,andpageelementscanbedraggedanddroppedevenwhenuserisnot
10.1.500 ToolsandTechnologies SocialEnterprise 183802 Tools loggedin
10.1.500 ToolsandTechnologies SocialEnterprise 183876 Tools Dailydigestisnotsentafterthefirsttime
10.1.500 ToolsandTechnologies SocialEnterprise 183948 Tools Inactiveusersshouldnotreceivemailalertsordailydigest
10.1.500 ToolsandTechnologies SocialEnterprise 184019 Tools HomebuttonismissingonCreateNotificationSourcepage
10.1.500 ToolsandTechnologies SocialEnterprise 184020 Tools NotificationSourcehelpneedstobeupdated
10.1.500 ToolsandTechnologies SocialEnterprise 184021 Tools Forgotpassword/setpasswordtokendoesnotworkwhentokenhas/
ActivityStreamsInMultiTenantenvironment,refreshingasglobaladmin
10.1.500 ToolsandTechnologies SocialEnterprise 184175 Tools incorrectlyreturnsusertomainpage
InMultiTenantenvironment,adminshouldnotconfigureMailServeroptionsor
10.1.500 ToolsandTechnologies SocialEnterprise 184177 Tools EpicorSocialWebsiteURL
10.1.500 ToolsandTechnologies SocialEnterprise 184184 Tools NeedtodividetheEpicorSocialWebsiteURLinto2values
10.1.500 ToolsandTechnologies SocialEnterprise 184205 Tools IsPremiumCheckneedstobetenancyaware
10.1.500 ToolsandTechnologies SocialEnterprise 184208 Tools 404errorwhenServerSourceIDisblank
10.1.500 ToolsandTechnologies SocialEnterprise 184219 Tools NotificationssheetonUserProfiledoesnotrefreshwhenunfollowingthelastrule
10.1.500 ToolsandTechnologies SocialEnterprise 184224 Tools EpicorERP10userwithoutemailaddresscannotbeautocreatedinEpicorSocial
DataNotificationsDatabaseupgradedoesnotfunctioniftherearerelatedtables
10.1.500 ToolsandTechnologies SocialEnterprise 184455 Tools definedinnotificationprofile(Alsofixedin10.1.400.x)
10.1.500 ToolsandTechnologies SocialEnterprise 184607 Tools HttpsbindingsdonotrequiretheDNSIdentity
10.1.500 ToolsandTechnologies SocialEnterprise 186639 Tools DoesnotdisposeofUserFileImplleadstomemorypressureonsocialwebsite
Inmulittenantconfiguration,MessageQueueProcessorcallsmethodsthatwindup
10.1.500 ToolsandTechnologies SocialEnterprise 187017 Tools withwrongtenantid
10.1.500 ToolsandTechnologies SocialEnterprise 187318 Tools CannotdeployorupgradeexistingSocialinstallationin10.1.500
DataNotificationsPreprocessingmessagedirectivesdonotworksincenotifications
10.1.500 ToolsandTechnologies SocialEnterprise 188571 Tools areonlygeneratediftheprimarytablehasrowsinit
10.1.500 ToolsandTechnologies SocialEnterprise 189278 Tools FollowmeActionunderE10doesnotworkproperly
10.1.500 ToolsandTechnologies SolutionWorkbench 161512 Tools AddtheabilitytotracktheMenuelement
10.1.500 ToolsandTechnologies SolutionWorkbench 164539 Tools SolutionInstallacceptsNULLandthenanerroroccurs
10.1.500 ToolsandTechnologies SolutionWorkbench 167654 Tools UnhandledexceptionwhenrightclickingonAdvancedElementSearchwindow
10.1.500 ToolsandTechnologies SolutionWorkbench 170229 Tools "StartsAt"forSolutionsearchdoesnotfilterresults
10.1.500 ToolsandTechnologies SolutionWorkbench 170514 Tools ReportTableCriteria(RptWhereItem)isnotimportedwithmodifiedARForm

Page126
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


QuickSearchisnotimportedsuccessfullywhentherecordalreadyexistsinthe
10.1.500 ToolsandTechnologies SolutionWorkbench 172122 Tools database
DashboardswithoutglobalBAQscanbeinstalledas"AllCompanies"througha
10.1.500 ToolsandTechnologies SolutionWorkbench 174139 Tools solution
SolutionWorkbenchallowsusertocreateaSolutionwithaDescriptionthatis
10.1.500 ToolsandTechnologies SolutionWorkbench 175221 Tools greaterthan29characterswhichcausesanerrorandthesolutionisnotsaved
10.1.500 ToolsandTechnologies SolutionWorkbench 176874 Tools UsercantypeanythingonSolutionTypebutallchangesarelostwhensaving
Unabletoprocessimportfor'DynamicReport'whenimportingBAQReports(Also
10.1.500 ToolsandTechnologies SolutionWorkbench 177272 Tools fixedin10.1.400.x)
10.1.500 ToolsandTechnologies SolutionWorkbench 177512 Tools ImportErrorrelatedtodecimalcharacterchoice(Alsofixedin10.1.400.x)
WhenaSolutionWorkbench.cabfilecontainingaProcessTaskisinstalled,the
followingerrorisreceived:"Theassembly'Ice.Adapters.ProcessTask.dll'couldnotbe
10.1.500 ToolsandTechnologies SolutionWorkbench 179160 Tools found"
10.1.500 ToolsandTechnologies SolutionWorkbench 179610 Tools CannotimportBAQReportbecauseitisassociatedwithanotherreport
Importofmenufrom10.0stopsworkingwitherror:"Thispropertycannotbesetto
10.1.500 ToolsandTechnologies SolutionWorkbench 182088 Tools anullvalue"
10.1.500 ToolsandTechnologies SolutionWorkbench 188663 Tools AddaReportStylethenaReportDataDefinitioninasolutiondisplaysanerror
10.1.500 ToolsandTechnologies SolutionWorkbench 188883 Tools CannotaddadashboardsetforCGCCodetoaSolution
10.1.500 ToolsandTechnologies TaxConnect 177104 Application TaxConnectUnabletocalculatetaxesformorethan5,000lines
10.1.500 ToolsandTechnologies Themes 137181 Tools Decimalpointisnotvisibleonadisabledtextboxusingthedefaulttheme
ThemesmanagementinPreferencesmustnotignoretheCanMaintainThemes
10.1.500 ToolsandTechnologies Themes 166255 Tools option
Groupbarwhencollapsedisnothighlightedwhenclickedupon;thisworkswhen
10.1.500 ToolsandTechnologies Themes 182671 Tools themesaredisabled
DatabaseMigrationSomeFINtableslookdifferentwhenmigratingfrom905to
10.1.500 ToolsandTechnologies Tools 189017 Tools 700.4to500incomparisonwith905to500directly
10.1.500 ToolsandTechnologies Translation 170532 Tools LanguageisnotupdatedwhenisselectedfromChangeCurrentLanguage
TranslationEithernegativeoraboverowscountmessageisdisplayedafterrecord
10.1.500 ToolsandTechnologies Translation 179371 Tools issaved
10.1.500 ToolsandTechnologies WebAccess 140033 Tools CheckDigitUsageisemptyviaEWA
10.1.500 ToolsandTechnologies WebAccess 140390 Tools ContextMenuentrieswithoutaMenuIDdonotwork
10.1.500 ToolsandTechnologies WebAccess 147392 Tools Serialnumberstatuswindowdoesnotworkproperly(Alsofixedin10.1.400.x)
Comboboxdropdownlistsremaindisplayedonthewebformevenwhenthereis
10.1.500 ToolsandTechnologies WebAccess 149188 Tools norow;dropdowncontainsblanklines
UnabletosettheWorkstation,StageShipConfirmstopsworking(Alsofixedin
10.1.500 ToolsandTechnologies WebAccess 149451 Tools 10.1.400.x)
10.1.500 ToolsandTechnologies WebAccess 152857 Tools EWASerialNumberEWAIssueonlysearchbyserialnumbercannotbeactivated
EnterpriseSearchswitchtogridviewcannotbeperformedduetoobjectreference
10.1.500 ToolsandTechnologies WebAccess 155740 Tools error

Page127
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


10.1.500 ToolsandTechnologies WebAccess 157222 Tools BankReceiptFileImportissueswithImportPayments
10.1.500 ToolsandTechnologies WebAccess 157352 Tools IncorrectconversiontoEWAComponents
10.1.500 ToolsandTechnologies WebAccess 158637 Tools AttachmentsuploadedfromEWAarenotusingtheattachmentsettingscorrectly
10.1.500 ToolsandTechnologies WebAccess 160018 Tools NewTaskIDenteredisnotsavedifitisaddedbytabbingout
10.1.500 ToolsandTechnologies WebAccess 161546 Tools Cannotaddsecondrowiftheviewissorted
10.1.500 ToolsandTechnologies WebAccess 161657 Application Part(EWA)TagrecordfunctiondoesnotworkcorrectlyinEWA
10.1.500 ToolsandTechnologies WebAccess 162084 Tools ThepasswordontheCustomReportsformisnotmaskedinEWA
10.1.500 ToolsandTechnologies WebAccess 162471 Tools StartandEndDatesarenotsupportedinParameterswebpagedialog
10.1.500 ToolsandTechnologies WebAccess 162972 Tools OpenWithoptionsdiffersfromtheonesinSmartClient
10.1.500 ToolsandTechnologies WebAccess 163237 Tools EpiUltracomboPlusbindingdoesnotworkforEWAusingaUDTableasChild
InPOEntry,suboperationsandoperationsdisplayondropdownfromlineof
10.1.500 ToolsandTechnologies WebAccess 164198 Tools suboperationtab
The"SaveAs"dialogdoesnotsavetheenteredfilenameinCOAExportandGL
10.1.500 ToolsandTechnologies WebAccess 164761 Tools export(EWA)
SomefoldersfromEWAzipsarenotincluded(orarenotcreated)withinthe
10.1.500 ToolsandTechnologies WebAccess 165434 Tools ResourcesfolderwhichcauseschartsandotherelementstostopworkinginEWA
10.1.500 ToolsandTechnologies WebAccess 165656 Tools ErrorwhendeletingarowwithemptySysRowIDinPriceGroups
IncorrectbehaviorwhenaddinganewServiceCallorContractandarecordis
10.1.500 ToolsandTechnologies WebAccess 165659 Tools alreadyexisting
"InputPromptsonly"optiondoesnotworkcorrectlyinEWAforupdatable
10.1.500 ToolsandTechnologies WebAccess 167120 Tools dashboardswithtrackerviews(Alsofixedin10.1.400.x)
"Returncolumn"dropdownlistdisplayscolumnsthatarenotcorrespondingtothe
10.1.500 ToolsandTechnologies WebAccess 168285 Tools selectedBAQafterusing"Clear"buttoninQuicksearchentry
10.1.500 ToolsandTechnologies WebAccess 168347 Application ReceiptEntryThepackingslipsarenotdisplayedforintercompanyreceiptinEWA
10.1.500 ToolsandTechnologies WebAccess 168411 Tools AllowtoTypeDecimalsonQtyFieldWhenUOMAllowDecimals=0
10.1.500 ToolsandTechnologies WebAccess 169455 Tools StyleBackColorisdisplayedincorrectlyinRateTypeEntryGrid
10.1.500 ToolsandTechnologies WebAccess 169554 Application ChangePOSuggestionsAcceptingasuggestionisnotclearingthescreeninEWA
MicrosoftEdgebrowseriscurrentlynotsupported;aninformationalmessage
10.1.500 ToolsandTechnologies WebAccess 169663 Tools shouldbedisplayedifauseraccidentlyaccessesERPusingEdge
10.1.500 ToolsandTechnologies WebAccess 169675 Tools ErrorwhenCashReceiptTrackerisopenedfromthecontextmenu
10.1.500 ToolsandTechnologies WebAccess 169762 Tools UnabletoEnteradateusingcalendarfunction
10.1.500 ToolsandTechnologies WebAccess 170164 Tools EpicorSocialdisplaysanerrorwhenopeningPlanningContractEntry
10.1.500 ToolsandTechnologies WebAccess 171856 Tools Sessionisnotterminatedifbrowserisclosed
10.1.500 ToolsandTechnologies WebAccess 172047 Tools ClearbuttononSearchdoesnotwork
10.1.500 ToolsandTechnologies WebAccess 172138 Tools JournalEntryLinegridissues
10.1.500 ToolsandTechnologies WebAccess 172187 Tools VoidPackscreendoesnotopeninEWA
InEWA,whenselectinganamedsearchcreatedonSmartClient,theradiobuttonis
10.1.500 ToolsandTechnologies WebAccess 172257 Tools notselected
10.1.500 ToolsandTechnologies WebAccess 172276 Tools Errorwhencreatingnamedsearchwithquicksearch
10.1.500 ToolsandTechnologies WebAccess 172284 Tools Errorwhensavingnamedsearchwithquicksearch

Page128
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


10.1.500 ToolsandTechnologies WebAccess 172302 Tools FirefoxloadsEWAhomepageincorrectlyafterrefreshingthewebbrowser
Whencreatingmorethanonenamedsearchinarow,theapplicationfieldisempty
10.1.500 ToolsandTechnologies WebAccess 172364 Tools (butitisfilledwhensavingthenamedsearch)
Whenanamedsearchhasautoexecuteenabled,itdoesnotautoexecuteitright
10.1.500 ToolsandTechnologies WebAccess 172365 Tools aftercreatingthenamedsearch
10.1.500 ToolsandTechnologies WebAccess 172369 Tools MaximumRowsReturnedignoredonNamedSearches
BasictabonNamedSearchisemptyaftercreatingandclosingthenamedsearch
10.1.500 ToolsandTechnologies WebAccess 172372 Tools options
10.1.500 ToolsandTechnologies WebAccess 172517 Tools DisabledcontrolsusingConfigurator
10.1.500 ToolsandTechnologies WebAccess 172523 Tools Issuewithmultilevelconfigurator
WhenclickingPrintPreviewonBAQReports,thefollowingmessagedisplays:
10.1.500 ToolsandTechnologies WebAccess 172600 Tools "Objectdoesn'tsupportthisaction"
Objectdoesnotsupportpropertyormethod'ShowHelp',whenclickingHelpbutton
10.1.500 ToolsandTechnologies WebAccess 172758 Tools onMESsite
10.1.500 ToolsandTechnologies WebAccess 172769 Tools MESClosebuttondoesnotworkonFirefox
Unexpectedmessagedisplayedinreportlauncheraftertimeouthasbeenreachedin
10.1.500 ToolsandTechnologies WebAccess 172780 Tools EWAandprintingactionismade(Alsofixedin10.1.400.x)
10.1.500 ToolsandTechnologies WebAccess 172819 Tools Incorrectformatwhenexportingafileonforecastentry
DelegatemethodssubscribedtoPaneDisplayedeventfrombaseDockManagerare
10.1.500 ToolsandTechnologies WebAccess 172977 Tools notexecuted
WebbrowsersallowEWAuserstoentercredentialsimplementinguserthatisnot
10.1.500 ToolsandTechnologies WebAccess 173000 Tools theonethatiscurrentlyloggedon
EWAcannotuseCRM,MES,orTElicensestobelaunchedinURLwhenWindows
10.1.500 ToolsandTechnologies WebAccess 173049 Tools bindingisconfiguredforEpicorERP10AppserverandEWA(SSO)
10.1.500 ToolsandTechnologies WebAccess 173248 Tools SSRSreportscannotpreviewaCSVoutputformatfromEWA
10.1.500 ToolsandTechnologies WebAccess 173310 Tools RowRuleisignoredonEWA
10.1.500 ToolsandTechnologies WebAccess 173332 Tools NumericUDfieldonadashboarddoesnotsaveitsvalue(InternetExplorer)
10.1.500 ToolsandTechnologies WebAccess 173438 Tools ProductconfigurationswithinitialvalueforcomboboxesdonotdefaultforEWA
10.1.500 ToolsandTechnologies WebAccess 173479 Tools InspectionResultsEntryConfiguratorscreendoesnotdisplaycorrectly
10.1.500 ToolsandTechnologies WebAccess 173601 Tools EWAMESdisabledform
10.1.500 ToolsandTechnologies WebAccess 173690 Tools EWAPettyCashEntrytreeviewdoesnotworkasSmartClient
RadiobuttonsfromNamedsearchesareignoredwhenthenamedsearchiscreated
10.1.500 ToolsandTechnologies WebAccess 173900 Tools fromEWA
AllMESMenubuttonsinEWAopennewinstancesofMESinsteadofperforming
10.1.500 ToolsandTechnologies WebAccess 173965 Tools theirexpectedactionswhenEWAisconfiguredforSSO
BaseDefaultwhensetinQSdoesnotreplacebasesearchasitdoesinthesmart
10.1.500 ToolsandTechnologies WebAccess 174331 Tools client
PettyCashEntrychangingtheCashApplyDatecausesotherfieldstobecome
10.1.500 ToolsandTechnologies WebAccess 174641 Tools disabled(Alsofixedin10.1.400.x)

Page129
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


10.1.500 ToolsandTechnologies WebAccess 174938 Tools EWAcannotopentargetURLsconfiguredinMenus
10.1.500 ToolsandTechnologies WebAccess 175009 Tools ARInvoiceEntrydoesnotworkinEWA
10.1.500 ToolsandTechnologies WebAccess 175139 Tools ExceptiontextisnotdisplayedinFirefox/Mozillacorrectly
URLcharactersizeisreachedwhenservername,sitename,and/orconfiguration
10.1.500 ToolsandTechnologies WebAccess 175142 Tools namearetoolong
CustomizeservermessageswhenclosingLogIndialogaftertimeout(Alsofixedin
10.1.500 ToolsandTechnologies WebAccess 175285 Tools 10.1.400.x)
POApprovalSearchscreendisplaysanerrormessageanddoesnotretrieveany
10.1.500 ToolsandTechnologies WebAccess 175288 Tools records
WebformgenerationfromDashboardmaintenanceformcausesanincorrectweb
10.1.500 ToolsandTechnologies WebAccess 175578 Tools AccessstatusinMenuMaintenance
ConfiguratorEWAComboBoxesdonotdisplaytheDynamicListvaluesforLookup
10.1.500 ToolsandTechnologies WebAccess 175759 Tools andUDMethods(Alsofixedin10.1.400.x)
NewinstancesofEWAMESopenedwhenyouclickanyof"Job"buttonsfromforms
10.1.500 ToolsandTechnologies WebAccess 176695 Tools launchedthroughEWAMESmenu(SSOimplemented)
10.1.500 ToolsandTechnologies WebAccess 177005 Tools Sortingbyclickingcolumnheadersdoesnotwork
10.1.500 ToolsandTechnologies WebAccess 177053 Tools GLBookEntrycannotbeused
10.1.500 ToolsandTechnologies WebAccess 177139 Tools BAQreportscannotbeprintedinEWA
10.1.500 ToolsandTechnologies WebAccess 177311 Tools PaymentTrackerfieldsarenotinitializedcorrectly
OnEWA,twoqueriesareautorefreshedwhenloadingadashboard,butjustoneof
10.1.500 ToolsandTechnologies WebAccess 177538 Tools themismarkedasautorefreshonload
10.1.500 ToolsandTechnologies WebAccess 177593 Tools UnabletosaveemptyUDfieldsonacustomizedwebform
Fixticket/tokencreationwhencommunicatingwithEnterpriseSearch(Alsofixedin
10.1.500 ToolsandTechnologies WebAccess 177704 Tools 10.1.400.x)
10.1.500 ToolsandTechnologies WebAccess 177976 Tools AllfieldsonTransferOrderWorkbenchbecomeenabledwhenscreenopens
DashboardthatusesaTrackerViewthathasEpiCombosboundtotheUserCodes
10.1.500 ToolsandTechnologies WebAccess 178427 Tools table,overwritesthevalueswhenexecutedinEWA
10.1.500 ToolsandTechnologies WebAccess 178471 Tools ContextPanelcannotberesizedormoved
10.1.500 ToolsandTechnologies WebAccess 178472 Tools RadioButtonlabelsarenotdisplayedinconfigurations(Alsofixedin10.1.400.x)
Fixticket/tokencreationwhencommunicatingwithEnterpriseSearch(Alsofixedin
10.1.500 ToolsandTechnologies WebAccess 178474 Tools 10.1.400.x)
10.1.500 ToolsandTechnologies WebAccess 178694 Tools Inconsistencieswhenselectingmultiplerecordsfromsearchresults
FinancialManagement>AP>Setup>ElectronicInterfacemenuitemnotavailable
10.1.500 ToolsandTechnologies WebAccess 178878 Tools inEWA
10.1.500 ToolsandTechnologies WebAccess 178975 Tools UnabletoprintCrystalReportinEWA,thebuttonisdisabled
"TheDisplayMemberisrequired"messagedisplaysimmediatelyafteraddinganew
10.1.500 ToolsandTechnologies WebAccess 179016 Tools quicksearchvalueitem
10.1.500 ToolsandTechnologies WebAccess 179075 Tools EWAreportmonitordoesnotdisplayprinted/previewedreports
10.1.500 ToolsandTechnologies WebAccess 179233 Tools SalesOrderEntryworksincorrectly

Page130
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


10.1.500 ToolsandTechnologies WebAccess 179307 Tools AdditionaltestsforSCR169554
10.1.500 ToolsandTechnologies WebAccess 179511 Tools Httpsprotocolcannotbeusedsince10.1.400(Alsofixedin10.1.400.x)
Message"Objectdoesn'tsupportpropertyormethod'ToLowerInvariant'"after
10.1.500 ToolsandTechnologies WebAccess 179552 Tools selectingnewBAQdata
10.1.500 ToolsandTechnologies WebAccess 180185 Tools SeveralissueswithConfigurator(Alsofixedin10.1.400.x)
Warningmessage"Youcannotselectmorethan5serialnumbers"whenyouselect
10.1.500 ToolsandTechnologies WebAccess 180290 Tools lessthanfiveserialnumbersonIssueMaterial

10.1.500 ToolsandTechnologies WebAccess 180293 Tools WhenselectingSerialNumbersonIssueMaterial,onlythelastoneremainsselected


MultipleissueswithConfigurations(incorrectdescriptionboxcontents,website
10.1.500 ToolsandTechnologies WebAccess 180668 Tools launching,otherissues)(Alsofixedin10.1.400.x)
10.1.500 ToolsandTechnologies WebAccess 180684 Tools GetFileNameWithoutExtensionfunctionhasincorrectimplementation
10.1.500 ToolsandTechnologies WebAccess 180897 Tools RefreshAlloptionisnotvisibleonEWAforms
Dashboardtrackersearch/filternotaccessibleonEWA,ifsetasAutoHide(Also
10.1.500 ToolsandTechnologies WebAccess 180898 Tools fixedin10.1.400.x)
Trackerfilterdockedonthetopofthepage(firstiteminthedisplay)isnotvisiblein
10.1.500 ToolsandTechnologies WebAccess 180899 Tools EWA(Alsofixedin10.1.400.x)
10.1.500 ToolsandTechnologies WebAccess 180970 Tools GLAccountEditordoesnotfillinSegValuesfields
Refreshworksincorrectlyincasedatasethasmorethanonerowandchangeswere
10.1.500 ToolsandTechnologies WebAccess 181109 Tools madeoutsidecurrentform
EpiDateTimeEditorcontroldisplaysincorrecttimeforcolumnswith{datetime}
10.1.500 ToolsandTechnologies WebAccess 181112 Tools format
10.1.500 ToolsandTechnologies WebAccess 181151 Tools CannotselectthesamefileviaOpenFileDialog
10.1.500 ToolsandTechnologies WebAccess 181233 Tools Incorrectfunctionforcheckingthehttpsprotocol
WhendynamicallybindingagridtoaDataTable,theheadersarenotdisplayed
10.1.500 ToolsandTechnologies WebAccess 181266 Tools correctly
ErrordisplaysonEWAconfigurationswhencurrentcompanyfortheuserdoesnot
10.1.500 ToolsandTechnologies WebAccess 181314 Tools matchthecompanywhichopenedtheconfiguration
InPurchaseOrderrelease,G/LAccountfielddoesnotrecognizeaccountcodewith
10.1.500 ToolsandTechnologies WebAccess 181602 Tools fourthSegmentvalue
Promptfieldfromatrackerviewignoresconditiononadashboard(Alsofixedin
10.1.500 ToolsandTechnologies WebAccess 181817 Tools 10.1.400.x)
OnSalesorder/Orderline/PriceListscreen,theQuantityfielddoesnotacceptany
10.1.500 ToolsandTechnologies WebAccess 181940 Tools numbersandremainsempty
Configuratorissueswithdescriptionfieldsandmessageboxes(Alsofixedin
10.1.500 ToolsandTechnologies WebAccess 181958 Tools 10.1.400.x)
10.1.500 ToolsandTechnologies WebAccess 182140 Tools UnabletomodifySalespersoninOrderEntryinEWA(Alsofixedin10.1.400.x)
NodatacanbeenteredonDMRNumfieldfromOpenDMRActionStatusdashboard
10.1.500 ToolsandTechnologies WebAccess 182271 Tools inEWA(Alsofixedin10.1.400.x)

Page131
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


HeadersforReportParameterspartaremissinginEWAReports(TrialBalance
10.1.500 ToolsandTechnologies WebAccess 182397 Tools report)
10.1.500 ToolsandTechnologies WebAccess 182467 Tools EWAshouldsupportList<KeyValuePair<string,byte[]>>
WebDashboardsFieldsfromTrackerviewsareupdatingcellsfromthegridwhen
theimpliedfieldfromthetrackerviewisnotsettoallowupdates(Alsofixedin
10.1.500 ToolsandTechnologies WebAccess 182538 Tools 10.1.400.x)
10.1.500 ToolsandTechnologies WebAccess 182551 Tools PerformancerelatedenhancementsforEWAConfigurator(Alsofixedin10.1.400.x)
10.1.500 ToolsandTechnologies WebAccess 182678 Tools JScriptcausesanerrorduetocasesensitivepropertynames
10.1.500 ToolsandTechnologies WebAccess 182942 Tools JobEntryformdoesnotwork
10.1.500 ToolsandTechnologies WebAccess 183151 Tools Issuewhenpagingbackwardintoanewconfigurationonmultilevelconfigurations
10.1.500 ToolsandTechnologies WebAccess 183227 Tools FinancialreportsdonotworkinEWAduetoanunexpectedmessageonpreview
OutboundEDIreportsarenotbeingintheconfiguredoutputlocationfromthe
10.1.500 ToolsandTechnologies WebAccess 183300 Tools correspondingreportstyle
10.1.500 ToolsandTechnologies WebAccess 183365 Tools PreventtheslidingcontextsensitivemenufromopeningintheEWAConfigurator
10.1.500 ToolsandTechnologies WebAccess 183473 Tools GenerateLegalNumberforQuantityAdjustmentdoesnotworkinEWA
EWAConfiguratorIssueswithimageresizingandloadingofbrowserURLsthat
10.1.500 ToolsandTechnologies WebAccess 183514 Tools have"https"prefixes(Alsofixedin10.1.400.x)
10.1.500 ToolsandTechnologies WebAccess 184079 Tools Itshouldnotepossibletoenteranyvalueonacomboboxfromaconfiguration
10.1.500 ToolsandTechnologies WebAccess 184345 Tools StatusRetrievingDataremainsontheImageMaintenanceform(InternetExplorer)
10.1.500 ToolsandTechnologies WebAccess 184895 Tools Issueswithchangedeventsonradiobuttonsandcheckboxes
10.1.500 ToolsandTechnologies WebAccess 184959 Tools SystemMonitorisnotloaded
SavedImagecannotbedisplayedifthenameoftheImageisentereddirectlyinthe
10.1.500 ToolsandTechnologies WebAccess 184990 Tools ImageNamefield
10.1.500 ToolsandTechnologies WebAccess 185069 Tools "InvoicePaymentSelection"webformissues
Whenacombonearthebottomofthescreenisopened,thepopupshoulddisplay
10.1.500 ToolsandTechnologies WebAccess 185087 Tools above
10.1.500 ToolsandTechnologies WebAccess 185167 Tools WebFormsUDfieldsdoesnotsavevaluesfromEWA
10.1.500 ToolsandTechnologies WebAccess 185350 Tools CannotprintpreviewBAQReportsthathavefilters
FiltersfromRebatecontractSummaryreportandRebatetransactionreportdonot
10.1.500 ToolsandTechnologies WebAccess 185438 Tools workingfromEWA
WebFrameworkErrorsdisplayedwhencreatingaNamedSearchanddeletingit
10.1.500 ToolsandTechnologies WebAccess 187355 Tools leavingemptyfields,thenaddinganewNamedSearch
WebFrameworkNamedsearchtakesparametersfromthelatestcreatednamed
10.1.500 ToolsandTechnologies WebAccess 187367 Tools search
WebFramework"Unabletogetproperty'ldx'ofundefinedornullreference"
messagewhenselectingavailablequicksearchonnamedsearchoptions,onsales
10.1.500 ToolsandTechnologies WebAccess 187369 Tools orderentry
WebFrameworkDisabledradiobuttonsevenifacustomerisenteredonNamed
10.1.500 ToolsandTechnologies WebAccess 187383 Tools Search

Page132
ChangeListResolvedIssues EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


10.1.500 ToolsandTechnologies WebAccess 187417 Tools WebFrameworkReturnAllRowsisnotselectedbydefaultonNamedSearch

Page133
ChangeListApplicationEnhancements EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


PartOnHandStatusAllquantityfieldsindashboardnowusestheQuantity
10.1.500 ExecutiveManagement ExecutiveDashboard 167967 Application DisplayDecimalsetting
10.1.500 FinancialManagement AccountsPayable 52028 Application PaymentEntryInSelectInvoicesscreenthe'Selected'checkboxdoesnotfunction.
10.1.500 FinancialManagement AccountsPayable 111478 Application InvoiceEntryAPNewReceiptlineoptionisdisableforTaxinclusivepricinginvoice
10.1.500 FinancialManagement AccountsPayable 153251 Application PaymentProposalReportIncludeTotalamountsinthereport
10.1.500 FinancialManagement AccountsPayable 167042 Application InvoiceEntryAPAllowtomanuallyupdateDueDatefieldinInvoiceHeader
10.1.500 FinancialManagement AccountsPayable 176828 Application TaxTypeAllowPaymentDiscountTreatmentoptionforCollectionMethod=
RMAProcessingItispossibletogenerateasmanyCreditMemorequestsas
10.1.500 FinancialManagement AccountsReceivable 117699 Application wantedforasingleRMAentry
10.1.500 FinancialManagement AccountsReceivable 118157 Application PostedInvoiceUpdateARNeedabilitytochangepaymentmethod
10.1.500 FinancialManagement AccountsReceivable 139459 Application ReverseCashReceiptNowallowsMiscCashReceiptstobereversed
10.1.500 FinancialManagement AccountsReceivable 140724 Application CashReceiptEntrydoesnotretrievelastcreditcardinformationprocessedfor
10.1.500 FinancialManagement AccountsReceivable 179684 Application InvoiceEntryARAddtheabilitytotransfermultiplelnvoicestoanothergroupat
10.1.500 FinancialManagement AccountsReceivable 180031 Application CashReceiptEntryARUnabletoselectoverpaidinvoiceoncashreceipt
10.1.500 FinancialManagement AccountsReceivable 182546 Application TaxBoxEntrytrackchangesformanualentries(Epic1141)
10.1.500 FinancialManagement CSFAll 175117 Application CSFAPACStockmovementreport,Nonnettable
10.1.500 FinancialManagement CSFBelgium 176160 Application CSFEMEASEPAUsingPaymentRefNumbersinRemittanceInfo(Epic824)
10.1.500 FinancialManagement CSFChina 175116 Application ZeroRateTypeInvoiceinGTI
DenmarkCSFInstallationprocedureshouldbeenhancedtoload
10.1.500 FinancialManagement CSFDenmark 97140 Application UserDefinedCodeTypesautomatically.
10.1.500 FinancialManagement CSFEuropeanUnion 175159 Application CSFEMEAExportingIntrastatdataforIDEPplatform(Epic660)
10.1.500 FinancialManagement CSFFrance 176739 Application BesurethatEItoexportARPILCRFilewasupliftedfromE9toE10
10.1.500 FinancialManagement CSFMexico 175282 Application ElectronicAccountingMXGLJournalsreportshouldshowtransactiondescription
ElectronicAccountingAfilterforGLaccountsegmentshouldbeaddedtotheList
10.1.500 FinancialManagement CSFMexico 176336 Application ofAccountsandTrialBalancereports
10.1.500 FinancialManagement CSFMexico 176459 Application APInvoiceLinedetailsinPJGLJournal(EPIC940)
10.1.500 FinancialManagement CSFMexico 177707 Application AccountNumoninvoiceshouldcomefromcustomer
10.1.500 FinancialManagement CSFMexico 177716 Application allowstoimportfilessavedonlyontheserverandSaaScustomersdonthave
10.1.500 FinancialManagement CSFMexico 178145 Application APInvoicefieldforTARcoderequired
ErrormessageafterAccountNumbervalidationshouldbecorrectedforCustomer
10.1.500 FinancialManagement CSFMexico 178224 Application andARInvoice
10.1.500 FinancialManagement CSFMexico 179179 Application CSFMexicoAddedElectronicInvoiceforPartialPaymentsMigrationto10.1.500
10.1.500 FinancialManagement CSFNetherlands 175152 Application CSFNetherlandsElectronicVATDeclarationReport/Files(Epic373)
10.1.500 FinancialManagement CSFNetherlands 175154 Application CSFNetherlandsICPReporting(Epic374)
10.1.500 FinancialManagement CSFNetherlands 175156 Application CSFNetherlandsSEPASCTPaymentFileFormats(Epic394)
10.1.500 FinancialManagement CSFNetherlands 175157 Application CSFNetherlandsSEPADDFormat(Epic395)
10.1.500 FinancialManagement CSFNetherlands 178722 Application CSFNetherlandsVATIDandFormatCheck(Epic843)
10.1.500 FinancialManagement CSFNetherlands 178725 Application CSFNetherlandsGLAuditfile(Epic697)
10.1.500 FinancialManagement CSFNetherlands 179658 Application CSFEMEAIntrastatDashboard(Epic826)
10.1.500 FinancialManagement CSFNetherlands 182730 Application CSFNetherlandsRevenue&ExpenseAnalysiswithTaxDetails(Epic393)

Page134
ChangeListApplicationEnhancements EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


10.1.500 FinancialManagement CSFPeru 167131 Application SUNATV1.3.1IncludeallpartnerReportsintotheCSFfordeliveryin10.1
10.1.500 FinancialManagement CSFTaiwan 175115 Application GUIRegistrationNumber
10.1.500 FinancialManagement CSFTaiwan 175717 Application ConsolidatePackingSlips
10.1.500 FinancialManagement CSFThailand 151840 Application DatainstockcardreportisnotarrangedinDateandtimesequence.
CurrencyMasterNotpossibletolinkcurrency2ndtimetootherglobalcurrency,
10.1.500 FinancialManagement CurrencyManagement 172091 Application fromthesameorfromotherexternalcompany
RateTypeNotpossibletolinkRateType2ndtimetootherglobalRateType,from
10.1.500 FinancialManagement CurrencyManagement 172100 Application thesameorfromotherexternalcompany
CurrencyMasterLinkCurrencyTabinCurrencyMastermainformtobemoved
10.1.500 FinancialManagement CurrencyManagement 179265 Application toseparateform
10.1.500 FinancialManagement CurrencyManagement 180123 Application RateTypeLinkRateTypeTabintobemovedtoseparateform
10.1.500 FinancialManagement GeneralLedger 181157 Application Make10800conversionprogramavailableasuserrunnableoptionalconversionfor
ConversionMade10800conversionprogramavailableasuserrunnableoptional
10.1.500 FinancialManagement GeneralLedger 181157 Application conversionforE10.1
LegalNumberAddnewnumberanddocumenttype"ManualGRNI"forlegal
10.1.500 FinancialManagement GeneralLedger 181659 Application numbergeneration
SupplierMaintenanceLinkSupplierPrimarycontactflagisnowcopiedtonew
10.1.500 FinancialManagement MultiSiteManagement 81126 Application globalcontact
10.1.500 FinancialManagement MultiSiteManagement 166920 Application MultiCompanyDirectServerProcessFixedpossiblememoryleakcode
MultiCompanyDirectServerProcessLognowshowstheDatabasePortor
10.1.500 FinancialManagement MultiSiteManagement 168109 Application Identifierhittingthelog
MultiCompanyDirectServerProcessPartentrylinkglobalpartsskipbuttonisnot
10.1.500 FinancialManagement MultiSiteManagement 178877 Application longerdisabledandskippedpartscannowbedeselected
CustomerMaintenanceLinkCustomerGlobalPrimaryContactcheckboxesare
10.1.500 FinancialManagement MultiSiteManagement 181709 Application nowselectedautomatically
EnhancedallMTExp,RegandValclassestouseenhancedFWtosendForceSeekas
10.1.500 FinancialManagement MultiSiteManagement 182151 Application anadditionallockhint
HHPackageControlAdhocReceiptToInventoryCreatedanewHHscreentomove
10.1.500 ProductionManagement DataCollection 170249 Application thestagedAdhocPCIDsintoInventory.
HHPackageControlParentMaster&MixedTransactionsPKGMIXD&PKGMSTR
10.1.500 ProductionManagement DataCollection 176816 Application nowvalidatePrinters(Alsofixedin10.1.400.x)
HHPackageControlRepackReclassByPCIDAddedabilitytogeneratepcidfor
10.1.500 ProductionManagement DataCollection 177784 Application remainingqtybutnotprintlabel
HHPackageControlParentMaster&mixedChildPCIDinformationisnot
10.1.500 ProductionManagement DataCollection 178041 Application displayedontheItem
HHPackageControlJobReceiptToInventorySearchscreensareclunkyandwill
10.1.500 ProductionManagement DataCollection 180234 Application notworkforawarehouseuser.
10.1.500 ProductionManagement DataCollection 185315 Application HHPackageControlConfirmMasterandMixedConfimedmessagenowdoesnot

Page135
ChangeListApplicationEnhancements EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


ElectronicInterfaceItshallbepossibletoinvokecompanyspecificElectronic
10.1.500 ProductionManagement Engineering 176730 Application InterfaceswhenCompanyIDcontainsnonalphanumericcharacters
10.1.500 ProductionManagement FieldService 173492 Application ServiceCallCenterReplaceBillServiceRatepatchfieldwithDBfieldinLaborDtl
10.1.500 ProductionManagement JobManagement 166529 Application QuickJobEntryAddedanewcheckboxforMassPrintsimilartoJobStatus
10.1.500 ProductionManagement JobManagement 171965 Application JobTrackerJobType"Service"isnowdisplayedinJobTracker(oronthreeJob
10.1.500 ProductionManagement JobManagement 173694 Application KanbanReceiptsNowallowsKanbanReceiptstocreatejobsforNonstockitems
JobTrackerJobType"Service"isnowdisplayedintwoJobReports(Production
10.1.500 ProductionManagement JobManagement 174559 Application DetailandJobTravelerreports)
PlanningWorkbenchSuggestionisnowremovedfromGridwhenyouuseSubmit
10.1.500 ProductionManagement JobManagement 174636 Application ProcesstocreatenewJob
10.1.500 ProductionManagement JobManagement 174813 Application JobTravelerThe"ToOrder"and"ToStock"columnsarenowdisplayedinthe
10.1.500 ProductionManagement JobManagement 177072 Application BackflushLaborServerProcessAddedabilitytoentertimebutbackflushquantity
10.1.500 ProductionManagement JobManagement 188008 Application BackflushLaborServeProcessEnhancedthelogfileforthisprocesstogivemore
BackflushLaborServeProcessAddedanoptiontoreportthebackflushlabor
10.1.500 ProductionManagement JobManagement 188770 Application transactionagainsttheEmployeethattriggerthebackflush
MaterialRequirements GenerateSuggestionsProvidedtheabilitytooptionallyskipthelogicthatlooksfor
10.1.500 ProductionManagement Planning 163814 Application thelastPOinordertogetpricesandsuppliers
MaterialRequirements ProcessMRPNowusesDynamicdaysofsupplyinLeadTimetoconsider
10.1.500 ProductionManagement Planning 173638 Application productioncalendars
MaterialRequirements
10.1.500 ProductionManagement Planning 174008 Application WarehouseandBinValidations
MaterialRequirements ProcessMRPLogicthatexplodesdetailsfromaJobisonlyworkingforthefirst
10.1.500 ProductionManagement Planning 177790 Application levelASM
MaterialRequirements
10.1.500 ProductionManagement Planning 183608 Application NewPOSuggestionsApprovedPurchaseOrdersneedtogeneratetaxes
MaterialRequirements
10.1.500 ProductionManagement Planning 183608 Application NewPOSuggestionsApprovedPurchaseOrdersnowgeneratetaxes
10.1.500 ProductionManagement PlanningContracts 173992 Application PlanningContractValidatedthewarehousesandbinwhenthecontractis
10.1.500 ProductionManagement PlanningContracts 177780 Application PlanningContractAddedpartdescriptiontothedemandandsupplytabs
PreventiveMaintenance MaintenanceJobEntryListPanelisnotneededinMaintenanceJobEntryorany
10.1.500 ProductionManagement Management 152801 Application otherJobEntryUI.
DMRProcessingDebitMemoRecordcreatedforRejectMaterialhasUnitCost
10.1.500 ProductionManagement QualityAssurance 174832 Application fielddisabled
SchedulingEngineMultijobNowincludesallthemultijoboptionsinthejob
10.1.500 ProductionManagement Scheduling 155102 Application schedulingboard
SchedulingEngineAddedflexibilitytoSchedulingbyallowingtheusertosetthe
10.1.500 ProductionManagement Scheduling 185987 Application defaultschedulingtimeattheSitelevel
10.1.500 ProductionManagement TimeManagement 183102 Application ERP/HCMintegrationAddedPayHoursfieldandvalidationstoLaborrecords

Page136
ChangeListApplicationEnhancements EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


TimeSheetEntryFortheHCMintegration,theyareunabletodeleteLaborDtl
10.1.500 ProductionManagement TimeManagement 189302 Application recordsthroughServiceConnect
CustomerRelationship RMAProcessingWhenalegalnumberisselectedthecustomerfieldshouldbe
10.1.500 SalesManagement Management 165040 Application populated
CustomerRelationship PriceListImportandExportpathshouldrefertoaClientpath,insteadofaServer
10.1.500 SalesManagement Management 183660 Application path
10.1.500 SalesManagement DemandManagement 185644 Application DemandImportProcessAddedabilitytoaddmoreUDfieldstotheinboundEDI
10.1.500 SalesManagement EDI 174448 Schema EDIInboundPOLinefieldisrestrictedtosupportonly5digits,insteadof20digits
10.1.500 SalesManagement OrderManagement 175546 Application FulfillmentWorkBenchClearAllbuttondoesnowdeselectallrecords
10.1.500 SalesManagement OrderManagement 176179 Application OrderEntryWhen'NoJob'isselectedasJobType,theOrderJobWizardisnow
10.1.500 SalesManagement OrderManagement 177819 Application OrderEntryUnselectingLockUnitPriceflag,doesn'tdefaultstopricedefinedat
10.1.500 SalesManagement OrderManagement 184051 Schema OrderEntryAddednewDBfieldstoErp.OrderHedtable
ConfiguratorEntryAddedaduplicateconfiguratoroptiontocreateanewcopyof
10.1.500 SalesManagement ProductConfiguration 155346 Application aconfiguration
ConfiguratorDocumentRulesNowshowsatooltipwhenhoveringoverexpression
10.1.500 SalesManagement ProductConfiguration 165219 Application likemethodrules
EnterpriseConfiguratorServerProcessNowtransfersLocalvariablesalongwith
10.1.500 SalesManagement ProductConfiguration 171994 Application configurations
ConfiguratorConversionConvertPCInValuesprocesslogincludesadditionalinfo
10.1.500 SalesManagement ProductConfiguration 175566 Application explainingwhichrecordsitprocessedvalues(Alsofixedin10.1.400.x)
10.1.500 SalesManagement ProductConfiguration 176581 Application ConfiguratorDesignerAddedPublishtoDocumenttoTextEditor
ConfiguratorRunTimeChanging/improvingthemessagesdisplayedtotheuser
10.1.500 SalesManagement ProductConfiguration 179532 Application duringgetdetails
10.1.500 SalesManagement ProductConfiguration 182293 Application ConfiguratorUserDefinableFunctionsAddedtheabilitytofilterbymethodtype
ProjectAnalysisExportAllowssubmissionofseveralprocesseswithdifferent
10.1.500 SalesManagement ProjectManagement 179299 Application parametersatthesametime(Alsofixedin10.1.400.x)
10.1.500 SalesManagement QuoteManagement 174848 Application ServiceJobTrackerRemovedSaveandDeleteIconsonToolbarfromServiceJob
10.1.500 SalesManagement QuoteManagement 183492 Application Opportunity/QuoteEntryCreatedaunittesttocovercertainquotecalculations
AdvancedMaterial
10.1.500 SupplyChainManagement Management 179018 Application MaterialRequestQueueChangePriority0toPriority9tobethelowest.
AdvancedMaterial MaterialRequestQueue/MtlQueueMgrAddsearchbuttonsaslabelsforfilter
10.1.500 SupplyChainManagement Management 183577 Application dropdownlists.
10.1.500 SupplyChainManagement HandheldMES 169519 Application HHPackVerifyByPCIDInitialDesignandcreationofthePackVerifyByPCIDHH
10.1.500 SupplyChainManagement HandheldMES 183663 Application HHPackVerifyByPCIDPhase2updatesandcodingforPackVerifyUI
IssueMaterialRemovelogicthatpreventsuserswithoutCanOverrideAllocation
10.1.500 SupplyChainManagement InventoryManagement 166249 Application rightsfromoverridingallocations
PackageControlMaintenancePCIDAddaPrinterIcontothetoolsbartoallowfor
10.1.500 SupplyChainManagement InventoryManagement 171497 Application reprintsofasinglePCIDatatime.

Page137
ChangeListApplicationEnhancements EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


InventoryTransferMultiplesessionstransferringthesameinventorycausesan
10.1.500 SupplyChainManagement InventoryManagement 176172 Application immediateerror(Alsofixedin10.1.400.x)
10.1.500 SupplyChainManagement InventoryManagement 176593 Application PackageControlPCIDHandheldscreensarenotbehavingasdesignsays
10.1.500 SupplyChainManagement InventoryManagement 176838 Application PackageControlIDTypeConfigPCIDNeedabilitytosetnumericlastvalueforgo
10.1.500 SupplyChainManagement InventoryManagement 176928 Application PackageControlPCIDNeedabilitytosupressallPCIDgenerationmessages
PackageControlLabelTypePCIDIfparthasbeenenteredpopulatepackagecode
10.1.500 SupplyChainManagement InventoryManagement 177000 Application withvalidonlypackagecodesforpart
10.1.500 SupplyChainManagement InventoryManagement 177006 Application PackageControlLabelTypePCIDProvideacopyfromoption
PackageControlPCIDHidePackageControltransactionsforWMGinthe
10.1.500 SupplyChainManagement InventoryManagement 177082 Application ProductizationModule
10.1.500 SupplyChainManagement InventoryManagement 177509 Application PackageControlIDAdhocPCIDWarehouse&BinshouldbedisabledwhenStage
10.1.500 SupplyChainManagement InventoryManagement 177702 Application PackageControlIDPartialPCIDShouldonlyallowuseoflabeltypeInternal
PackageControlMaintenancePCIDAddandredesigntheActivitestabonthe
10.1.500 SupplyChainManagement InventoryManagement 178938 Application PackageControlIDMaintenancescreen.AddSourceandTargetPCIDtextboxes
PackageControlIDJobReceiptToInventoryNeedtoaddAllowtoscanintoeither
10.1.500 SupplyChainManagement InventoryManagement 179126 Application STOCKorQUALITYwarehouse.RestrictionexiststodaytogotoSTOCKonly
PackageControlPCIDMASTER&MIXEDUpdatetheTransactionTypevaluesin
10.1.500 SupplyChainManagement InventoryManagement 179246 Application thePKGControlHeadertable.
10.1.500 SupplyChainManagement InventoryManagement 179247 Application PackageControlPCIDschemachangefor
PackageControlIDJobOutputWhenapartialPCIDisconsumedthesystemneeds
10.1.500 SupplyChainManagement InventoryManagement 179796 Application towriteoutarecordintotheSplitMergetable
WarehouseTeamCreateacomboforAvailTranTypesandfixnontranslatable
10.1.500 SupplyChainManagement InventoryManagement 180076 Application descriptionsandotherissues
PackageControlPCIDPartnumberisrequiredtoretrievealabeltype(Alsofixedin
10.1.500 SupplyChainManagement InventoryManagement 180709 Application 10.1.400.x)
10.1.500 SupplyChainManagement InventoryManagement 181833 Application PackageControlIDTypeConfigPCIDArchivePCIDHistoryflagisalwaysable
10.1.500 SupplyChainManagement InventoryManagement 183261 Application PackageControlPCIDPrintingaMaster/MixedmasterPCIDisnotupdatingits
PackageControlPCIDFixedthatpackinganEMPTYPCIDonCustShipEntrywas
10.1.500 SupplyChainManagement InventoryManagement 187708 Application givingmessage:'ShiplinesmustbecreatedbeforepackingPCID'
10.1.500 SupplyChainManagement PurchasingManagement 181393 Application CompanyConfigurationNewsettingstocalculatetaxesinPurchaseOrders
PurchaseOrderEntryAddReadytoProcess,TaxLiability,TaxCategory,Taxable
10.1.500 SupplyChainManagement PurchasingManagement 181396 Application (atRelease)andTaxExempt
10.1.500 SupplyChainManagement PurchasingManagement 181397 Application PurchaseOrderEntryNewupgradeprogramtopopulatenewfields.
10.1.500 SupplyChainManagement PurchasingManagement 181704 Application PurchaseOrderEntryAddcapabilitytoaddmanualtaxestoPurchaseOrders
10.1.500 SupplyChainManagement PurchasingManagement 182309 Application PurchaseOrderEntryAddedPOTotalsontoPOHeader
10.1.500 SupplyChainManagement PurchasingManagement 183540 Application PurchaseOrderEntryDuplicatingaPOisnotcopyingacrossalltaxrelated
PurchaseOrderEntryNowallowsWithholdingTaxescollectionmethodforTax
10.1.500 SupplyChainManagement PurchasingManagement 184081 Application InclusivePricingTaxLiability
10.1.500 SupplyChainManagement Shipping/Receiving 164818 Schema CustomerShipmentEntryNowpossibletocreatea1000linesshipment

Page138
ChangeListApplicationEnhancements EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


10.1.500 SupplyChainManagement Shipping/Receiving 166104 Application CustomerShipmentEntryRemovedanyandalllogicthatuses"CanOverride
TransferOrderShipmentEntryRemovedanyandalllogicthatuses"CanOverride
10.1.500 SupplyChainManagement Shipping/Receiving 166114 Application Allocations"
10.1.500 SupplyChainManagement Shipping/Receiving 181661 Application ReceiptEntryregisternewreceiptsordeletethemincaseoferroneousentry
CustomerShipmentSummaryCreatedanewscreentoretrieveanddisplay
10.1.500 SupplyChainManagement Shipping/Receiving 181713 Application customershipmentheaderinformation
CustomerShipmentSummaryAddedOrderReleasesgridtonewCustomer
10.1.500 SupplyChainManagement Shipping/Receiving 182032 Application ShipmentSummaryscreen
CustomerShipmentSummaryAddedsearches&ContextMenuitemstonew
10.1.500 SupplyChainManagement Shipping/Receiving 182223 Application customershipmentsummaryscreen
10.1.500 SupplyChainManagement Shipping/Receiving 183047 Application CustomerShipmentSummaryAddedTotalShipQtyandRemainingQtytogrid
ProductLifecyle
10.1.500 SystemWideEnhancements Management 175205 Application PLMServerProcessRevisionsenttoPLMneedstobeadjusted
SetupEnvironment"ApplicationPoolName"onEducationtabnowdoesnotallow
10.1.500 ToolsandTechnologies AdminConsole 163026 Tools usertotypeinit
10.1.500 ToolsandTechnologies AdminConsole 169295 Tools Changederrormessageforaddingaduplicensetobemoreuserfriendly
10.1.500 ToolsandTechnologies AdminConsole 175811 Tools AddedadditionalprotocolssupporttoAppServerPropertiesinAdminConsole
10.1.500 ToolsandTechnologies AdminConsole 177735 Tools SetupEnvironmentAddedtheabilitytodeliveronlychangedhelpfilesinan
SetupEnvironmentAddedtheabilitytodeliveryonlychangededucationcourses
10.1.500 ToolsandTechnologies AdminConsole 177736 Tools inanUpdate.
10.1.500 ToolsandTechnologies AdminConsole 178670 Tools SetupEnvironmentChangedWarningmessagetokeepthesetupenvironment
10.1.500 ToolsandTechnologies AdminConsole 179537 Tools SetupEnvironmentAddedhelptosetupenviroment
SetupEnvironmentandDBMigrationfilesarenowautoextractwhenAdminConsole
10.1.500 ToolsandTechnologies AdminConsole 182004 Tools isinstalled
10.1.500 ToolsandTechnologies AdminConsole 182066 Tools SetupEnvironmentApplicationNamefieldisnowdisabledafterappserveris
SetupEnvironmentUsingtheEpicorAdministractionConsolein10.1.400.xitis
10.1.500 ToolsandTechnologies AdminConsole 182388 Tools nowpossibletospecifyaCustomDirectoryifitiswithinthemainapplicationserver
10.1.500 ToolsandTechnologies AdminConsole 183588 Tools AddedcheckforconflictingCustomAssemblieswheninstallinganUpdate
IftheEACunzipDBMigration.zipitnowcheckstoseeifupdatesareavailableand
10.1.500 ToolsandTechnologies AdminConsole 184052 Tools applythem
SetupEnvironmentpublishedextensionsNetTcp,httpandhttpsprotocolprefix
10.1.500 ToolsandTechnologies AdminConsole 188906 Tools fromAppserverURLfieldnowchangesbasedontheselectedbinding
IQSUpdatedzipfileofAQMToolKit(.batand.ini)filesreceivedandneedtobe
10.1.500 ToolsandTechnologies AdvanceQuality 168311 Application uploadedtoEPICWeb
10.1.500 ToolsandTechnologies AdvanceQuality 186160 Application IQSCustomershiptocontactexportnowworkscorrectly
AttachmentsAttachmentscannowberetrievedfromasecuredlocationand
10.1.500 ToolsandTechnologies Attachments 179868 Tools receivesanhttperr500onGetResponse
10.1.500 ToolsandTechnologies BAQDesigner 161735 Tools UpdatedBAQintegrationwihtiScalatorecognizenewtypes
10.1.500 ToolsandTechnologies BAQDesigner 170042 Tools ExternalBAQsMulticompany/multitenancyvisibilityandUpdateControl

Page139
ChangeListApplicationEnhancements EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


ReplacedusageofIsSystemcolumnwithSystemFlagcolumnanddropIsSystemoff
10.1.500 ToolsandTechnologies BAQDesigner 171766 Tools theschemaforBAQownedtables
BAQImportUsercannowselectESCserverwhenupdatablequeriesareimported
10.1.500 ToolsandTechnologies BAQDesigner 180104 Tools viaSolutionWorkbench(Alsofixedin10.1.400.x)
10.1.500 ToolsandTechnologies BAQDesigner 180120 Tools Newbuttonnowworksmoreconsistenltyforubaqviaworkflow
Itisnownotpossibletocreatedatasourcetypeanddatasourceinthecompany
10.1.500 ToolsandTechnologies BAQDesigner 180794 Tools differentfromcurrentonethroughcontextmenu
10.1.500 ToolsandTechnologies BAQDesigner 183610 Tools Removed"Settings"columnfromlistviewofExternalDatasources
MethodDirectivesCompilationerrorcreatingBPM(MethodDirective)on
10.1.500 ToolsandTechnologies BPMDesigner 158888 Tools Erp.CustShip.POUpdateAndDisplay
10.1.500 ToolsandTechnologies BPMDesigner 169415 Tools BPMAllowcheckingexpressionsforcorrectnessandapplicabilityPart1
BPMSupportmarkingbindings/mappingsinFillTable/UpdateTable/InvokeBOas
10.1.500 ToolsandTechnologies BPMDesigner 171600 Tools invalidandpropagatethisuptothestateoftheaction
10.1.500 ToolsandTechnologies BPMDesigner 172789 Tools BPMUIissuesinInfoMessagedialog
10.1.500 ToolsandTechnologies BPMDesigner 174135 Tools BPMProgrammingInterfacegeneratemethodwithcontexttablesetargument
10.1.500 ToolsandTechnologies BPMDesigner 174405 Tools BPM/BAQTablerelationsearchalgorithmshouldbemorepredictable
10.1.500 ToolsandTechnologies BPMDesigner 174431 Tools BPMNowallowscheckingcustomcodesyntax
10.1.500 ToolsandTechnologies BPMDesigner 176099 Tools BPMProvidedthewaytofilterassemblieswhenaddingareference
10.1.500 ToolsandTechnologies BPMDesigner 176128 Tools BPMNowallowsusertosaveemptyexpression/customcode
10.1.500 ToolsandTechnologies BPMDesigner 176569 Tools BPM(Epic)BPMcodegeneratorsshouldbeupdatedtonewdesign
10.1.500 ToolsandTechnologies BPMDesigner 177201 Tools Addedabilitytoresize"Selectvariabletype"form
10.1.500 ToolsandTechnologies BPMDesigner 177210 Tools BPMDesignernowdoesnothangafterclosing"Selectvariabletype"form
ICEBPMAddedBCCandReplyToasexposedpropertiesontheEmailFormin
10.1.500 ToolsandTechnologies BPMDesigner 177831 Tools theBPMdesigner
10.1.500 ToolsandTechnologies BPMDesigner 178100 Tools BPMInvestigatedpossibilitytouseAvaloncodeeditor
10.1.500 ToolsandTechnologies BPMDesigner 179253 Tools BPMImprovedtyperesolvinginBPMdataserialization/deserialization
10.1.500 ToolsandTechnologies BPMDesigner 179491 Tools BPMUsings&ReferencesarenowonlyavailalbletoAdvancedBPMusers
10.1.500 ToolsandTechnologies BPMDesigner 184872 Tools Preventtopastedirectiveportionwithvariablesintersectedwithmethod
BPMCallSCWorkflowNowdoesnotopenSelectWorkflowformifinvalid
10.1.500 ToolsandTechnologies BPMDesigner 185534 Tools credentialswerespecifiedonLogontoServiceConnectform
10.1.500 ToolsandTechnologies BusinesssActivity 180847 Tools BAMNowallowsusertodisablereportroutingfromtheUI
10.1.500 ToolsandTechnologies Conversions 169920 Tools ExtendedBAQUpgradetoworkinpresenceofBAQsbelongingtoabsent
10.1.500 ToolsandTechnologies Conversions 169921 Tools BPMExtendedBPMUpgradetoworkinpresenceofBPMsbelongingtoabsent
10.1.500 ToolsandTechnologies Conversions 171899 Tools DatabaseMigrationAppliedF1logictoDBMigrationwindows
10.1.500 ToolsandTechnologies Conversions 178339 Tools ExtendedBAQUpgradetoworkinpresenceofBAQsbelongingtoabsent
10.1.500 ToolsandTechnologies Conversions 178341 Tools ExtendedBPMUpgradetoworkinpresenceofBPMsbelongingtoabsent
10.1.500 ToolsandTechnologies DatabaseAdministration 182136 Tools CommandLine/headlessexecutionofDatamodelgenerator
AddedormodifiedtheexistingindexofallIMtablestoincludethe
10.1.500 ToolsandTechnologies DatabaseAdministration 182152 Tools IncomingOutgoingcolumn
10.1.500 ToolsandTechnologies DatabaseAdministration 182701 Tools SchemaChangesCreatedtableGlbPcExpVar

Page140
ChangeListApplicationEnhancements EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


10.1.500 ToolsandTechnologies EnterpriseSearch 127269 Tools Replace"localsockettimeout"errorwithauserfriendlydialog
ValidatemessageshouldmentionthatEnterpriseSearchisnotinstalledasoneof
10.1.500 ToolsandTechnologies EnterpriseSearch 143635 Tools thepotentialreasonsforconnectionfailure
Workflowinmemory:synchronoussubworkflowinbatchmodeisshownas
10.1.500 ToolsandTechnologies ESCAdminConsole 182145 Tools independentworkflow
10.1.500 ToolsandTechnologies ESCDESRouter 178164 Tools Add"Workflowsinmemory"informationpluginwithabilitytojumptoDocument
DebugloggingforcreationandremovingEpicorsessionsmissessomeimportant
10.1.500 ToolsandTechnologies ESCDESRouter 178862 Tools information
10.1.500 ToolsandTechnologies ESCDESRouter 181906 Tools CleanupofDESRoutertempfolderaffectsstartuptimeunpredictably.
10.1.500 ToolsandTechnologies ESCInputChannel 139335 Tools Itshouldbepossibletoassignasynchronouspoolforinputchannel
10.1.500 ToolsandTechnologies ESCOther 174796 Tools AfterrestartofSCservices,InProgressworkflowstatusbesettoAbortive
10.1.500 ToolsandTechnologies ESCOther 175737 Tools AddDocumentTrackingsetuponbusinesseventObjectandAction(iScala)
10.1.500 ToolsandTechnologies ESCOther 175740 Tools ClientwouldliketobenotifiedincaseofsomeparticularESCchannelis
AfterScaDESRouter.exeunexpectedlyterminationtheenqueuedrequestsfor
10.1.500 ToolsandTechnologies ESCOther 178867 Tools AsynchronousPoolsshouldbesettocorrectvalue.
10.1.500 ToolsandTechnologies ESCOther 183199 Tools UpdateRebexlibrariesto2016R1.1
10.1.500 ToolsandTechnologies ESCOther 183200 Tools Mailcommunicatorshouldbeupdatedwiththelatestmail.dlllibrary
10.1.500 ToolsandTechnologies ESCOther 183207 Tools Runningworkflowsresultpanecolumnsdefaultorderhastobechanged.
Customerneedstospecifysortingorderinwhichreceivexmlfilesandprocesswith
Serviceconnect.FilesarereceivedusingFTPtypeinputchanell.InFTPtypeinput
10.1.500 ToolsandTechnologies ESCOther 183897 Tools chanellthereisnopossibilitytosetupsequenceinwhichreceivefiles
Inthisviewofrunningworkflowswouldbenicetohaveonemorecolumnfora
10.1.500 ToolsandTechnologies ESCOther 183919 Tools timestamp,timewhenworkflowwasstarted.
10.1.500 ToolsandTechnologies General 131300 Application PutawaytransactionpriorityshouldbeusedforxxxSTKtransactions
10.1.500 ToolsandTechnologies General 147010 Application AddedcriteriatoCVXA0041toonlyrunonapartbypartbasis
10.1.500 ToolsandTechnologies General 175108 Schema TaxEnginestillusesPatchfldrecordinsteadofphysical'LACTaxCalcEnabled'
MESAccesstoallMESandHHPkgControlmenuitemsarekeyedoffMaterial
10.1.500 ToolsandTechnologies General 176884 Application Handleraccess
TaxEngineNowallowsWithholdingTaxescollectionmethodforTaxInclusive
10.1.500 ToolsandTechnologies General 181586 Application PricingTaxLiability
10.1.500 ToolsandTechnologies General 181658 Application CompanyConfigurationAddedoptiontoallowordisallowmultipleinvoicingof
DataDirectiveChangeLogiconnotavailableinTaxtables(OrderRelTax,
10.1.500 ToolsandTechnologies General 184011 Application POHeaderTax,PORelTax)
ConversionWorkbenchAddedabilitytorunUserConversionWorkbenchforone
10.1.500 ToolsandTechnologies General 184772 Application company(notforall)
10.1.500 ToolsandTechnologies GeneralFramework 155385 Tools AddloggingofAssemblyLoadingtoanewProfile
10.1.500 ToolsandTechnologies GeneralFramework 155726 Tools TrickWindowstoavoidtheProgramCompatibilityAssistantonE10exe's
EducationLaunchPadsysconfigEdurldoesnotoverrideCompanyMaintenance
10.1.500 ToolsandTechnologies GeneralFramework 159249 Tools edURLasitshould

Page141
ChangeListApplicationEnhancements EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


10.1.500 ToolsandTechnologies GeneralFramework 167112 Tools AddnodecounttoMethodTreeBindingand/ormethodtreeclass.
10.1.500 ToolsandTechnologies GeneralFramework 167942 Tools Integration.csIntParamDefmemoryleak
10.1.500 ToolsandTechnologies GeneralFramework 169290 Tools ICEPerformersAddabackgroundtaskthatrunstaskonclientandserver
10.1.500 ToolsandTechnologies GeneralFramework 169660 Tools SysConfigtableandservicenotmultitenantaware
10.1.500 ToolsandTechnologies GeneralFramework 171230 Tools DefaultvalueisnotbeinghonoredbyGetByID/GetRowsforexternalcolumns
10.1.500 ToolsandTechnologies GeneralFramework 172052 Tools ServiceDesignerAllowbyte[]asacolumndatatypeforexternalcolumns
10.1.500 ToolsandTechnologies GeneralFramework 172725 Tools Showlengthoflockouttimewhenuserislockedout
10.1.500 ToolsandTechnologies GeneralFramework 172804 Tools ClientSessionandImplsshouldsupporttakingWindowsCredentialstocreateauth
Addacopyallbuttononexceptiondialogstoprovideuserswithaquickwayto
10.1.500 ToolsandTechnologies GeneralFramework 173756 Tools copyerrormessages.
10.1.500 ToolsandTechnologies GeneralFramework 173848 Tools ReviewandfixIce,XFileAttachindex
10.1.500 ToolsandTechnologies GeneralFramework 173896 Tools Addtheabilitytoexecuteadatamodelregenviathecommandline
10.1.500 ToolsandTechnologies GeneralFramework 174865 Tools ServiceDesignerGeneratedTestprojectshouldbeoutputtoconfigurablepath.
10.1.500 ToolsandTechnologies GeneralFramework 175102 Tools UpdateExtshouldallowtochangevaluesforanintegerkeyfield
10.1.500 ToolsandTechnologies GeneralFramework 175430 Tools FixduplicateEpiGuidinclientframework
10.1.500 ToolsandTechnologies GeneralFramework 175809 Tools NewprotocolsshouldbeaddedasoptionsinSetupofAppServers
10.1.500 ToolsandTechnologies GeneralFramework 175813 Tools NewprotocolsshouldbeaddedasoptionsinconfiguringTaskAgent
10.1.500 ToolsandTechnologies GeneralFramework 175815 Tools NewprotocolsshouldbeaddedasoptionsinconfiguringBLTester
10.1.500 ToolsandTechnologies GeneralFramework 175820 Tools NewprotocolsshouldbeaddedasoptionsinconfiguringSocial
10.1.500 ToolsandTechnologies GeneralFramework 175821 Tools NewprotocolsshouldbeaddedasoptionsinconfiguringSearch
10.1.500 ToolsandTechnologies GeneralFramework 175822 Tools NewprotocolsshouldbeaddedasoptionsinconfiguringIW
10.1.500 ToolsandTechnologies GeneralFramework 176029 Tools ServerFileDownloadAddabilitytoseefiledetailslikewindowsexplorer
Installationimportreportflagonthedeploymenttabshouldbeautomatically
10.1.500 ToolsandTechnologies GeneralFramework 177377 Tools checkedifthepatchreleasehasanyneworupdatedreports.
10.1.500 ToolsandTechnologies GeneralFramework 177382 Tools AddnewTCPbindingtouse.NETbindingcompression
10.1.500 ToolsandTechnologies GeneralFramework 177694 Tools Improveclienttracing
10.1.500 ToolsandTechnologies GeneralFramework 177747 Tools ServiceDesignerBORegenneedstosupportC#6.
ConfigSysmoveskeyitemstotheUserSettingsectionsothattheyarenot
10.1.500 ToolsandTechnologies GeneralFramework 177880 Tools overriddenduringupdates(Alsofixedin10.1.400.x)
CoreFrameworkServicesNewprotocolsshouldbeaddedasoptionsinconfiguring
10.1.500 ToolsandTechnologies GeneralFramework 178316 Tools .sysconfig
Automaticallyexcludetablesfromdatamodelregenthatdonotconformto
10.1.500 ToolsandTechnologies GeneralFramework 178584 Tools standards(Alsofixedin10.1.400.x)
Newprotocolsshouldbeaddedasoptionsinconfiguringtaskagentrulesinsystem
10.1.500 ToolsandTechnologies GeneralFramework 179234 Tools agententry
10.1.500 ToolsandTechnologies GeneralFramework 180253 Tools NewprotocolsshouldbesupportedinSubTaskLauncherfortaskslikeMRP
10.1.500 ToolsandTechnologies GeneralFramework 180292 Tools MakeserversideSessionclassmockable
10.1.500 ToolsandTechnologies GeneralFramework 180388 Tools AdditionalprotocolsshouldbeaddedasoptionsinconfiguringEducationCourses
10.1.500 ToolsandTechnologies GeneralFramework 181813 Tools ExtendtheLabelControltoallowtheWrapTextpropertytobeFalse
10.1.500 ToolsandTechnologies GeneralFramework 182150 Tools Integration.csEnhancetoallowmultiplelockhintstobepassedtotheGetIMTable

Page142
ChangeListApplicationEnhancements EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


10.1.500 ToolsandTechnologies GeneralFramework 182226 Tools StatusandLoggingClass/MethodsforcommonusebyCommandlinetools
10.1.500 ToolsandTechnologies GeneralFramework 183293 Tools RESTServiceInstallationOption&Warning
10.1.500 ToolsandTechnologies GeneralFramework 184304 Tools Epinum2Wordsdoesn'thaveanoptiontoformatthestringsinavalidformatfor
10.1.500 ToolsandTechnologies HelpSystem 178944 Tools HelpSystemUpdateduservalidation(Alsofixedin10.1.400.x)
10.1.500 ToolsandTechnologies HelpSystem 179159 Tools HelpinstallerAddedtargetdirectoryvalidation(Alsofixedin10.1.400.x)
10.1.500 ToolsandTechnologies ICEInstallations 178762 Tools DeploymentUpdateExistingAppServeratReleaseVersion
10.1.500 ToolsandTechnologies ICEInstallations 181893 Tools DeploymentCommandLine/headlessexecutionofinitialInstallationpackage
IWFrameworkDonotdisplayamessagethatrequiresuserinteractionwhengoing
10.1.500 ToolsandTechnologies InformationWorker 178791 Tools onoroffthenetwork
10.1.500 ToolsandTechnologies InstallationScripts 169622 Application PackageControlIDJobOutputGeneraterequireslabeltypetohaveacustomer
10.1.500 ToolsandTechnologies Menus 129732 Tools ShellMenuBAQTilebehaviorneedstobeimproved.
10.1.500 ToolsandTechnologies Menus 176147 Tools MenuMaintenanceSecuritysearchresultisincludingbo.namesfrommenu
10.1.500 ToolsandTechnologies Performance/Diagnostics 165727 Tools ICEPerfDiagToolReturneddataforlast5backupsagainstdatabaseinconfig
ConfigCheckRemovetraceflagT2453fromrecommendedflagsandaddwarning
10.1.500 ToolsandTechnologies Performance/Diagnostics 177356 Tools whenthisflagisset
10.1.500 ToolsandTechnologies Performance/Diagnostics 177383 Tools ICEPerfDiagToolAddednewQuerysearchtabtothePDT
10.1.500 ToolsandTechnologies Performance/Diagnostics 181316 Tools ClientTracingBringbackthepersistflagremovedin10.1.400
TracingIfanerrormessagesays"reviewlogformoredetailedinformation"we
shouldprovidethefullpath/nameofthefilesothatcustomersareabletofindit
10.1.500 ToolsandTechnologies Performance/Diagnostics 181605 Tools withoutcallingsupport.
10.1.500 ToolsandTechnologies Performance/Diagnostics 185255 Tools ICEPerfDiagToolAddedabilitytoexportTraceFiles(Server/Client)toaSQL
CrystalReports2013UpgradeSmartClient:Crystalruntimeisnow"SAPCrystal
Reportsruntimeenginefor.NetFrameWork13SP14";CrystalDesignerisnow"SAP
CRYSTALREPORTS2013SP06WINDOWS(32B)";EWAInstall,ReportApplication
Serverisnow"SAPCRSERVEREMBEDDED2013SP06OEMEDITIONWINDOWS
10.1.500 ToolsandTechnologies ReportsFramework 169984 Tools (32B)";.NetSDKRuntimeisnow"SBOPBIPLATFORM4.1SP06ENTER.NETSDK
10.1.500 ToolsandTechnologies ReportsFramework 174184 Tools CreateaCrystalUpdaterTooltohelptestingCrystalReports
EasyidentificationofEpicorprintjobsonprintserver.Currentlythenamesofprint
10.1.500 ToolsandTechnologies ReportsFramework 174948 Tools jobsfromEpicorprovidenoclueasthetypeofprintjobasthenamesarearbitrary.
10.1.500 ToolsandTechnologies ReportsFramework 175774 Tools ReportStyleCopyingReportStyleisnotworkingforCrystalReports
10.1.500 ToolsandTechnologies ReportsFramework 179298 Tools ReportStyleEnhancementforOutputlocationforSSRSDatabase
10.1.500 ToolsandTechnologies ReportsFramework 181219 Tools ReportStyleSupportCopyReportStyleforBartenderreports
10.1.500 ToolsandTechnologies ReportsFramework 183181 Tools ProvideanEDIdefinitionforEDIreports(Alsofixedin10.1.400.x)
10.1.500 ToolsandTechnologies SDK 176197 Tools ICESDKandDevUtilitiesNowallowsgenerationofresourcestringswithdashesin
ICESDKandDevUtilitiesCreatedMSBuildextensionforrunningRoslynDiagnostic
10.1.500 ToolsandTechnologies SDK 176794 Tools Analyzers
10.1.500 ToolsandTechnologies SDK 184878 Tools ICESDKandDevUtilities10.1.500release
10.1.500 ToolsandTechnologies SecurityFramework 153443 Tools ExternalDatasourcesHiddenpasswordisrevealedby"ConnectionString"textbox
10.1.500 ToolsandTechnologies SecurityFramework 172727 Tools ThereisnoreportforLogOnFailures

Page143
ChangeListApplicationEnhancements EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


UserSecurityUserAccountsecuritymaintenanceUserisabletoTypeonthe
10.1.500 ToolsandTechnologies SecurityFramework 173509 Tools "Language"and"FormatCulture"fields
10.1.500 ToolsandTechnologies SecurityFramework 182746 Tools SecurityFrameworkCaptureUserIDinthecontextinformationsenttothedb
10.1.500 ToolsandTechnologies SecurityFramework 183083 Tools FieldSecurityGUIUsabilityenhancements
10.1.500 ToolsandTechnologies SocialEnterprise 130051 Tools ChangepasswordbuttonshouldworkforE10generatedprofiles
10.1.500 ToolsandTechnologies SocialEnterprise 131490 Tools ModernShellShouldnotbeabletopicksocialtilieifnotconfiguredorbetter
NeedasettingintheAdminareainESE(orintheUserSecurityMaintenanceto
10.1.500 ToolsandTechnologies SocialEnterprise 157596 Tools allowyoutodisableauserfrombeingabletorunESE.
10.1.500 ToolsandTechnologies SocialEnterprise 177122 Tools BuildscripttoautoupdatetheversioninformationoftheUWPapptotheversionof
InstallingESEagainstaWindowsAppservershouldchangetheSiteAuthentication
10.1.500 ToolsandTechnologies SocialEnterprise 179035 Tools tousetheWindowsauth.
10.1.500 ToolsandTechnologies SocialEnterprise 179855 Tools FollowmenuactioninE10rightclickforsocialshowstoomuch
10.1.500 ToolsandTechnologies SocialEnterprise 180635 Tools Modifylogingtostorepeformancetiminginformationinstandalonenumericfield
10.1.500 ToolsandTechnologies SolutionWorkbench 155534 Tools ImportnowcorrectlyusesthemigratedlegacyUDData(Alsofixedin10.1.400.x)
10.1.500 ToolsandTechnologies SolutionWorkbench 173592 Tools SolutionElementEntryQuickSearchnotincludedaspartofpredefinedSW
verifythedeploymentpathiswritablewhenthecabincludesfiledeploymentprior
10.1.500 ToolsandTechnologies SolutionWorkbench 175197 Tools toinstallingthecab
10.1.500 ToolsandTechnologies SolutionWorkbench 182353 Tools AddnotificationmessagethatregenDMisrequiredafterinstallsolution
BAQImportLetuserselectdestinationESCworkflowpackagewhenupdatable
10.1.500 ToolsandTechnologies SolutionWorkbench 185089 Tools queriesareimported
10.1.500 ToolsandTechnologies WebAccess 171915 Tools WebFormsWhencallingEpicorhelpneedtopassthecompanyIDinthe
WebFrameworkstandarizeoutputswhenusingSetcontrolValue()and
10.1.500 ToolsandTechnologies WebAccess 172660 Tools TriggerControlChange()

Page144
ChangeListPerformanceEnhancements EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


APInvoiceBalanceReportAnalyzesubreportsandremovethemtoimprove
10.1.500 FinancialManagement AccountsPayable 170646 Application performance
G/LDistributionReportAnalyzesubreportsandremovethemtoimprove
10.1.500 FinancialManagement AccountsPayable 170651 Application performance

10.1.500 FinancialManagement AccountsPayable 175955 Application InvoiceEntryAPCorrecteddeadlockonPatchFldwhentaxconnectisused

10.1.500 FinancialManagement AccountsPayable 176609 Application InvoiceEntryAPCorrecteddeadlockonPatchFldwhentaxconnectisused


PaymentEntryImprovedtimeonGroupsearchwhichwastaking4.5secondsto
10.1.500 FinancialManagement AccountsPayable 180921 Application bringresults
10.1.500 FinancialManagement AccountsReceivable 174984 Application CashReceiptEntryImprovedtimeduringpasteinsertoflines
CashReceiptEntryImprovedtimeittakestopaste/insertinvoicesinthe
10.1.500.0 FinancialManagement AccountsReceivable 183295 Application AllocateTab
Database
10.1.500.0 FinancialManagement AccountsReceivable 187343 Specific CashReceiptEntryImprovedperformanceretreivingCustomer
BankStatementProcessingImprovedtimetonavigatebetweenlinesonthe
10.1.500 FinancialManagement CashManagement 179722 Application Bankstatementforlargegroups(Alsofixedin10.1.400.x)
10.1.500 FinancialManagement CurrencyManagement 148551 Application CurrencyMasterImprovedtimewhenaddingreportingcurrency
GeneralLedgerReportImprovedtimetopreviewafiscalperiod(Alsofixedin
10.1.500 FinancialManagement GeneralLedger 179894 Application 10.1.400.x)
JournalDetailTrackerImprovedtimeforthetheSystemtoretreive100records
10.1.500 FinancialManagement GeneralLedger 182960 Application inJournalNumberSearch
JournalEntryImprovedperformanceinGLBook::GetByID()and
10.1.500 FinancialManagement GeneralLedger 184633 Application GLJournalEntry::Update()
ConsolidatetoParentImprovedtimeinConsolidationDeltamodecomparingto
10.1.500 FinancialManagement MultiSiteManagement 174060 Application overridemode(Posting)
ConsolidatetoParentImprovedtimeinConsolidationinDeltamode
10.1.500 FinancialManagement MultiSiteManagement 175072 Application comparingtooverridemode(Report)
ConsolidatetoParentImprovedtimeinConsolidationinDeltamode
10.1.500 FinancialManagement MultiSiteManagement 175073 Application comparingtooverridemode(Transferprocess)

10.1.500 FinancialManagement MultiSiteManagement 175245 Application ConsolidatetoParentAddedoptiontopreventloggingtoincreaseperformance

10.1.500 FinancialManagement MultiSiteManagement 180987 Application ConsolidatetoParentImprovedperformanceinDeltaandretroconsolidations


WorkQueueImprovedperformancewhentheworkqueueforanemployee
10.1.500 ProductionManagement DataCollection 176064 Application containsmillionsofrecords(Alsofixedin10.1.400.x)

10.1.500 ProductionManagement Engineering 185186 Application EngineeringWorkbenchImprovedperformancewhenexpandingmaterials

Page145
ChangeListPerformanceEnhancements EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


JobEntryCorrectedpossibleblockingintheRFQSuggtablewhiledoingthe
10.1.500 ProductionManagement JobManagement 176381 Application GetDetails(Alsofixedin10.1.400.x)
ProductionCalendarCorrectedtogglingdaysinwhencalendarisusedina
10.1.500 ProductionManagement JobManagement 178211 Application resourcegroupwithmorethan800resources
ShopTrackerImprovedperformanceonadatabasewithalotofinformation
10.1.500 ProductionManagement JobManagement 179133 Application (Alsofixedin10.1.400.x)
JobEntryImprovedATE/PDTperformanceforGetdetailswith3operations/3
10.1.500 ProductionManagement JobManagement 182166 Application materials
CalculateGlobalSchedulingOrderImprovedperformancebasedonSQL
10.1.500 ProductionManagement Scheduling 148122 Application analysis

10.1.500 ProductionManagement Scheduling 177217 Application SchedulingEngineImprovedperformanceissue(Alsofixedin10.1.400.x)


10.1.500 ProductionManagement Scheduling 180562 Application CalculateGlobalSchedulingOrderImprovedperformance
10.1.500 ProductionManagement Scheduling 180575 Application JobSchedulingBoardImprovedperformanceinSchedulingBoards
TimeSheetEntryImprovedperformancetoapprovealabortimerecordfora
10.1.500.0 ProductionManagement TimeManagement 181966 Application specificproject
CustomerRelationship CustomerImprovedperformancewhenaddingaShipTorecordonCustomer
10.1.500 SalesManagement Management 176692 Application havingmultipleShipTorecords(Alsofixedin10.1.400.x)

OrderDtlWritetriggerAddedanewIFclausetoavoidblockinginPartSugwhen
10.1.500 SalesManagement OrderManagement 177385 Application thepartdoesnothavePartSugrecords(Alsofixedin10.1.400.x)
FulfillmentWorkBenchAddedWherePartofupdatestatementtoE9toE10
10.1.500 SalesManagement OrderManagement 181388 Application migrationinAutoAllocateTransfer.Queries.cs

10.1.500 SalesManagement OrderManagement 181983 Application OrderEntryImprovedOrderEntryperformancewith20SalesKitOrderlines

10.1.500.0 SalesManagement OrderManagement 188357 Application OrderEntryImprovedperformancebetweenversionsfororderwith100lines


VerifyExistingConfigurationsImprovedperformanceforexistingprocess(Also
10.1.500 SalesManagement ProductConfiguration 176308 Application fixedin10.1.400.x)
ConfiguratorConversionCorrectedondemandconversionsthatrunforany
10.1.500 SalesManagement ProductConfiguration 177503 Application recordconvertedornewlyadded
ConfiguratorRunTimeImprovedperformanceforPartitionconfigurator(Also
10.1.500 SalesManagement ProductConfiguration 182221 Application fixedin10.1.400.x)
ConfiguratorRunTimeReducedtheroundtripstotheserverwhenapage
10.1.500 SalesManagement ProductConfiguration 182442 Application loadsforImages
AdvancedMaterial
10.1.500 SupplyChainManagement Management 178880 Application MaterialRequestQueueImprovedperformancewhenretreivingmanyrows
PurchaseScheduleApprovalAddedrightqueryin
10.1.500 SupplyChainManagement PurchaseScheduling 181384 Application \Source\Server\Services\BO\POSchedule\POSchedule.Queries.cs

Page146
ChangeListPerformanceEnhancements EpicorERP10.1.500

Release FunctionalArea Module SCR Type Description


500ReceiptEntryImprovedtimetoaddaLinewhenhavingtoomanyBin
10.1.500.0 SupplyChainManagement Shipping/Receiving 186891 Application records
SupplierRelationship Database SupplierTrackerImprovedthelengthoftimefortheretievalofAllinvoicesand
10.1.500.0 SupplyChainManagement Management 184689 Specific allpurchaseorders
10.1.500 ToolsandTechnologies BAQDesigner 173378 Tools BAQDesignerImprovedperformanceonquerywithaggregate
10.1.500 ToolsandTechnologies BPMDesigner 175897 Tools ImprovedresponsivenessofassemblyreferencerelatedUI

SupplierCorrectedqueryin\Source\Server\Services\BO\PerCon\PerCon.cs
10.1.500 ToolsandTechnologies General 181386 Application whichisconvertedduringE9toE10migration
GenericImportProcessImprovedperformanceforGLControlcalculationfor
10.1.500 ToolsandTechnologies General 183552 Application biggergroups

10.1.500 ToolsandTechnologies General 183998 Application ConversionImprovedconversionprogramcvbm0002(Alsofixedin10.1.400.x)


StoredProceduresImprovedperformanceinjoininSDgeneratedSprocresults
10.1.500 ToolsandTechnologies GeneralFramework 163670 Tools whenjoinbetweendifferingtypes
RemovedZFieldDecimalfrombeingaglobalcacheiteminthedatalayer(Also
10.1.500 ToolsandTechnologies GeneralFramework 166103 Tools fixedin10.1.400.x)
EpiControlsImprovedperformancewhenbindingtheCustomEpiCombowitha
10.1.500 ToolsandTechnologies GeneralFramework 173585 Tools fieldinEmpbasic
UDTableEntryUpdatedTable/PageLocksettingstobemoreconsistentwhen
10.1.500 ToolsandTechnologies GeneralFramework 177996 Tools UDtablescreated(Alsofixedin10.1.400.x)
GeneralFrameworkFixedmemorythatwasnotbeingreleased/reclaimedwhen
10.1.500 ToolsandTechnologies GeneralFramework 178278 Tools cachingmultipleofsameform

10.1.500 ToolsandTechnologies SecurityFramework 180856 Tools SecurityFixedAuditLogPolicychecktonothitthedatabaseoneverycall

10.1.500 ToolsandTechnologies SocialEnterprise 166192 Tools UpgradeImprovedperformanceresultsinuntrustedforeignkeyrelationships


ImprovedperformanceinSolutioninstallationsinceimportof1RDDelement
10.1.500 ToolsandTechnologies SolutionWorkbench 171748 Tools takesup58min
ImprovedperformancewhenimportingaSolutionwithaRDDinaversionlower
10.1.500 ToolsandTechnologies SolutionWorkbench 176769 Tools thanthatofauser(Alsofixedin10.1.400.x)

Page147
ChangeListEducationCourses EpicorERP10.1.500

Release FunctionalArea CourseName 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

Page148
ChangeListEducationCourses EpicorERP10.1.500

Release FunctionalArea CourseName 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

Page149
ChangeListEducationCourses EpicorERP10.1.500

Release FunctionalArea CourseName 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

Page150
ChangeListEducationCourses EpicorERP10.1.500

Release FunctionalArea CourseName 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

Page151
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.

S-ar putea să vă placă și