MAS 90 MAS 200 Tips, Tricks, & FAQ s 2002 User Conference August 15, 2002

Size: px
Start display at page:

Download "MAS 90 MAS 200 Tips, Tricks, & FAQ s 2002 User Conference August 15, 2002"

Transcription

1 MAS 90 MAS 200 Tips, Tricks, & FAQ s 2002 User Conference August 15, 2002 This is a compilation of ideas from various members of The Fitzgerald Group, clients, and other miscellaneous sources. We strongly recommend that you contact The Fitzgerald Group if you re unsure of any of the suggested ideas or resolutions. 1. There is a large range of voided checks showing on the A/P Check History report. How can I get rid of these? Go to the Run option on the File menu in the MAS 90 main screen (launcher) and type: apwrvd. Enter the appropriate Bank Code and the check number range, and click Proceed. 2. The Customer Type field on the A/R Customer Maintenance/Inquiry-Additional screen is a free text field, which means users can enter anything in this field. Is there a way to make this a pre-defined list? Yes, using the Custom Office module, you can customize this field by creating a validation list, so that only valid entries will be accepted. 3. How does Retained Earnings work with MAS 90? At year end, the MAS 90/200 G/L Period End Processing function clears all income and expense account balances and posts the net profit/loss to the Retained Earnings account specified in the General Ledger Options screen. And if you run the Standard Financial Statements off the G/L Reports menu, you'll notice that the Equity section on the Balance Sheet shows this account, and it also will show a line that says Retained Earnings-Current Year. This Current Year line is just the YTD net profit/loss off the Income Statement, and will get zeroed out to the Retained Earnings account specified above, at year end. 4. How can I get specific Comment Lines on my graphical Sales Order to automatically format a certain way when they are used? You need to enter formulas for the Comment field format options in Section E of the form: Style: if {SO_20CRWSalesOrderDetail.CommentLine1} = "SEE ATTACHED SHIPPING NOTES" then crbolditalic else crregular

2 2002 User Conference Page 2 of 14 Size: if {SO_20CRWSalesOrderDetail.CommentLine1} = "SEE ATTACHED SHIPPING NOTES" then 13 else How can I put criteria on my Crystal Report for Invoice Dates that are blank? {SO_03SOHistoryHeader.LastInvoiceDate} = Date (0000, 00, 00) 6. How can I show Social Security # s in the correct format on my Crystal Report? Use one of the following formulas: Picture ({PR1_EmployeeMaster.SocialSecurityNumber},"xxx-xx-xxxx") Or Mid ({PR1_EmployeeMaster.SocialSecurityNumber},1,3) + "-" + Mid ({PR1_EmployeeMaster.SocialSecurityNumber},4,2) + "-" + Mid ({PR1_EmployeeMaster.SocialSecurityNumber},6,4) In Excel you can use: =MID(C4,1,3) & "-" & MID(C4,4,2) & "-" & MID(C4,6,4) - where C4 is the 9-digit SS # You can use the above formulas to format other fields as well. 7. Why is MAS 90 still running slowly even though I set the AntiVirus scanning options to scan program files and documents only, as opposed to all files? This could be caused by the Norton AntiVirus SmartScan Technology option being turned on. Uncheck this option to disable it. 8. When entering a Kit item during S/O Entry, can we prevent the do you want to order this from stock message from appearing? Yes. With the release of version 3.60, there is an Explode Kit option in the Inventory Maintenance- Options screen. (1) Select Prompt to display a message dialog box during data entry prompting whether or not you want to order items from stock. (2) Select Always to automatically explode the component lines for the kit item without being prompted. (3) Select Never to order the kit line item from stock without being prompted. 9. How can I account for exchange rate fluctuations in A/R Cash Receipts Entry? a. Enter the actual deposit amount in the Deposit Amount field. b. Enter the actual amount received in the Amount Received field.

3 2002 User Conference Page 3 of 14 c. On the Lines tab, select the invoice(s) to apply the payment to, change the Amount Posted field to the full invoice amount, and click OK. d. Select a G/L account to post the exchange rate gain/loss, which should show in the Amount Posted field. Click OK e. Accept and Update the Cash Receipts Journal. 10. I m using Crystal Reports 8.0. How can I export to PDF format? (a) Install version 8.5 OR (b) Contact us for the updated.dll files for Why am I getting error messages when installing Crystal Reports on a Windows 2000 workstation? You may need to log onto the computer as Administrator, and try again. 12. Can I change the Check Maintenance option on the A/P Check Printing menu to say something else? The term Check Maintenance is confusing. Yes, using the SUMNUA utility. 13. Why am I getting a no orders to print message when trying to print S/O Picking Sheets? There are a number of reasons this may be occurring, but the most common cause is if the Pick Sheet was previously printed. However, if the Sales Order contains credit card information but no deposit amount (therefore no authorization code), or if the credit card is expired, the same message could occur. You can get by this by clicking on the include unauthorized/expired credit card orders check box in Picking Sheet Printing. Or, using the Custom Office module, you can force this check box on. 14. When entering a Sales Order, how can I easily bring up that customer s Excel file which contains various information? Using Custom Office, add a Program Link button to the Sales Order screen, containing a script of: c:\m903-61\mas90\arabc\"{ml_cust$}".xls. Then, clicking this button will launch the customer s Excel file, which must already exist.

4 2002 User Conference Page 4 of How can I reverse a range of posted invoices? You would have to manually reverse each one. There is no automated process - unless it was a very large volume of invoices, in which case we might recommend a Visual Integrator job. 16. What is the correct way to merge Vendors, Customers, etc.? First of all, any Delete/Renumber/Merge Utility should be performed first thing in the morning. The reason for this is if you accidentally do it incorrectly, and need to restore off the backup from last night, you won t have to re-do any of the current day s work. (This Utility CANNOT be undone!!!) For merging (customers for example), the starting and ending Customer # must be the same, unless you specifically want to merge a range of customers into a single customer. 17. How can I control the number of records to print on the check stub when using Graphical A/P checks? On the A/P Check Printing screen, simply set the Stub Lines to the appropriate # (e.g. 22) 18. We have graphical forms turned on, but when I print one, it s not using the graphical form. Why? The most common cause of this is loss of the workstation s network connection. Re-boot the workstation, verify your network drive mapping, and try again. If the drive mapping isn t there, you must set it. 19. How can we get line # s to print correctly on the graphical S/O Shipping Data Entry Packing List? The Packing List form is set to print only the items that will be shipping, which means during Shipping Data Entry, only the lines with a quantity shipped greater than 0 will print out. This formula, {SO_61CRWPackingListDetail.QtyShipped} > 0, is used on the form. So, using the line # field from the data file won t always work because it picks up the line # s from the sales order, which may cause the line # s to skip.. A Running Total should resolve this: - Field to Summarize: SO_61 Item Number - Type of Summary: Count - Evaluate: Formula: {SO_61CRWPackingListDetail.QtyShipped} > 0 - Reset: On Change of Group - Group 1, SO_61 Invoice Number

5 2002 User Conference Page 5 of Which credit card merchants support TCP/IP authorization, as opposed to dial-up? NOVA; Vitel (Visa Net); FTMS 21. Are there recommended country code abbreviations for use in MAS 90 Country Code Maintenance (Library Master-Common menu)? Yes. Here s a website that can help: What is the Extended Stub Report option in the A/P module, and how does it work? By definition, the Extended Stub report is a report that shows the invoice detail for the check being paid. The report can be printed for all checks or only for checks with more invoice detail than can fit on one check stub. In A/P Setup Options: * Select Yes to print the Extended Stub Report only for checks where the invoice detail does not fit on one stub. * Select No to print void checks with continuation stubs as necessary (not available with Graphical Checks selected in A/P Options). * Select Always to always print the Extended Stub Report. Manual Check Entry: In addition, when using the Quick Print feature in Manual Check Entry for a Crystal Reports check, the Yes option is assumed. However, the Extended Stub report will not print if using non-graphical checks. If the Extended Stub report needs to print (based on the setting in A/P Options), the Extended Stub Report printing screen will appear just before the Check Register printing screen. You must print the Extended Stub Report to be able to update the Check Register. 23. How can I get Country Names to print on my graphical forms? You need to create a formula like the following: if {SO_26CRWInvoiceDataHeader.BillToCountryCode}="CAN" then "Canada" else if {SO_26CRWInvoiceDataHeader.BillToCountryCode}="FRA" then "France" else if {SO_26CRWInvoiceDataHeader.BillToCountryCode}="ITA" then "Italy" else if {SO_26CRWInvoiceDataHeader.BillToCountryCode}="USA" then "" 24. When updating Cash Receipts, what date is used for the posting date? MAS 90 uses the deposit date, not the A/R system date.

6 2002 User Conference Page 6 of What options do I have for remote connections? It depends. If you want to operate remotely un-tethered to your system, there are a couple of modules that can help. Remote Salesperson allows your sales force to enter orders, check inventory and customer accounts on a Palm Pilot that was previously synchronized with your system. Timekeeper allows entry of time on a Palm Pilot that can then be pushed into Payroll as well as Sales Order, Accounts Receivable, Job Cost or Time and Billing. If you want to actually connect with your system you have a number of options depending on the how many people need to connect and what your budget will allow. 26. Can I enter all my invoices through the Purchase Order system without creating a PO and a receiver for all of them? Yes, in Receipt of Goods Entry, skip the PO # field and just enter an Invoice #. 27. Can we print Bar Codes without Bar Code Master? Yes, if you are using graphical forms (Crystal generated), you should be able to change the font on any item to a Bar Code. You will have to download the Azalea font (small charge). 28. Can we add a UPC # to the Item Master? Yes, most likely with a User Defined Field unless you have an unused field large enough to hold it. 29. Can we add User Defined Fields to the Lot # screen? No, the Lot record does not yet allow UDF s. However, there is an enhancement from Macabe Associates that accommodates for this. 30. Does MAS 90/200 link with any CRM (Customer Relationship Management) packages? Yes. Act!, GoldMine and SalesLogix. 31. What is that new Shipping menu in the Sales Order module? This is new with version It is completely optional. Basically, it allows for a Pick, Pack, and Ship system and separates the shipping process from invoicing/accounting.

7 2002 User Conference Page 7 of 14 It allows your warehouse personnel to call up existing Sales Orders (in a Shipping Data Entry screen) and specify what exactly is shipping and can even specify what went in each box/package. Then they generate optional Packing Lists. This process automatically creates the invoices so then the Accounting department simply prints the invoices and updates them. Of course, Accounting can first go into Invoice Data Entry to verify them first, and/or make any necessary changes. 32. Why aren t I seeing all the transactions on the Inventory Inquiry/Maintenance Transactions screen? By default, the Transactions screen will initially show only the current period s transactions, based on the last period that was closed. To see the other month s transactions, click the Binoculars icon and select the All check box to see All transactions, or specify a transaction data range. Note: This may apply to other screens as well. 33. How do I match open Debits and open Credits in the A/R module? One option is to use the Match Credits to Open Invoices feature on the A/R Period End Processing menu. However, there are times this may not actually work, dependent on your data, or you may want to apply them in a specified manner. So the other option is to do it in A/R Cash Receipts Entry. Example: $0 cash receipt, and apply it against the -$50 credit and +$50 debit. 34. When performing P/O Receipt of Goods/Invoice, is there an easy way to tell if any of the line items have already been received/invoiced? Yes. In both P/O Receipt of Goods Entry and P/O Receipt of Invoice Entry, click on a line item and then click in the Received Qty field. At the bottom of this screen, you ll see Original Qty, Qty Received to Date, and Qty Invoiced to Date. 35. A/R Cash Receipts Entry will not allow me to post payments against a customer s open invoice(s) even though the customer has outstanding invoices - although I can post it against the customer s balance. Why is that? This is most likely due to the customer being incorrectly set as a balance forward customer, as opposed to open item. Look at the Open Item Customer option in A/R Customer Maintenance, and if it s unchecked, but your A/R module is set for Open Item customers, you must contact The Fitzgerald Group, as we need to edit a few files to fix this.

8 2002 User Conference Page 8 of I lost all my custom icons on my MAS 90 toolbar after the upgrade. Is there an easy way to recreate them? Yes drag and drop. Simply drag a MAS 90 function from your tree view up to the toolbar, & drop it. 37. Why aren't purchases showing up on my Vendor Purchase Analysis Report (or sales on my Customer Analysis Report)? It is likely you have not closed your month(s) properly. Any transactions for future periods (beyond current month as set in Setup Options) are being held in a "Future" bucket awaiting month-end processing. Once month-end processing is completed these amounts will be rolled into the Company MTD and YTD figures. These future amounts can be viewed in Vendor Inquiry (Maintenance) on the History Tab via the Future button. 38. I m trying to print checks (A/P or P/R), but I m getting a message that says check printing in progress, and it won t let me continue. Why do I get this message and how do I resolve it? Typically this is caused by an error or some interruption that occurred while actually printing checks. First confirm that someone else isn t really printing checks. To fix this on version 3.61 or higher, go to the File-Run option on your MAS 90 launcher, and type: glwska and click OK. Then select the Bank Code that s yielding the error, and click Proceed. Review the Warning message that appears, and click Yes. Then select Exit. The error should no longer occur. To fix this on versions prior to 3.61, please contact The Fitzgerald Group. 39. How can I keep a job from purging related history, after I run Period End Processing in Job Cost? Job history can be retained indefinitely, provided the job does not have a closed status at the time of performing Period End Processing. If a job s status is closed the job will be purged from history. The job s status can be manually changed before running Period End Processing. 40. Is there any way to stop posting to a job, which I ve determined to be closed? No, but there is a recommended workaround. Change the job status to hold or similar - i.e., use only this status for jobs considered closed. Then, modify the F2 Lookup (for data entry people) to not include jobs with a status of hold. Users will not see the jobs, therefore they won t be able to post to them.

9 2002 User Conference Page 9 of Is the only way to purge history, by running Period End Processing? No. History can also be manually purged, by running 1 or more of the purge history utilities - located inside the Period End Processing function in the various modules. Several utilities are available. 42. I ve created a new company. How can I copy just the Vendors masterfile to the new company, so I don t have to manually re-enter them? Run the SVTRNA utility from the File-Run screen. Make sure you have a current backup prior to running this utility. This utility can also be used for copying Customers and Items. 43. How can I keep employees from posting to prior months and/or future months? There is a setting under File/Preferences/System Preferences, that allows for posting to only the current and one future period. This setting should be turned on at the required workstations, and can be password protected. 44. How can I force employees to post to today s date? Technically you can t, but you can force today s date to automatically populate when the user goes into each MAS 90/MAS 200 module. In File/Preferences/System Preferences, turn on Auto Set Accounting Date to System Date. 45. What is the difference between MAS 90 and MAS 200? MAS 90 runs as a traditional LAN (local area network) application with data and programs stored at the server, but the processing takes place at the workstation. MAS 200 also has the data and programs stored at the server, but is a thin-client application and thus eliminates about 90% of the network activity, as the majority of the processing takes place at the server. 46. During Sales Order data entry, is there a way to make sure we re making enough profit? Yes, in the Sales Order Options screen, there are 2 options for Margin %: (1) You can specify a minimum margin % to display a warning (with optional password override), and (2) You can specify whether or not you want the margin % to display on screen.

10 2002 User Conference Page 10 of Last year s Tips and Tricks document contained a work-around tip for handling RMA s. Has a better way been developed? Actually, Yes. With the release of MAS 90/ , there is a new RMA module. 48. What s the easiest way to get my customer list in Excel? Create a simple Crystal Report and use the Export function inside Crystal. 49. I ve set up some users with access to Business Insights (BI), but inside BI they have access to information that they have been secured out of via MAS 90 security? Why? It s very likely that the user is part of a Group, and the security is set on the Group (as opposed to the User). BI cannot interpret Group security. 50. Can I run MAS 90/200 on Windows 95? It will run with versions 3.61 and prior, but they are not supported by Best. For the current version (3.7), you need Windows 98 or higher. 51. I just performed the MAS 90 workstation setup on a Windows 2000 (or Windows XP) computer but I can t get into MAS 90 now (error messages). Why? Most likely it s due to the rights/permissions on that computer for the user you re logged in as. 52. Is there a way to modify existing MAS90 Reports? Although you have a lot of options when running the hardcoded reports from the Reports Menu in any module, you cannot modify the looks of these reports. Best has however created several pre-written Crystal Reports under the Custom Reports Menu in most modules. These reports can be modified. In fact, if you are intimidated by Crystal Reports, you might want to try experimenting with these reports to see the effects. However, if you are going to change them we suggest you save them with a different name, so that you don t lose your original reports. 53. In ALE when I search or filter using 0 as a qualifier it doesn t seem to work. Using 0 doesn t seem to work, try using.01 (or.001).

11 2002 User Conference Page 11 of Can we use a User Defined Field (UDF) to search with the Advanced Lookup Engine? Yes. The User Defined Fields normally appear at the bottom of the list that appears when you click the Custom button. (sometimes they are a little hard to decipher). This became available in version How do you write off a bad debt? A zero-dollar cash receipt is the easiest way to write off a bad debt, but it also may be accomplished by issuing a credit memo against the invoice or by adjusting the invoice. 56. How come the 3rd line of the address isn t printing on my forms? The formulas/data fields for the 3 rd line address need to be added/corrected so that it includes the 3 rd line in addition to lines 1 and What is the best way to do a bank transfer? This should be accomplished using G/L Transaction Entry, mainly because it ll flow through to the Bank Reconciliation module. A Cash Clearing account is used in this process. 58. How do I post our payroll which is done by an outside service so that it hits the GL and Bank Rec at the same time? This can be accomplished using G/L Transaction Entry, mainly because it ll flow through to the Bank Rec module, and if required, will allow for the individual checks to show up for reconciling purposes. A Cash clearing account is used in this process. 59. What are all the keyboard shortcuts and is there a list available? Inside the MAS 90 Help system is a section for Keyboard Navigation that lists out the various keyboard shortcuts. You can also print out the following pages of the Getting Started section of the User Manuals: 3.61 = Pages 29-31, 49-50, 54, 56-59, which contain additional Navigation information. 60. Can I make a copy of my existing company to use for testing or training? Yes, there is a hidden utility called SVDATA (SUDATA prior to 3.51) that allows you to copy your entire company data files and setup to a new or existing company (overwriting existing data). We suggest that you give us a call the first time you are going to use this as it is potentially catastrophic if you copy the wrong way. (SVTRNA allows for copying just masterfiles.)

12 2002 User Conference Page 12 of People are in the system all day, so we have trouble finding a time to run our daily updates. Can we run these at night while no one is here? In Library Master/Utilities, there is an Automatic Update feature that allows you to specify which journals/registers you want to schedule for unattended printing and updating. It allows you to update all or specific batches, and creates a log to let you know what happened. 62. How important is it to close our months on time? From a strict accounting viewpoint, not crucial, as the subsidiary ledgers will stay in balance as will the General Ledger, however Other than General Ledger, if you don t close out month one before posting activity for month three, a whole bunch of reports and inquiries will get out of whack. For all PTD and YTD reporting (again other than GL) MAS 90 uses two buckets: current (dates before or in this month) and future (dates beyond this month). When you close the month, MAS 90 transfers all data in the future bucket into the current bucket. Consequently, if you had month two and month three data in the future bucket it is going to all show up in the MTD totals for month two, thus making both month two and three inaccurate. You basically have 30 days to close your months. That should be enough. 63. Hopefully most people are aware of the select feature in A/P Payment Selection and A/R Cash Receipts. If not, it is a point and click option that lets you select multiple invoices without recalling the list each time. Click the Select button on the applicable screens to use this feature. 64. Can I Fax or Reports or Forms? If you preview a Crystal Report or Form, you can it from the preview. For standard reports you can purchase a copy of Adobe Writer and create PDF documents which can then be attached to s. MAS 90/200 also has batch faxing capability to fax all your PO s or SO s at night, unattended. In addition, you can print to a fax (printer device) via Windows printing. 65. Can we disable the ability to add Customers on the fly? Yes, using the Custom Office module. 65. How can we make global changes to Customers and Inventory Items)? There is a Global Field Change Utility on the A/R Setup/Accounts Receivable Utilities Menu, and an Apply Button on the Inventory Setup/Product Line Maintenance Screen that allows you to make changes

13 2002 User Conference Page 13 of 14 to large ranges of records. PLEASE BE CAREFUL, as we have had clients completely blank out all fields by mistake. You might want to give us a call the first time you use these utilities. You can also do global changes to almost all files within MAS 90 using Visual Integrator as long as you can identify consistent criteria. 66. We use Excel (or some other external system such as scanners) for taking Physical Inventories. Is there a way to get this into MAS90/MAS200? Yes, it can be imported using Visual Integrator. 67. How can we stop the extended item description box from popping up during Sales Order and Purchase Order Entry? After going into Sales or Purchase Order Entry, but before starting the first order, click the Default button on the top right of the screen. Then click on the Tab button and unclick the Description box. 68. Are there documented Year End Procedures? Yes, in the Technical Reference and Support Guide (TRSG). If you don t have it installed and need help doing so, please call our office. 69. How do I match debits and credits in Accounts Payable? In the Manual Check Entry screen, enter APP + a 3-digit numeric (e.g., APP001) at the check No. field. Then on the lines screen select the invoices you want to apply to each other. You could also issue individual credit memo s (and debit memo s) if applicable. 70. How to properly do a pre-payment in Accounts Payable: Enter the check amount in Manual Check Entry. Use an invoice # as PPYYMMDD for example PP Print and Update the check entry. Once the invoice comes in enter in Invoice data entry and call up the pre-paid invoice (which will have a zero balance) and apply it to the original expense acct. with the zero balance on tab How to properly do a pre-payment in Accounts Receivable: Enter the payment in cash receipts as usual on tab 2 at the invoice number field type in an invoice number such as the date with the suffix PP for example 88-PP you will asked is this a pre payment?

14 2002 User Conference Page 14 of 14 Click yes and go on. Once an invoice is entered, printed and posted in Invoice Data Entry go to Period End and choose match credits to open invoices option and enter the customer and proceed. 72. What is the difference between Crystal Reports and FRx? Crystal Reports is a graphical report writer, whereas, FRx is a graphical financial report writer. FRx is better used for Balance Sheets, Income Statements, etc. 73. How can I add my custom Crystal Reports to the MAS 90 Custom Reports menu(s)?? This is accomplished using the Report Manager function on the Library Master-Utilities menu. 74. There isn t a lot of room on my MAS 90 Launcher (main menu) for placing icon/functions I frequently use. What can I do about it? You have a couple options but the best is to move the Web Navigation toolbar up, and the Custom toolbar down. Also, you can rename the icon text labels, or hide them altogether. 75. Is there an easy way to search for specific text/numbers when previewing a MAS 90 report to screen? Yes there is. Click the Binoculars icon at the bottom of the screen and type in the text you re looking for. It may be advantageous to select Beginning (as opposed to Cursor) for the Start At criteria. For a copy of last year s Tips & Tricks, contact Tony Bella

MAS 90 MAS 200 Tips, Tricks and Frequently Asked Questions (FAQ s) Prepared by: The Fitzgerald Group August 11, 2004

MAS 90 MAS 200 Tips, Tricks and Frequently Asked Questions (FAQ s) Prepared by: The Fitzgerald Group August 11, 2004 MAS 90 MAS 200 Tips, Tricks and Frequently Asked Questions (FAQ s) Prepared by: The Fitzgerald Group August 11, 2004 This is a compilation of ideas from The Fitzgerald Group staff, from clients and from

More information

TIPS AND TRICKS for the CORE ACCOUNTING MODULES REMINDER:

TIPS AND TRICKS for the CORE ACCOUNTING MODULES REMINDER: REMINDER: Please remember that this document is meant to be a guideline with some ideas of ways you can use MAS 90 / 200 core accounting modules more fully. However, your settings or process may not work

More information

MAS90 MAS200 Tips, Tricks and Frequently Asked Questions (FAQ s)

MAS90 MAS200 Tips, Tricks and Frequently Asked Questions (FAQ s) MAS90 MAS200 Tips, Tricks and Frequently Asked Questions (FAQ s) Prepared by : The Fitzgerald Group This is a compilation of ideas from various members of The Fitzgerald Group staff, clients and from other

More information

Dynamics GP 50 More Tips in 50 Minutes

Dynamics GP 50 More Tips in 50 Minutes Financial Tip #1 Use Keyboard Shortcuts for Marking Cleared Transactions in Bank Rec Transactions >> Financial >> Reconcile Bank Statement Select the first transaction, then type CTRL+B (Begin Range).

More information

for Sage 100 ERP General Ledger Overview Document

for Sage 100 ERP General Ledger Overview Document for Sage 100 ERP General Ledger Document 2012 Sage Software, Inc. All rights reserved. Sage Software, Sage Software logos, and the Sage Software product and service names mentioned herein are registered

More information

The End of Month Closing process cuts off all sub-journal postings for the month and should be performed at the conclusion of each month.

The End of Month Closing process cuts off all sub-journal postings for the month and should be performed at the conclusion of each month. End of Month Closing The End of Month Closing process cuts off all sub-journal postings for the month and should be performed at the conclusion of each month. Closing the month involves up to five steps:

More information

WHAT S NEW IN SAGE 100 2015. Colleen A. Gutirrez, Senior Consultant II, BKD Technologies

WHAT S NEW IN SAGE 100 2015. Colleen A. Gutirrez, Senior Consultant II, BKD Technologies WHAT S NEW IN SAGE 100 2015 Colleen A. Gutirrez, Senior Consultant II, BKD Technologies WELCOME/INTRODUCTIONS Colleen Gutirrez 19 years of experience in technology consulting Primarily distribution & manufacturing

More information

AccuPOS to MAS90/200 Integration Guide

AccuPOS to MAS90/200 Integration Guide AccuPOS to MAS90/200 Integration Guide Part I - MAS90 Company Setup In order to use AccuPOS Point of Sale and have it integrate with MAS90/200 for inventory and accounting purposes, we ask that you setup

More information

Job Streaming User Guide

Job Streaming User Guide Job Streaming User Guide By TOPS Software, LLC Clearwater, Florida Document History Version Edition Date Document Software Trademark Copyright First Edition 08 2006 TOPS JS AA 3.2.1 The names of actual

More information

Computer Helper Publishing, Inc. 800-533-5227 www.churchwindows.com

Computer Helper Publishing, Inc. 800-533-5227 www.churchwindows.com Training 2010 Financial to Accounting Transition Book 3: Transactions & Corrections Computer Helper Publishing, Inc. 800-533-5227 www.churchwindows.com Book 3 Transactions & Corrections Basic Transactions...

More information

for Sage 100 ERP Purchase Order Overview Document

for Sage 100 ERP Purchase Order Overview Document for Sage 100 ERP Purchase Order Document 2012 Sage Software, Inc. All rights reserved. Sage Software, Sage Software logos, and the Sage Software product and service names mentioned herein are registered

More information

Year End Closing 2013 Procedures for Sage 100 ERP. Martin & Associates

Year End Closing 2013 Procedures for Sage 100 ERP. Martin & Associates Year End Closing 2013 Procedures for Sage 100 ERP Martin & Associates MENU MAS 90 MAS 200 Order of Closing Order Own Closed Module 1 System Wide Backup 2 B/M Bill of materials 3 W/o Work order processing

More information

Sage 100 ERP. Customer Upgrade Guide

Sage 100 ERP. Customer Upgrade Guide Sage 100 ERP Customer Upgrade Guide 2012 Sage Software, Inc. All rights reserved. Sage, the Sage logos, and the Sage product and service names mentioned herein are registered trademarks or trademarks of

More information

Microsoft Dynamics GP. Sales Order Processing

Microsoft Dynamics GP. Sales Order Processing Microsoft Dynamics GP Sales Order Processing Copyright Copyright 2007 Microsoft Corporation. All rights reserved. Complying with all applicable copyright laws is the responsibility of the user. Without

More information

for Sage 100 ERP Work Order Overview Document

for Sage 100 ERP Work Order Overview Document for Sage 100 ERP Work Order Document 2012 Sage Software, Inc. All rights reserved. Sage Software, Sage Software logos, and the Sage Software product and service names mentioned herein are registered trademarks

More information

Year End Closing Procedures for Sage 100 ERP. Martin & Associates

Year End Closing Procedures for Sage 100 ERP. Martin & Associates Year End Closing Procedures for Sage 100 ERP 2014 Martin & Associates Period End/Year End FAQs Page 1 of 2 Period End/Year End FAQs Home FAQs & Troubleshooting Show/Hide All Click a question below to

More information

Postage Accounting Module User Guide

Postage Accounting Module User Guide Postage Accounting Module User Guide Table Of Contents INTRODUCTION...1 ACCOUNTING PRINCIPLES...1 Access Postage Accounting...2 LOGGING IN AND SECURITY...2 SETTING THE INTERACTION BETWEEN POSTAGE ACCOUNTING

More information

MSI Accounts Receivable Version 4.0

MSI Accounts Receivable Version 4.0 MSI Accounts Receivable Version 4.0 User s Guide Municipal Software, Inc. 1850 W. Winchester Road, Ste 209 Libertyville, IL 60048 Phone: (847) 362-2803 Fax: (847) 362-3347 Contents are the exclusive property

More information

Accounts Payable and Inventory Management

Accounts Payable and Inventory Management Accounts Payable and Inventory Management 2013 SedonaOffice Users Conference Presented by: Lisa Gambatese & Laurie Goodrich Table of Contents Accounts Payable G/L Account Defaults (AP) 4 A/P Setup Processing

More information

Amicus Small Firm Accounting: Frequently Asked Questions

Amicus Small Firm Accounting: Frequently Asked Questions Amicus Small Firm Accounting: Frequently Asked Questions Questions Administration... 3 1 How do I add another user account? 3 2 How are passwords set up and how are they used? 3 3 What does "Reset User

More information

for Sage 100 ERP Sales Order Overview Document

for Sage 100 ERP Sales Order Overview Document for Sage 100 ERP Sales Order Document 2012 Sage Software, Inc. All rights reserved. Sage Software, Sage Software logos, and the Sage Software product and service names mentioned herein are registered trademarks

More information

Automated Inventory System

Automated Inventory System Automated Inventory System User Manual Developed by USDA Food and Nutrition Service June 2009 (Incomplete) Table of Contents Welcome Menu Client Services Report System Inventory System Operations Tailgate

More information

TheFinancialEdge. Administration Guide

TheFinancialEdge. Administration Guide TheFinancialEdge Administration Guide 102011 2011 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means, electronic, or mechanical, including

More information

Repairing Your Accounting System

Repairing Your Accounting System Repairing Your Accounting System Who is this paper for? This paper is for companies that have been using DBA Next-Generation for some time, but have struggled up to now with getting the accounting system

More information

This Product Update also contains enhancements and program corrections introduced in 5.10.5.0, included in this report for reference.

This Product Update also contains enhancements and program corrections introduced in 5.10.5.0, included in this report for reference. Release Notes for Sage 100 ERP 015 Product Update 1 (5.0.1.0) An updated "ebusiness Web Services.exe" is being installed to the Sage 100 ERP 015 Server's..\MAS90\WS folder to correct the following issue:

More information

TheFinancialEdge. Administration Guide

TheFinancialEdge. Administration Guide TheFinancialEdge Administration Guide 110309 2009 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means, electronic, or mechanical, including

More information

Microsoft Dynamics GP. Inventory Control

Microsoft Dynamics GP. Inventory Control Microsoft Dynamics GP Inventory Control Copyright Copyright 2010 Microsoft. All rights reserved. Limitation of liability This document is provided as-is. Information and views expressed in this document,

More information

Keep your search simple. Only the last name is required. First name and Phone are optional.

Keep your search simple. Only the last name is required. First name and Phone are optional. Creating a new Parts Invoice A Part Invoice is used to record part sales to a customer. When opening a new Parts Invoice, Dealer Logic will assign the next Invoice Number. The date will be the date the

More information

Sage Accpac ERP 5.6A. SageCRM 6.2 I Integration Update Notice

Sage Accpac ERP 5.6A. SageCRM 6.2 I Integration Update Notice Sage Accpac ERP 5.6A SageCRM 6.2 I Integration Update Notice 2009 Sage Software, Inc. All rights reserved. Sage, the Sage logos, and all Sage Accpac product and service names mentioned herein are registered

More information

Dynamics GP 50 Tips in 50 Minutes

Dynamics GP 50 Tips in 50 Minutes Tip #1 Speed Up GL Distribution Entry Account Alias Financials Assign an Alias to Accounts. In any GL Distribution Entry window, click the arrow next to the Account Lookup button or type Ctrl+Q. 1 Enter

More information

Studio Designer 80 Guide

Studio Designer 80 Guide Table Of Contents Introduction... 1 Installation... 3 Installation... 3 Getting started... 5 Enter your company information... 5 Enter employees... 6 Enter clients... 7 Enter vendors... 8 Customize the

More information

Paperless Office: Sales Order Invoices SO-1437

Paperless Office: Sales Order Invoices SO-1437 Paperless Office: Sales Order Invoices SO-1437 Overview This Extended Solution to the standard MAS 90 MAS 200 Sales Order module prints Sales Order Invoices to PDF files. Additional functionality is available

More information

NEXTGEN BUDGETARY ACCOUNTING TRAINING

NEXTGEN BUDGETARY ACCOUNTING TRAINING NEXTGEN BUDGETARY ACCOUNTING TRAINING TRANSACTIONS I. Vendor Maintenance II. III. IV. Requisition Entry - Routing Purchase Order Entry Accounts Payable - Invoice Entry V. Accounts Payable - Cash Disbursements

More information

Inform Upgrade Version 20.0.77.77. New Features Improved Google Calendar Synchronization

Inform Upgrade Version 20.0.77.77. New Features Improved Google Calendar Synchronization **The latest Inform upgrade includes features and fixes from all previous upgrades. Please review the upgrade notes for any additional versions that fall between your current version and this upgrade.**

More information

CLIENT BOOKKEEPING SOLUTION ACCOUNTS RECEIVABLE. Getting Started. version 2007.x.x

CLIENT BOOKKEEPING SOLUTION ACCOUNTS RECEIVABLE. Getting Started. version 2007.x.x CLIENT BOOKKEEPING SOLUTION ACCOUNTS RECEIVABLE Getting Started version 2007.x.x TL 20746 (06/09/09) Copyright Information Text copyright 1997 2009 by Thomson Reuters/Tax & Accounting. All rights reserved.

More information

Migrating to Excel 2010 from Excel 2003 - Excel - Microsoft Office 1 of 1

Migrating to Excel 2010 from Excel 2003 - Excel - Microsoft Office 1 of 1 Migrating to Excel 2010 - Excel - Microsoft Office 1 of 1 In This Guide Microsoft Excel 2010 looks very different, so we created this guide to help you minimize the learning curve. Read on to learn key

More information

Solar Eclipse Accounts Payable. Release 8.7.2

Solar Eclipse Accounts Payable. Release 8.7.2 Solar Eclipse Accounts Payable Release 8.7.2 Legal Notices 2011 Epicor Software Corporation. All rights reserved. Unauthorized reproduction is a violation of applicable laws. Epicor and the Epicor logo

More information

Accounts Payable 6.4 User Manual

Accounts Payable 6.4 User Manual Accounts Payable 6.4 User Manual Accounts Payable TABLE OF CONTENTS Accounts Payable User Manual Introduction... 3 Purpose... 3 Accounts Payable Overview... 3 Enter Payable... 4 General Info... 6 Remit

More information

Microsoft Dynamics GP. Invoicing

Microsoft Dynamics GP. Invoicing Microsoft Dynamics GP Invoicing Copyright Copyright 2007 Microsoft Corporation. All rights reserved. Complying with all applicable copyright laws is the responsibility of the user. Without limiting the

More information

Juris Year-End Checklist 2009

Juris Year-End Checklist 2009 Juris Year-End Checklist 2009 Table of Contents Checklist for 2009... 1 Make a Backup!... 1 Performing the Year-end... 1 Before you begin... 1 Closing the Accounting Year... 3 Juris Disbursements... 8

More information

Microsoft Dynamics GP. Not For Profit Accounting

Microsoft Dynamics GP. Not For Profit Accounting Microsoft Dynamics GP Not For Profit Accounting Copyright Copyright 2010 Microsoft. All rights reserved. Limitation of liability This document is provided as-is. Information and views expressed in this

More information

Changing from Cash to Accrual Accounting

Changing from Cash to Accrual Accounting Changing from Cash to Accrual Accounting Contents About Changing the Accounting Method Creating a Client Disb Recov (1210) Account Contacting LexisNexis PCLaw Technical Support Adjusting Disbursements

More information

City of Dallas. WASP MOBILE ASSET Professional Edition Version 6.3 STEP-BY-STEP GUIDE

City of Dallas. WASP MOBILE ASSET Professional Edition Version 6.3 STEP-BY-STEP GUIDE City of Dallas WASP MOBILE ASSET Professional Edition Version 6.3 STEP-BY-STEP GUIDE Office of Emergency Management Revised July 3, 2013 Table of Contents ENTERING NEW EQUIPMENT... 1 PRINTING LABELS...

More information

User Guide. Microsoft Dynamics GP 10 Upgrade. Understanding and using new features and functionality within Dynamics GP 10

User Guide. Microsoft Dynamics GP 10 Upgrade. Understanding and using new features and functionality within Dynamics GP 10 User Guide Microsoft Dynamics GP 10 Upgrade Understanding and using new features and functionality within Dynamics GP 10 Version 3.7 (Spring 2009) Microsoft Dynamics GP 10 Upgrade Copyright Copyright 1997-2009

More information

Preparing for Bank Reconciliations

Preparing for Bank Reconciliations Contents About Preparing for Bank Reconciliations What is Reconciled Preparing for the Reconciliation Selecting the Bank Account and Period About Preparing for Bank Reconciliations Bank Reconciliation

More information

Accounts Payable Back Office Reference Guide

Accounts Payable Back Office Reference Guide Accounts Payable Back Office Reference Guide Version 4 Copyright Orion Law Management Systems, Inc. All rights reserved Printed in the United States of America www.orionlaw.com All Rights Reserved. No

More information

PCLaw Tips & Tricks Best Practices

PCLaw Tips & Tricks Best Practices 2009 Practice Management Conference PCLaw Tips & Tricks Best Practices Presented by: Cindy Emmerson Affinity Consulting Group, LLC Naples, FL www.affinityconsulting.com www.affinityuniversity.com cemmerson@affinityconsulting.com

More information

Microsoft Dynamics GP. Project Accounting Billing Guide

Microsoft Dynamics GP. Project Accounting Billing Guide Microsoft Dynamics GP Project Accounting Billing Guide Copyright Copyright 2010 Microsoft. All rights reserved. Limitation of liability This document is provided as-is. Information and views expressed

More information

How To Use Microsoft Gpa On Microsoft Powerbook 2.5.2.2 (Windows) On A Microsoft P2.1 (Windows 2.2) On An Uniden Computer (Windows 1.5) On Micro

How To Use Microsoft Gpa On Microsoft Powerbook 2.5.2.2 (Windows) On A Microsoft P2.1 (Windows 2.2) On An Uniden Computer (Windows 1.5) On Micro Microsoft Dynamics GP Analytical Accounting Copyright Copyright 2011 Microsoft. All rights reserved. Limitation of liability This document is provided as-is. Information and views expressed in this document,

More information

M O N T H E N D / Q U A R T E R L Y / Y E A R E N D C H E C K L I S T S & P R O C E D U R E S ACCOUNTS RECEIVABLE ACCOUNTS PAYABLE

M O N T H E N D / Q U A R T E R L Y / Y E A R E N D C H E C K L I S T S & P R O C E D U R E S ACCOUNTS RECEIVABLE ACCOUNTS PAYABLE M O N T H E N D / Q U A R T E R L Y / Y E A R E N D C H E C K L I S T S & P R O C E D U R E S ACCOUNTS RECEIVABLE ACCOUNTS PAYABLE PAYROLL GENERAL LEDGER PROCOM SOLUTIONS, INC. OAKLAND CENTER 8980-A ROUTE

More information

NEXTGEN TRAINING TRANSACTIONS. I. Vendor Maintenance. Purchase Order Entry. Invoice Entry. Cash Disbursements. V. Journal Entry Cash Receipts

NEXTGEN TRAINING TRANSACTIONS. I. Vendor Maintenance. Purchase Order Entry. Invoice Entry. Cash Disbursements. V. Journal Entry Cash Receipts TRANSACTIONS I. Vendor Maintenance II. Purchase Order Entry III. Invoice Entry NEXTGEN TRAINING IV. Cash Disbursements V. Journal Entry Cash Receipts Janet Cowart VI. VII. Queries/Reports Bank Statement

More information

How To Sync Between Quickbooks And Act

How To Sync Between Quickbooks And Act QSalesData User Guide Note: In addition to this User Guide, we have an extensive Online Video Library that you can access from our website: www.qsalesdata.com/onlinevideos Updated: 11/14/2014 Installing

More information

Version 7.40 Customer Upgrade Guide. Sage ERP MAS 500

Version 7.40 Customer Upgrade Guide. Sage ERP MAS 500 Version 7.40 Customer Upgrade Guide Sage ERP MAS 500 2005-2011 Sage Software, Inc. All rights reserved. Sage, the Sage logos, and the Sage product and service names mentioned herein are registered trademarks

More information

Blackbaud FundWare Accounts Receivable Guide VOLUME 1 SETTING UP ACCOUNTS RECEIVABLE

Blackbaud FundWare Accounts Receivable Guide VOLUME 1 SETTING UP ACCOUNTS RECEIVABLE Blackbaud FundWare Accounts Receivable Guide VOLUME 1 SETTING UP ACCOUNTS RECEIVABLE VERSION 7.50, JULY 2008 Blackbaud FundWare Accounts Receivable Guide Volume 1 USER GUIDE HISTORY Date Changes June 2000

More information

CRG Academy Course Descriptions. Corporate Renaissance Group 6 Antares Drive, Phase 1, Suite 200 Ottawa, ON K2E 8A9 www.crgroup.

CRG Academy Course Descriptions. Corporate Renaissance Group 6 Antares Drive, Phase 1, Suite 200 Ottawa, ON K2E 8A9 www.crgroup. CRG Academy s Corporate Renaissance Group 6 Antares Drive, Phase 1, Suite 200 Ottawa, ON K2E 8A9 www.crgroup.com Updated February 2013 CRG Academy Courses Microsoft Dynamics GP... 3 Foundational Overview

More information

A/P Payment Selection Based on A/R Cash Receipts AP-1108

A/P Payment Selection Based on A/R Cash Receipts AP-1108 A/P Payment Selection Based on A/R Cash Receipts AP-1108 Overview This Extended Solution modifies the A/R Cash Receipt update process to write an Amount paid on a Sales Order Invoice to a corresponding

More information

Microsoft Dynamics GP. Cashbook Bank Management

Microsoft Dynamics GP. Cashbook Bank Management Microsoft Dynamics GP Cashbook Bank Management Copyright Copyright 2010 Microsoft. All rights reserved. Limitation of liability This document is provided as-is. Information and views expressed in this

More information

A ribbon has replaced the Desktop toolbar. You still have access to the same features, but the new interface makes them easier to find.

A ribbon has replaced the Desktop toolbar. You still have access to the same features, but the new interface makes them easier to find. Sage 100 2016 What s New Global Enhancements New Product Key Required If you use the Payroll module, you must enter your new product key when installing Sage 100 2016. If you enter a product key obtained

More information

CALCASIEU PARISH SCHOOL BOARD SCHOOL ACTIVITY FUNDS EPES ACCOUNTING PROCEDURES MANUAL

CALCASIEU PARISH SCHOOL BOARD SCHOOL ACTIVITY FUNDS EPES ACCOUNTING PROCEDURES MANUAL CALCASIEU PARISH SCHOOL BOARD SCHOOL ACTIVITY FUNDS EPES ACCOUNTING PROCEDURES MANUAL TABLE OF CONTENTS CPSB SAF EPES Procedures Manual START UP 4 Log in 4 Main Screen 5 Exit 5 UTILITIES 5 Preferences

More information

for Sage 100 ERP Accounts Payable Overview Document

for Sage 100 ERP Accounts Payable Overview Document for Sage 100 ERP Accounts Payable Document 2012 Sage Software, Inc. All rights reserved. Sage Software, Sage Software logos, and the Sage Software product and service names mentioned herein are registered

More information

Rochester Institute of Technology. Oracle Training: Performing Inquiries and Requesting Reports in the Oracle Applications

Rochester Institute of Technology. Oracle Training: Performing Inquiries and Requesting Reports in the Oracle Applications Rochester Institute of Technology Oracle Training: Performing Inquiries and Requesting Reports in the Oracle Applications Table of Contents Introduction Lesson 1: Lesson 2: Lesson 3: Lesson 4: Lesson 5:

More information

Tabs3, PracticeMaster, and the pinwheel symbol ( trademarks of Software Technology, Inc. Portions copyright Microsoft Corporation

Tabs3, PracticeMaster, and the pinwheel symbol ( trademarks of Software Technology, Inc. Portions copyright Microsoft Corporation Tabs3 Trust Accounting Software Reseller/User Tutorial Version 16 for November 2011 Sample Data Copyright 1983-2013 Software Technology, Inc. 1621 Cushman Drive Lincoln, NE 68512 (402) 423-1440 http://www.tabs3.com

More information

Business Portal for Microsoft Dynamics GP 2010. User s Guide Release 5.1

Business Portal for Microsoft Dynamics GP 2010. User s Guide Release 5.1 Business Portal for Microsoft Dynamics GP 2010 User s Guide Release 5.1 Copyright Copyright 2011 Microsoft. All rights reserved. Limitation of liability This document is provided as-is. Information and

More information

How To Use A Bank Service On A Bank System

How To Use A Bank Service On A Bank System Sage 300 ERP 2014 Bank Services User's Guide This is a publication of Sage Software, Inc. Copyright 2014. Sage Software, Inc. All rights reserved. Sage, the Sage logos, and the Sage product and service

More information

North Dakota University System Accounts Payable Processes

North Dakota University System Accounts Payable Processes Accounts Payable Processes Voucher Post Pay Cycle Payment Post Training Manual 3130 Kilgore Road, Suite 400 Rancho Cordova, CA 95670 916.669.3720 www.maximus.com ACCOUNTS PAYABLE BATCH PROCESSES OVERVIEW...3

More information

Copyright 2006 Business Management Systems. Web Based ERP/CRM Software

Copyright 2006 Business Management Systems. Web Based ERP/CRM Software Web Based ERP/CRM Software INTRODUCTION...8 Features... 9 Services... 10 INSTALLATION...11 CUSTOMER FILE...12 Add Customer... 12 Modify Customer... 14 Add Ship To... 15 Modify Ship To... 16 Reports...

More information

Microsoft Migrating to Word 2010 from Word 2003

Microsoft Migrating to Word 2010 from Word 2003 In This Guide Microsoft Word 2010 looks very different, so we created this guide to help you minimize the learning curve. Read on to learn key parts of the new interface, discover free Word 2010 training,

More information

Accounts Receivable Reference Guide

Accounts Receivable Reference Guide Last Updated: March 7, 2009 About this Guide This Guide is for use by SedonaOffice customers only. This guide is not meant to serve as an operating or training manual, its purpose is to provide an overview

More information

The following options under the Financial area will be available on the Web as of the February 2016 Release.

The following options under the Financial area will be available on the Web as of the February 2016 Release. The following options under the Financial area will be available on the Web as of the February 2016 Release. Please Note: They will not be going away on PaC. Bank Reconciliation Overview Check Reconciliation

More information

for Sage 100 ERP Paperless Office Overview Document

for Sage 100 ERP Paperless Office Overview Document for Sage 100 ERP Paperless Office Document 2012 Sage Software, Inc. All rights reserved. Sage Software, Sage Software logos, and the Sage Software product and service names mentioned herein are registered

More information

USER MANUAL Version 4

USER MANUAL Version 4 Workstation Options ("Options For this Computer Only") USER MANUAL Version 4 Information in this document is subject to change without notice. Companies, names and data used in examples herein are fictitious

More information

RemoteWare Software Manager

RemoteWare Software Manager RemoteWare Software Manager Client User s Guide Version 2.0 RemoteWare Software Manager Client User s Guide Version 2.0 This document was prepared to assist licensed users of RemoteWare by XcelleNet, Inc.;

More information

for Sage 100 ERP Library Master Overview Document

for Sage 100 ERP Library Master Overview Document for Sage 100 ERP Library Master Document 2012 Sage Software, Inc. All rights reserved. Sage Software, Sage Software logos, and the Sage Software product and service names mentioned herein are registered

More information

Sage 300 ERP 2012. Bank Services User's Guide

Sage 300 ERP 2012. Bank Services User's Guide Sage 300 ERP 2012 Bank Services User's Guide This is a publication of Sage Software, Inc. Copyright 2014. Sage Software, Inc. All rights reserved. Sage, the Sage logos, and the Sage product and service

More information

Inventory Management Overview Document. for Sage 100 ERP

Inventory Management Overview Document. for Sage 100 ERP Document for Sage 100 ERP 2012 Sage Software, Inc. All rights reserved. Sage Software, Sage Software logos, and the Sage Software product and service names mentioned herein are registered trademarks or

More information

The POS system can track sales by various payment methods like cash, checks, credit cards, coupons, and gift certificates.

The POS system can track sales by various payment methods like cash, checks, credit cards, coupons, and gift certificates. Point-Of-Sale Overview You can use the Point-of-Sale module (POS) to create Cash Receipts, Invoices, and receive A/R Payments. In addition, you can create returns for Receipts and Invoices. The POS system

More information

Aspect Software Users Manual

Aspect Software Users Manual Aspect Software, Inc. Back-office software for restaurateurs Aspect Software Users Manual Support and General Contact Information Phone: 800.454.3280 or 405.721.4420 Fax: 405.721.4419 www.aspect-software.net

More information

Accounts Payable User s Guide. Version 7.6 2210.AP76

Accounts Payable User s Guide. Version 7.6 2210.AP76 Accounts Payable User s Guide Version 7.6 2210.AP76 1995, 1997, 2000, 2003 2010 by Open Systems Holdings Corp. All rights reserved. No part of this manual may be reproduced by any means without the written

More information

Sage 50. Sage 50 Accounting U.S. Edition. Resource guide for Sage Business Care customers. Sage Learning Services

Sage 50. Sage 50 Accounting U.S. Edition. Resource guide for Sage Business Care customers. Sage Learning Services Sage 50 Accounting U.S. Edition Sage 50 Resource guide for Sage Business Care customers Learn how to set up and use basic accounting functions, including sales, purchases, inventory, and payroll. Sage

More information

Sage DacEasy. Accounting User s Guide

Sage DacEasy. Accounting User s Guide Sage DacEasy 2012 Accounting User s Guide Sage DacEasy Accounting Copyright Information in this document is subject to change without notice. Company names and data used in examples herein are fictitious

More information

USER MANUAL (PRO-CURO LITE, PRO & ENT) [SUPPLIED FOR VERSION 3]

USER MANUAL (PRO-CURO LITE, PRO & ENT) [SUPPLIED FOR VERSION 3] Pro-curo Software Ltd USER MANUAL (PRO-CURO LITE, PRO & ENT) [SUPPLIED FOR VERSION 3] CONTENTS Everyday use... 3 Logging on... 4 Main Screen... 5 Adding locations... 6 Working with locations... 7 Duplicate...

More information

Utility Billing Software Version 10 +

Utility Billing Software Version 10 + Utility Billing Software Version 10 + Table of Contents 2 INSTALLATION... 5 LOCATION OF DATA... 5 PASSWORDS... 5 SERVICES... 11 ADDING A NEW SERVICE... 11 METERED SERVICES... 12 TRANSIENT SERVICES... 12

More information

Microsoft Dynamics GP. Payables Management

Microsoft Dynamics GP. Payables Management Microsoft Dynamics GP Payables Management Copyright Copyright 2010 Microsoft. All rights reserved. Limitation of liability This document is provided as-is. Information and views expressed in this document,

More information

Physical Count Entry by Ticket Number IM-1119

Physical Count Entry by Ticket Number IM-1119 Physical Count Entry by Ticket Number IM-1119 Overview This Extended Solution to the standard MAS 90 MAS 200 Inventory Management module adds data entry options for Ticket Number Entry to the Inventory

More information

Microsoft Dynamics GP. Collections Management

Microsoft Dynamics GP. Collections Management Microsoft Dynamics GP Collections Management Copyright Copyright 2010 Microsoft. All rights reserved. Limitation of liability This document is provided as-is. Information and views expressed in this document,

More information

Recurring Contract Billing 10.0 SP6

Recurring Contract Billing 10.0 SP6 Recurring Contract Billing 10.0 SP6 An application for Microsoft Dynamics ΤΜ GP 10.0 Furthering your success through innovative business solutions Copyright Manual copyright 2011 Encore Business Solutions,

More information

Integrated Accounting System for Mac OS X

Integrated Accounting System for Mac OS X Integrated Accounting System for Mac OS X Program version: 6.3 110401 2011 HansaWorld Ireland Limited, Dublin, Ireland Preface Standard Accounts is a powerful accounting system for Mac OS X. Text in square

More information

We recommend that you create seven binders: one each for each SAGE PRO module you own:

We recommend that you create seven binders: one each for each SAGE PRO module you own: We recommend that you create seven binders: one each for each SAGE PRO module you own: General Ledger Inventory Control Accounts Receivable Accounts Payable Order Entry Purchase Orders Payroll If you have

More information

Solar Eclipse Accounts Receivable. Release 8.7.2

Solar Eclipse Accounts Receivable. Release 8.7.2 Solar Eclipse Accounts Receivable Release 8.7.2 Legal Notices 2011 Epicor Software Corporation. All rights reserved. Unauthorized reproduction is a violation of applicable laws. Epicor and the Epicor logo

More information

Microsoft Dynamics GP. Receivables Management

Microsoft Dynamics GP. Receivables Management Microsoft Dynamics GP Receivables Management Copyright Copyright 2010 Microsoft. All rights reserved. Limitation of liability This document is provided as-is. Information and views expressed in this document,

More information

for Sage 100 ERP Accounts Receivable Overview Document

for Sage 100 ERP Accounts Receivable Overview Document for Sage 100 ERP Accounts Receivable Document 2012 Sage Software, Inc. All rights reserved. Sage Software, Sage Software logos, and the Sage Software product and service names mentioned herein are registered

More information

Retail POS User s Guide. Microsoft Dynamics AX for Retail

Retail POS User s Guide. Microsoft Dynamics AX for Retail Retail POS User s Guide Microsoft Dynamics AX for Retail January 2011 Microsoft Dynamics is a line of integrated, adaptable business management solutions that enables you and your people to make business

More information

for Sage 100 ERP Bank Reconciliation Overview Document

for Sage 100 ERP Bank Reconciliation Overview Document for Sage 100 ERP Bank Reconciliation Document 2012 Sage Software, Inc. All rights reserved. Sage Software, Sage Software logos, and the Sage Software product and service names mentioned herein are registered

More information

Microsoft Dynamics GP. Bank Reconciliation

Microsoft Dynamics GP. Bank Reconciliation Microsoft Dynamics GP Bank Reconciliation Copyright Copyright 2007 Microsoft Corporation. All rights reserved. Complying with all applicable copyright laws is the responsibility of the user. Without limiting

More information

General Ledger Auditing. Presented By: Jim Lee

General Ledger Auditing. Presented By: Jim Lee General Ledger Auditing Presented By: Jim Lee Table of Contents Overview... 3 Month-End Accounting Binder... 3 Month-End Accounting Checklist... 4 Trial Balance... 5 Journal Entries... 6 Account Reconciliations...

More information

Accounts Receivable WalkThrough

Accounts Receivable WalkThrough PRACTICE CS Accounts Receivable WalkThrough Version 2014.x.x TL 27675a 1/16/15 Copyright Information Text copyright 2004-2015 by Thomson Reuters. All rights reserved. Video display images copyright 2004-2015

More information

Knowledge Base. Table of Contents. Customers How Do I?

Knowledge Base. Table of Contents. Customers How Do I? Knowledge Base Table of Contents Customers How Do I? Set up a Customer?...2 Record a payment received from a customer?...5 Allocate the customer s payment to an order?...6 Deposit the customers payments?...8

More information

Table of Contents. Introduction... 1 Technical Support... 1

Table of Contents. Introduction... 1 Technical Support... 1 E-commerce Table of Contents Introduction... 1 Technical Support... 1 Introduction... 1 Getting Started... 2 Data Synchronization... 2 General Website Settings... 2 Customer Groups Settings... 3 New Accounts

More information

Sage 100 ERP 2015 Customer Upgrade Guide

Sage 100 ERP 2015 Customer Upgrade Guide Sage 100 ERP 2015 Customer Upgrade Guide This is a publication of Sage Software, Inc. Copyright 2015 Sage Software, Inc. All rights reserved. Sage, the Sage logos, and the Sage product and service names

More information

Accounts Payable System Administration Manual

Accounts Payable System Administration Manual Accounts Payable System Administration Manual Confidential Information This document contains proprietary and valuable, confidential trade secret information of APPX Software, Inc., Richmond, Virginia

More information