Polaris Acquisitions. Presented by: Wes Osborn Central Library Consortium

Size: px
Start display at page:

Download "Polaris Acquisitions. Presented by: Wes Osborn Central Library Consortium"

Transcription

1 Polaris Acquisitions Presented by: Wes Osborn Central Library Consortium

2 Overview Troubleshooting NOT Training Goals and Guidelines PO Problems Invoicing Issues Rollover Recommendations Reporting Round-Up

3 Caveats and Background

4 CLC is a public library consortium

5 Our members use vendor selection tools

6 We do NOT order Shelf-Ready material

7 Goals with acquisitions

8 Why should you use acquisitions Allows you to keep all ordering information in one place Creates links between on-order: bibs, items, orders and invoices Quick overview of spending Quicker turnaround time for adding new material into the system so they can be held by patrons If properly configured, reduces the amount of final cataloging required once an item is received

9 Why NOT to use Acquisitions It seems like you should AKA peer pressure You re hoping that it will integrate with your Fiscal System When all you want is to put on-order titles in the system

10 An Overview

11 Acquisitions is NOT

12 Its better than

13 More like a

14 Terminology Fiscal Year = Holds all FUND information for a particular library. Typically only one open Fiscal Year per library system. Fund = Used to designate different spending areas for purchases: Children s, Adult, DVD, etc. All funds MUST be associated with a Fiscal year. Purchase Order = Shopping Cart of different titles that have or will be ordered by the library. Contains one or more PO line items.

15 Terminology Purchase Order Line Items = Information about individual titles that have or will be ordered. All line items MUST be associated with a Purchase Order and a Fund. Invoice = Total amount billed by the vendor. Contains one or more Invoice Line Items. Invoice Line Items = Billing information for each title order by the library. All line items MUST be associated with an Invoice.

16 Tips for newbies Start small Don t create a huge order with a bunch of different titles. Start by ordering only a few things on a single PO until you get the hang of it. Start with new titles Ordering replacement copies can add additional headaches - start by only ordering new titles. Understand the process not just the steps If you re doing something that doesn t make sense to you, step back and examine how it fits into the overall process.

17 Major steps Select the items on vendor website Download MRC file from vendor Import MRC file into Polaris Create PO from MRC file Release PO (this creates item records) Send PO via FTP (EDI step) Process invoices (Manually or via EDI) Receive lines (Manually or through ASN) Perform final cataloging on bibs and items

18 Troubleshooting PO Creation

19 Duplicate ISBNs or UPCs

20 If we de-duplicate with an existing bib we can run into problems

21 Once we import the record into Polaris, the chain with the vendor is broken

22 The chain is broken because we can add ANY bib record to a PO

23 Biggest issue is that ISBN/UPC we intended to order is not guaranteed to be ISBN/UPC that we order (via EDI) from the vendor

24 The red exclamation point of pain

25 Why does this happen? Multiple ISBNs on the bib

26 Which ISBN is selected? From the Polaris Help If a bulk-added bibliographic record contains more than one ISBN or UPC, the purchase order line item displays the most-recently added ISBN (020$a) at the top of the ISBN list (and its associated price from the 020$c in the Price box), or the most-recently added UPC in the Other number box.

27 You need to select which one you want: 225 or 221

28 Keep your ISBNs and UPCs duplicates clean to reduce the red exclamation points

29 970 tags - The Glue that holds it all together

30 Populating MARC 970 fields Typically you work with your vendor to properly populate your 970 fields 970 fields are used to create PO lines 970s are used to create on-order item records

31 Sample 970 using $h (preferred) method 970 fcml-cficcust hcficnlt lc-nlt m15 p4.99 q1 $f = Fund code to use for PO Line item $h = Template code name to use for Item Record Creation Actual Item Template Name: ON ORDER CFICNLT $l (ell) = Location code used to create destination segments and limit matching item templates to only this location $m = Material Type code - not NEEDED when using $h $p = Price for PO Line item $q = Quantity or number ordered

32 970 setup options Filtering branches for consortia SA -> Profiles -> Acquisitions / Serials -> Filter branches in line item segments Uses $l (ell) to filter the list of matching item templates to $l s parent organization No $p price information System attempts to find price in the 020 or 024 If SA option Bulk add to PO: Replace invalid fields with default data set to Yes, then default data is used

33 Creating PO lines w/970 In order to properly create PO Lines & Item records, THERE MUST be a template name that starts with ONE of the following: On-Order On Order The spelling is NOT case sensitive.

34 Creating PO lines w/970 Method 1 Use $c (collection code), $m (material type) and try to find a matching on-order item template. If there is more than one just grab the first one. Method 2 Use the $h (item template name) and match on the first 10 characters of the template name

35 Advantages of Method 2 - $h Easy to spot duplicates Just sort item templates by name Easy to make changes Change the codes being used within the template Recommendation Don t tie $h names too closely to underlying collection code or material type codes

36 970 using $h (preferred) method 970 fcml-cficcust hcficnlt lc-nlt m15 p4.99 q1 $f = Fund code to use for PO Line item $h = Template code name to use for Item Record Creation Actual Item Template Name: ON ORDER CFICNLT $l (ell) = Location code used to create destination segments and limit matching item templates to only this location $m = Material Type code - not NEEDED when using $h $p = Price for PO Line item $q = Quantity or number ordered

37 Bib Import profile should retain 970 tags

38 Problems releasing POs

39 What can go wrong: Item template doesn t match required fields Happens during PO Release step An unmatched template NOT a missing template If there was no template match it would fall back to default values The error message won t tell you the offending record

40 Unhelpful error message

41 Finding unmatched PO line items If you don t have access to SQL ask site manager SELECT seg.polineitemid,(seg.destinationorgid), li.materialtypeid, seg.destinationcollectionid, seg.itemtemplatecode FROM Polaris.POLines AS li WITH (NOLOCK) INNER JOIN Polaris.POLineItemSegments AS seg WITH (NOLOCK) ON li.polineitemid = seg.polineitemid WHERE li.purchaseorderid = NNNNN --Purchase Order ID, not number

42 Finding unmatched PO line items - SQL Result Typo OK Will use defaults PO Line Item - Correct 970 $h for Bib Linked to this line item

43 PO Line Item Find Tool - SQL Search for unmatched template codes (past 14 days) select pols.polineitemid from Polaris.polaris.POLineItemSegments pols where pols.itemtemplatecode is not null and not exists ( select 1 from Polaris.Polaris.ItemTemplates it where replace(replace(it.name, 'ON ORDER ', ''), 'ON-ORDER ', '') = pols.itemtemplatecode ) and pols.paymentstatusdate > dateadd(day, -14, getdate())

44 Change the $h and release the PO again Wrong (generated error): 970 fcml-cficcust hch1chap lc-nlt m15 p4.99 q1 Corrected (released properly): 970 fcml-cficcust hsdch1chap lc-nlt m15 p4.99 q1

45 Finding all bibs with a 970 $l (ell) of a specific organization - Bib Find Tool SQL select bt.bibliographicrecordid from polaris.polaris.bibliographictags bt join polaris.polaris.bibliographicsubfields bs on bt.bibliographictagid = bs.bibliographictagid where bt.tagnumber = 970 and bs.subfield = 'l' and bs.data = 'ORG-ABBREVIATION-CODE'

46 EDI Troubleshooting

47 What is EDI? EDI = Electronic Data Interchange, exchange of business information Not Library specific, used by other retailers and suppliers Standardized file format for placing orders and receiving order update information

48 When is EDI used? Sending Purchase Orders: This actually places the order for the items. The staff workstation performs this communication. Receiving Purchase Order Acknowledgements and Invoices: This updates your Polaris server with information that the orders have been received and or that the have shipped and you re being billed. The Polaris database server performs this communication.

49 EDI isn t particularly complex, but it is finicky

50 How does EDI information get transmitted?

51

52 Make sure your firewall allows FTP

53 Switch FTP modes (Passive vs Active)

54 Troubleshooting EDI Invoicing

55 And the #1 Problem Is...

56

57 The items show up before your EDI invoice does Three common reasons for this: 1. Vendor hasn t generated EDI file 2. Polaris server hasn t picked up and processed EDI file 3. The invoice file had the wrong information in it

58 Troubleshooting Vendor hasn t generated file: Manually log into vendor and look for file typically in an outgoing or out folder No file? Time to contact the vendor.

59 Troubleshooting files there, but no invoice: Check creation date on files

60 Troubleshoot files haven t been picked up by Polaris: Self-hosted (turnkey), increase EDI Agent frequency Job typically takes less than 5 minutes on Polaris 5.6+

61 Troubleshooting files there, but no invoice: Check supplier record, might have wrong FTP info

62 Still no invoice? You checked the supplier record You checked the vendor s FTP You checked the Polaris EDI Agent You see that an invoice file was processed

63

64 Tools for reviewing the EDI log Highly recommend downloading Notepad++ (free) Also recommend downloading EDI Notepad (Express = Free)

65 Some EDI logging information is also sent to this address

66 EDI File locations C:\ProgramData\Polaris\5.6\EDIAgent Only contains information about the most recent run for each supplier record C:\ProgramData\Polaris\5.6\EDIAgent\EdiNew Holding area for unprocessed files FTP d from supplier Typically files shouldn t be in this directory for more than a few minutes

67 EDI File locations - Continued C:\ProgramData\Polaris\5.6\Logs\SQLJobs\EdiAgent.log Details on the last run of the EDI Agent SQL Job Shows any basic connectivity errors C:\ProgramData\Polaris\5.6\EDIAgent\EdiDone All processed EDI files from vendors

68 Good luck finding the problem record

69 On of the greatest features EVER! Notepad++

70 Polaris Hosted customer? Call the vendor and ask them to regenerate the EDI invoice file and it to you directly for troubleshooting.

71 IT101 and IT111 Errors

72 NOT an ID-10T Error

73 IT101 Field Part of the EDI Invoice Assigned Identification for one item in the invoice

74 Carefully check fields follow this format The number of asterisks and the field identifiers are IMPORTANT /viewsolution.jsp?solutionid=

75 You can manually edit the file and then put it in the EdiNew folder and re-process by running the EDI Agent If manually editing the file fixes the problem, reach out to the vendor to have them correct the problem.

76 Invoices still missing?

77 Time to dig deeper

78 Reading plain EDI invoices is NOT fun

79 EDI Notepad to saves the day!

80 Using EDI Notepad

81 Using Notepad++ Locate the invoice file and make a copy

82 Open the file in EDI Notepad Make sure you re searching ALL file extensions

83 The errors can typically be ignored

84 Sender ID = Supplier SAN - Exciting!

85 Receiver ID = Branch SAN - Now we re

86 Jackpot!

87 We re still trying to find a missing invoice

88 A released PO has an EDITABLE PO Number

89 Dangers of an EDITABLE PO Number Polaris PO is created and staff assign a PO number Polaris PO is released by the staff member Order is placed via Polaris by sending EDI file Vendor processes order with PO assigned in step #1 Staff member changes PO number in Polaris Vendor ships items and creates EDI Invoice file (using PO from step #1) Polaris processes EDI Invoice file Because the PO number has been changed (step #5) the invoice doesn t match the PO number

90 EDI log error notification The SA Profile defaults were used to create INLI# 5 on Inv # An unlinked invoice line item is created using default data in the EDI Invoice Defaults profile because no matching purchase order line item was found. If a bibliographic record with a matching ISBN and title is found in the Polaris database, it is used for the title of the invoice line item. If no matching ISBN or title is found, the title is the default title in the profile, for example, No matching PO line item was found.

91 Unlinked Invoice Line Item

92 Finding unlinked Invoices - Find Tool - Invoice Link Item - SQL Search select InvLineItemID from polaris.polaris.invlines where POLineItemID is null and PONumber = PO-NUMBER-FROM-EDI-NOTEPAD --(use single quotes)

93 Exploring more with EDI Notepad

94 Confirming the PO ordered was what we wanted EDI Notepad Polaris

95 Checking the price

96 Rollover Options

97 Acquisitions rollover is a really scary process

98 There is no undo! There is no undo! There is no undo! There is no undo! There is no undo! There is no undo! There is no undo! There is no undo! There is no undo! There is no undo! There is no undo! There is no undo! There is no undo! There is no undo! There is no undo! There is no undo! There is no undo! There is no undo! There is no undo! There is no undo! There is no undo! There is no undo! There is no undo! There is no undo! There is no undo! There is no undo! There is no undo! There is no undo! There is no undo! There is no undo! There is no undo! There is no undo! There is no undo! There is no undo! There is no undo! There is no undo!

99 How do you know there is no undo, Wes?

100 Why is there no undo button? Properly dealing with $$$ (money) is difficult

101 Recommendations for rollover STOP all other system activity Take a backup OR Checkpoint Perform the rollover ONLY Carefully check the results

102 More Info: Fiscal Rollover Wednesday 1:05PM Quick Hits Theater: Jesse Jensen

103 Reporting Round-Up

104 Rollover Pre-processing report Fiscal Year/Fund Balance Select Run pre-processing reports from the Fiscal Year Rollover Utility.The Fiscal Year/Fund Balance report displays the various balances in the funds. After the utility is finished, you can run the report again to make sure that all the funds and the new fiscal year are balanced.

105 More likely to happen if you use Standing Orders When we performed the rollover the amount disencumbered from the old fund didn't match the encumbrance amount on the new fund, or what we saw on the pre-processing report. While the amount encumbered/disencumbered between fiscal years typically matches, we have seen differences if anything out of the ordinary happened in the fund transaction histories.

106 Truly encumbered amounts Custom truly encumbered amounts report Download RDL for SSRS: trueroll

107 The Vendor PAC Link Problem

108 Today, selection happens on vendor s site

109 They allow you to link to the PAC. But the PAC gives too much of the wrong kind of information and too little of the information you need.

110 Alternative option is linking to a SSRS report!

111 SSRS Benefits Accessible through the web browser Hijacking the typical vendor PAC link Allows parameters passed via the URL SSRS is included with all Polaris systems Report can be adapted for your library s needs

112 The Report CLC s SSRS item report includes information that is important to our members

113 Link to PAC Consortia & Local Holds and Items Details on Items

114 Use our RDL file as a starting point Simultaneously queries UPC and ISBN indexes SQL is embedded in the RDL file Available from:

115 The URL Understanding the different elements of the URL

116 3 Main Parts to the URL Host name and path to report (static) Library ID (static) ISBN or UPC Number (dynamic)

117 Server and path to the report wer.aspx?/polaris/custom/~tech+services/item+counts+by+isbn+or +UPC

118 Library ID (remains static) &library=replacewithorganizationidfromchart

119 ISBN or UPC Number (dynamic portion) &input=replacewithisbnorupc

120 Example URL Polaris/Custom/~Tech+Services/Item+Counts+by+ISBN+or+UPC&libra ry=23&input=

121 Vendor Setup Adding the report link on the vendor s website

122 Baker & Taylor - Title Source 360 Setup Server FQDN URL Path ISBN

123 Baker & Taylor - Title Source 3 Server FQDN URL Path ISBN

124 Midwest tapes Full URL, #ISBN# as the placeholder

125 Using the report Where to find the link on the vendor s interface

126 Using the link - Baker & Taylor Click here

127 Using the link - Brodart Click here

128 Link results Populates Library Populates ISBN

129 - This presentation & past presentations Thanks! - Supplemental Polaris documentation Wes Osborn Central Library Consortium wosborn@clcohio.org - Report definitions and screenshots

Using Evergreen s Acquisitions Module. Documentation Interest Group

Using Evergreen s Acquisitions Module. Documentation Interest Group Using Evergreen s Acquisitions Module Documentation Interest Group Using Evergreen s Acquisitions Module Documentation Interest Group Report errors in this documentation using Launchpad. Table of Contents

More information

Using Evergreen s Acquisitions Module. Documentation Interest Group

Using Evergreen s Acquisitions Module. Documentation Interest Group Using Evergreen s Acquisitions Module Documentation Interest Group Using Evergreen s Acquisitions Module Documentation Interest Group Report errors in this documentation using Launchpad. Table of Contents

More information

Loading Brief Order Records: Creating Import Profiles to Load Vendor Order Records into NZ

Loading Brief Order Records: Creating Import Profiles to Load Vendor Order Records into NZ 1 Loading Brief Order Records: Creating Import Profiles to Load Vendor Order Records into NZ Last updated 9/26/2016; Created by the YBP EOCR Record Loads in Alms Group It s important to be careful when

More information

Electronic Ordering & Invoicing with EDI - whitepaper

Electronic Ordering & Invoicing with EDI - whitepaper Electronic Ordering & Invoicing with EDI - whitepaper Questions? Contact Marin Lindsay by phone at 866-698-2231 or by email MLindsay@midwesttapes.com CVS Midwest Tape offers Electronic Ordering and Invoicing

More information

Last Updated May Acquisitions

Last Updated May Acquisitions Last Updated May 2016 Acquisitions Fund Records... 3 Order Records... 7 Holding Codes... 7 Item Types... 7 Session Settings... 8 Review All Funds Wizard... 9 Review Available Funds Wizard... 11 Add Fund

More information

All The News That Fits! What s New in Polaris 4.1

All The News That Fits! What s New in Polaris 4.1 Enter bullet text here Second level All The News That Fits! What s New in Polaris 4.1 Bill Schickling, President and CEO MidAtlantic PUG, April 20, 2012 1 1 Polaris PowerPAC Redesigned! Easier to use,

More information

Icons what they mean. - Checks the authority files. - Validates the MARC fields. - Checks for duplicates. - Place a hold.

Icons what they mean. - Checks the authority files. - Validates the MARC fields. - Checks for duplicates. - Place a hold. What to notice when looking at bibliographic record: and the mouse wheel allows for one to zoom in and out but only in the MARC display Owner most bibliographic records are owned by SHARE If owned

More information

Polaris SimplyReports Guide

Polaris SimplyReports Guide Polaris SimplyReports Guide Copyright 2012 by Polaris Library Systems This document is copyrighted. All rights are reserved. No part of this document may be photocopied or reproduced in any form without

More information

What's New in Polaris and Leap 5.2

What's New in Polaris and Leap 5.2 2016 World Headquarters 5850 Shell-mound Way Emeryville, CA 94608 +1.510.655.6200 Eastern US - New York 103 Commerce Blvd., Suite A Liverpool, NY 13088 +1.800.272.3414 Polaris Installation Note 1 New and

More information

DEVELOPED BY THE SHARE BIBLIOGRAPHIC SERVICES TEAM SPRING 2013 REVISED MAY

DEVELOPED BY THE SHARE BIBLIOGRAPHIC SERVICES TEAM SPRING 2013 REVISED MAY ITEM RECORDS DEVELOPED BY THE SHARE BIBLIOGRAPHIC SERVICES TEAM SPRING 2013 REVISED MAY 2014 Table of Contents General cataloging steps... 3 Matching... 3 General match points... 3 Creating Item Records...

More information

Holds in Polaris. Presented at: OHPUG 2014 By: Wes Osborn

Holds in Polaris. Presented at: OHPUG 2014 By: Wes Osborn Holds in Polaris Presented at: OHPUG 2014 By: Wes Osborn Topics Statistics Requests Fulfillment Troubleshooting Statistics How much of an impact are holds on the system? Statistics - Circulation Holds

More information

Repair or Trade-In? Improving Catalogs with Fresh Bibliographic Records from OCLC

Repair or Trade-In? Improving Catalogs with Fresh Bibliographic Records from OCLC Repair or Trade-In? Improving Catalogs with Fresh Bibliographic Records from OCLC John A. Whisler Eastern Illinois University April 30, 2009 Spring Forum presented by the CARLI I-Share Cataloging and Authority

More information

SQL searches in the Polaris Find Tool

SQL searches in the Polaris Find Tool SQL searches in the Polaris Find Tool These sample searches have been collected from various Polaris users. Red text in the query statements indicates that the value can/should be changed as needed. Italicized

More information

The SmartCart allows customers to change, update, view, and sort items from one neatly organized screen before purchasing.

The SmartCart allows customers to change, update, view, and sort items from one neatly organized screen before purchasing. SmartCart Guide The SmartCart allows customers to change, update, view, and sort items from one neatly organized screen before purchasing. Index Click on the topics below to jump directly to that section

More information

The Polaris Enhancement Process KELLIE CONNER, INNOVATIVE KELLY HOCK, CLC

The Polaris Enhancement Process KELLIE CONNER, INNOVATIVE KELLY HOCK, CLC The Polaris Enhancement Process KELLIE CONNER, INNOVATIVE KELLY HOCK, CLC Topics Why talk about enhancements? Overview of the Polaris enhancement process Top voted enhancements in 2013 Status of the enhancements

More information

- Evergreen Reports Training Session - Handouts. September 29, 2016 Hermiston Public Library

- Evergreen Reports Training Session - Handouts. September 29, 2016 Hermiston Public Library - Evergreen Reports Training Session - Handouts September 29, 2016 Hermiston Public Library - Handout 00 - Commonly Used Report Information Needs We use reports to answer a multitude of questions regarding

More information

Quick-Bibs De-Centralizing Item Record Entry While Maintaining Centralized Bibliographic Control. About the Finger Lakes Library System

Quick-Bibs De-Centralizing Item Record Entry While Maintaining Centralized Bibliographic Control. About the Finger Lakes Library System Quick-Bibs De-Centralizing Item Record Entry While Maintaining Centralized Bibliographic Control Finger Lakes Library System Ithaca, New York Rex Helwig 2012 MAPUG Conference About the Finger Lakes Library

More information

Using MarcEdit. Presentation for the Eastern Great Lakes Innovative Users Group, October 20, 2006 Toledo, Ohio

Using MarcEdit. Presentation for the Eastern Great Lakes Innovative Users Group, October 20, 2006 Toledo, Ohio Using MarcEdit Presentation for the Eastern Great Lakes Innovative Users Group, October 20, 2006 Toledo, Ohio This presentation came about after I found myself sending three messages in one week suggesting

More information

DoItBest EDI FTP Version

DoItBest EDI FTP Version DoItBest EDI FTP Version Doit Best Corp has 2 different file layouts and 2 different ways of receiving orders, Price Updates and Promotions Technical note: (Files should have a OC1 at the beginning of

More information

Govs e-shop Training - Requestor 11/8/2013

Govs e-shop Training - Requestor 11/8/2013 Govs e-shop Training - Requestor 1 A requestor is a person who can create and submit a cart of the needed items. The cart can be created three (3) ways. Hosted Catalog Punch-out Catalog Non-Catalog Item

More information

Reports: SQL & SimplyReports. Fall 2014

Reports: SQL & SimplyReports. Fall 2014 Reports: SQL & SimplyReports Fall 2014 General Links on BCCLS Staff page Username/Password the same as Polaris software. Statistics Page SQL Reports: Custom & Delivered http://rpts.bccs.org/reports Use

More information

E2 Shop System Beta Release Notes

E2 Shop System Beta Release Notes The purpose of this document is to provide licensed users of the E2 Shop System with the most up to date information regarding changes made in this release. If you have any questions about this update,

More information

Abort: To stop a program execution immediately, usually in the event of an error that will prevent further execution.

Abort: To stop a program execution immediately, usually in the event of an error that will prevent further execution. Commonly Used Terms Abort: To stop a program execution immediately, usually in the event of an error that will prevent further execution. Alphanumeric Code: A set of characters containing both letters

More information

CUBuyplusR. Browser s Guide

CUBuyplusR. Browser s Guide CUBuyplusR Browser s Guide This guide will review how to search for products and add them to your cart. In addition, the procedure for generating a purchase request will be outlined as well as tracking

More information

Polaris 4.1 Training. Item Record Management

Polaris 4.1 Training. Item Record Management Polaris 4.1 Training Item Record Management 1 1 3 Item records Cataloging view Circulation view Source and Acquisitions view Notes and Notices view History view Creating new item records Label Manager

More information

Serials Properties for Symphony Workflows 3.3

Serials Properties for Symphony Workflows 3.3 Serials Properties for Symphony Workflows 3.3 Last Updated August 5, 2010 Introduction... 5 In... 6 Behavior...6...7 Order for Received Issues...7 Helpers...7 Display Bibliographic Description Helper...8

More information

erequest for Beginners Contents Introduction to erequests Enter New erequest Approving Searching

erequest for Beginners Contents Introduction to erequests Enter New erequest Approving Searching erequest for Beginners http://cfaesfinance.osu.edu CFAES Business Office, Columbus Contents Introduction to erequests Enter New erequest Approving Searching 8/5/2014 1 Introduction to erequest What is

More information

Getting to Know Title Source 360

Getting to Know Title Source 360 Getting to Know Title Source 360 This tutorial is intended to provide general, basic-level training on Baker & Taylor s Title Source 360. Most likely it will be used in conjunction with web-based or onsite

More information

Online Requesting and Receiving. Training Manual

Online Requesting and Receiving. Training Manual Online Requesting and Receiving Training Manual 1 Table of Contents Introduction 3 Logging In.3 Creating a Profile...3 Modifying a Ship to Address...3 FOAPAL and Commodity Codes 3 Code Favorites...3 Understanding

More information

How to add an item with no template:

How to add an item with no template: How to add an item with no template: 1. From the Bibliographic record, choose the. 2. Fill in price, barcodes in the upper parts. Check the boxes necessary. 3. In the lower part, fill in number of items,

More information

Eclipse Business Connect XML. Release (Eterm)

Eclipse Business Connect XML. Release (Eterm) Eclipse Business Connect XML Release 8.6.4 (Eterm) Legal Notices 2008 Activant Solutions Inc. All rights reserved. Unauthorized reproduction is a violation of applicable laws. Activant and the Activant

More information

Scholastic Oracle Cloud Supplier Portal User Guide

Scholastic Oracle Cloud Supplier Portal User Guide Scholastic Oracle Cloud Supplier Portal User Guide Table of Contents Introduction to the Supplier Portal... 3 What is the Supplier Portal?... 3 Navigating the Supplier portal... 3 Logging in... 3 Homepage

More information

2010 Mid-Atlantic PUG Ask Polaris Q&A

2010 Mid-Atlantic PUG Ask Polaris Q&A 2010 Mid-Atlantic PUG Ask Polaris Q&A Q: Will we be able to enlarge the font on the staff side? Too small to read easily old eyes! A: Keep your screen resolution the same, but set your Windows operating

More information

in Wincap Fiscal Year: White Red Yellow Current Fiscal Year Previous Fiscal Year Next Fiscal Year Negative Numbers will always be in Red

in Wincap Fiscal Year: White Red Yellow Current Fiscal Year Previous Fiscal Year Next Fiscal Year Negative Numbers will always be in Red in Wincap Fiscal Year: White Red Yellow Current Fiscal Year Previous Fiscal Year Next Fiscal Year Negative Numbers will always be in Red If you have negative numbers and you are not permitted to go negative

More information

Microsoft Dynamics GP. RapidStart Services

Microsoft Dynamics GP. RapidStart Services Microsoft Dynamics GP RapidStart Services January 31, 2013 Copyright Copyright 2013 Microsoft. All rights reserved. Limitation of liability This document is provided as-is. Information and views expressed

More information

PSTL Free Tools That Can Save Your Life!

PSTL Free Tools That Can Save Your Life! PSTL Free Tools That Can Save Your Life! Shawn Dorward, InterDyn Artis @GPUG www.gpug.com info@gpug.com Meet our Presenter InterDyn Artis specializes in the implementation, service and support of Microsoft

More information

QG Interdepartmental Service Request

QG Interdepartmental Service Request QG Interdepartmental Service Request HokieMart will deliver PO Interdepartmental Service Request (ISR) The Interdepartmental Service Request (ISR) form is used to process orders to all university suppliers

More information

GetIt. User Guide. GetIt Version 1.008; GetIt User Guide Version

GetIt. User Guide. GetIt Version 1.008; GetIt User Guide Version GetIt User Guide GetIt Version 1.008; GetIt User Guide Version 1.008-2011- 05-27 Copyright, 2011, LibLime, a Division of PTFS. All rights reserved. Notice Every effort was made to ensure that this document

More information

1. From the Tyler Menu, go to Financials>Purchasing>Purchase Order Processing> Requisitions (i.e. click on requisitions)

1. From the Tyler Menu, go to Financials>Purchasing>Purchase Order Processing> Requisitions (i.e. click on requisitions) TO REQUEST A PURCHASE ORDER 1. From the Tyler Menu, go to Financials>Purchasing>Purchase Order Processing> Requisitions (i.e. click on requisitions) 2. The following screen will appear. Click New. The

More information

Title: The impact of configuration on Alma workflows Abstract: When initially setting up Alma, many decisions bear reexamining once you ve worked

Title: The impact of configuration on Alma workflows Abstract: When initially setting up Alma, many decisions bear reexamining once you ve worked Title: The impact of configuration on Alma workflows Abstract: When initially setting up Alma, many decisions bear reexamining once you ve worked with the system. Join us for a review of highlights of

More information

Scholastic Oracle Cloud Supplier Portal User Guide

Scholastic Oracle Cloud Supplier Portal User Guide Scholastic Oracle Cloud Supplier Portal User Guide Table of Contents Introduction to the Supplier Portal... 3 What is the Supplier Portal?... 3 Navigating the Supplier portal... 3 Logging in... 3 Homepage

More information

Entering an erequest. Login Page

Entering an erequest. Login Page The erequest is an easy way for an employee to submit a request for goods, services, or payments. No prior knowledge of the University procurement process is necessary for completing this online, electronic

More information

WHAT S NEW in ALEPH VERSION 22

WHAT S NEW in ALEPH VERSION 22 WHAT S NEW in ALEPH VERSION 22 March 16, 2015 1 Table of Contents Acquisitions/Serials... 3 Acquisitions Updates:...3 Serials Updates:...5 Cataloging... 7 Circulation... 12 Course Reserves... 16 Interlibrary

More information

CHAPTER4 CONSTRAINTS

CHAPTER4 CONSTRAINTS CHAPTER4 CONSTRAINTS LEARNING OBJECTIVES After completing this chapter, you should be able to do the following: Explain the purpose of constraints in a table Distinguish among PRIMARY KEY, FOREIGN KEY,

More information

What s New in 4.1 R2. Count on us.

What s New in 4.1 R2. Count on us. What s New in 4.1 R2 Count on us. Highlights from 4.1 R2 Administration/System wide PowerPAC and Mobile PAC Circulation Cataloging Acquisitions What s New in 4.1 R2 Documentation PolarisTown: http://www.polarislibrary.com/polaristown/

More information

CATALOGUING MANUAL. Summer SirsiDynix. All Rights Reserved.

CATALOGUING MANUAL. Summer SirsiDynix. All Rights Reserved. CATALOGUING MANUAL Summer 2008 2008 SirsiDynix. All Rights Reserved. Table of Contents SIRSI RECORD STRUCTURE AND DISPLAY... 1 ITEM SEARCH AND DISPLAY WIZARD... 2 CALL NUMBER AND ITEM MAINTENANCE WIZARD...

More information

Browser s Guide Contents

Browser s Guide Contents Browser s Guide Contents Browser s Guide... 1 Browser Role... 2 Logging In... 2 Contact Information... 2 My Account Settings... 2 Key Concepts... 3 Searching... 3 Supplier Searching... 3 Product Searching...

More information

This guide outlines how to Search for products/services, and send requisitions for approval to become purchase orders.

This guide outlines how to Search for products/services, and send requisitions for approval to become purchase orders. Buyer Training Guide This guide outlines how to Search for products/services, and send requisitions for approval to become purchase orders. Logging In 1. Open your web browser 2. Log into and find the

More information

Sage ERP Accpac Online 5.5

Sage ERP Accpac Online 5.5 Sage ERP Accpac Online 5.5 Integration Resource Guide for Sage ERP Accpac And Sage CRM (Updated: July 11, 2010) Thank you for choosing Sage ERP Accpac Online. This Resource Guide will provide important

More information

Esker Automated AP Program. Step-by-Step Procedure

Esker Automated AP Program. Step-by-Step Procedure Esker Automated AP Program Step-by-Step Procedure Table of Contents Scanning into Esker... 1 Reviewing/Approving AP PDF/Scanned Invoices... 1 Example of a PDF Invoice Scanned into Esker... 2 More Search

More information

Notification Tool User Guide

Notification Tool User Guide BEFORE YOU START... 1 Why Should I Use Notification Tool? 1 Hardware Requirements 2 Software Requirements 2 Network Requirements 2 How Do I Access the Notification Tool? 2 How Can I Get Support When Using

More information

Cart & Assign. 6. Enter an optional Note to the Assignee and click the Assign button.

Cart & Assign. 6. Enter an optional Note to the Assignee and click the Assign button. Revised 11/18/13 Cart & Assign Modify The Shopping Cart You may Unassign the shopping cart only until the Requester has submitted it. 1. Click the Shop icon, hover over My Carts And Orders, and click View

More information

page I Recipe for Success

page I Recipe for Success DIRECT SUPPLIER P RTAL INSTRUCTIONS page I Recipe for Success IMPORTANT Please complete short Online Tutorials and Quiz at www.supplierportal.coles.com.au/dsd Table of Contents 1 Ingredients 2 Log In 3

More information

Visual Workflow Implementation Guide

Visual Workflow Implementation Guide Version 30.0: Spring 14 Visual Workflow Implementation Guide Note: Any unreleased services or features referenced in this or other press releases or public statements are not currently available and may

More information

RESOLV EDI CONTROL. User Guide Version 9.2 for HANA PRESENTED BY ACHIEVE IT SOLUTIONS

RESOLV EDI CONTROL. User Guide Version 9.2 for HANA PRESENTED BY ACHIEVE IT SOLUTIONS RESOLV EDI CONTROL User Guide Version 9.2 for HANA PRESENTED BY ACHIEVE IT SOLUTIONS Copyright 2011-2016 by Achieve IT Solutions These materials are subject to change without notice. These materials are

More information

Fulfillment User Guide FULFILLMENT

Fulfillment User Guide FULFILLMENT Fulfillment User Guide FULFILLMENT TABLE OF CONTENTS I. System Requirements II. Logging In III. Launchpad a. Home b. Profile c. Settings IV. Dashboard Tab a. Actionable Insights b. Open Orders V. Transactions

More information

Adobe Business Catalyst

Adobe Business Catalyst Adobe Business Catalyst Adobe Business Catalyst is similar to the Content Management Systems we have been using, but is a paid solution (rather than open source and free like Joomla, WordPress, and Drupal

More information

Storefront Ordering System Demonstration Guide. Powered by

Storefront Ordering System Demonstration Guide. Powered by Storefront Ordering System Demonstration Guide Powered by Welcome to CMYK s Storefront Ordering System (SOS) The following pages will guide you through our Demo Site. We will show you many options available

More information

QSalesData User Guide

QSalesData User Guide QSalesData User Guide Updated: 11/10/11 Installing the QSalesData Software... 2 Licensing the QSalesData Product... 3 Build QSalesData fields in ACT Step 2 of Install Checklist... 4 Adding the QB Data

More information

Carroll Tire Online USER GUIDE Version 2b June 2009

Carroll Tire Online USER GUIDE Version 2b June 2009 Carroll Tire Online USER GUIDE Version 2b June 2009 Page 1 of 33 TABLE OF CONTENTS 1 WELCOME TO CARROLL TIRE ONLINE...4 1.1 ABOUT THIS GUIDE...4 1.2 WHAT CAN I DO AT CARROLL TIRE ONLINE?...4 2 CTO QUICK

More information

Hotmail Documentation Style Guide

Hotmail Documentation Style Guide Hotmail Documentation Style Guide Version 2.2 This Style Guide exists to ensure that there is a consistent voice among all Hotmail documents. It is an evolving document additions or changes may be made

More information

CREATE A BLANKET (LIMIT) REQUEST

CREATE A BLANKET (LIMIT) REQUEST CREATE A BLANKET (LIMIT) REQUEST A Blanket or Limit Request is a type of Non-Catalog Free Text request that consists of a requirement that will be delivered over a period of time. 1. From the Homepage,

More information

Best Practices for. Membership Renewals

Best Practices for. Membership Renewals Best Practices for Membership Renewals For many associations, it s easy to get caught up in the marketing efforts associated with attracting new members. But as important as membership growth is, renewal

More information

Deltek PM Compass 2.2. Custom Reports and Microsoft SQL Server Reporting Services Guide

Deltek PM Compass 2.2. Custom Reports and Microsoft SQL Server Reporting Services Guide Deltek PM Compass 2.2 Custom Reports and Microsoft SQL Server Reporting September 4, 2015 While Deltek has attempted to verify that the information in this document is accurate and complete, some typographical

More information

QuickBooks Synergy. Life Cycle of a Job in QuickBooks Overview Page 2. Getting Ready Page 3 Inventory or Non-Inventory

QuickBooks Synergy. Life Cycle of a Job in QuickBooks Overview Page 2. Getting Ready Page 3 Inventory or Non-Inventory QuickBooks Synergy Note: This Course is being demonstrated with QuickBooks Premier 2010 Contractors Edition and Minutes Matter QuickBooks & Quoting. In older versions of QuickBooks & Quoting the terminology

More information

Purchase Manager Admin Guide Basware P2P 17.3

Purchase Manager Admin Guide Basware P2P 17.3 Purchase Manager Admin Guide Basware P2P 17.3 Copyright 1999-2017 Basware Corporation. All rights reserved.. 1 Purchasing Permissions 1.1 Purchasing Permissions Overview Purchasing permissions are those

More information

Purchasing Encumbrance User Guide

Purchasing Encumbrance User Guide ICIS Purchasing Encumbrance User Guide i procurement guide for purchase requisitions 1. Logging Into ICIS...3 1.1 Introduction to Purchasing and Encumbrances...3 1.2 Controls...3 1.3 Prerequisites...3

More information

Shopper Guide v.3: 3/23/16

Shopper Guide v.3: 3/23/16 Shopper Guide v.3: 3/23/16 SMARTOCI: ADMINISTRATOR Table of Contents 1) Getting Started...4 What is smartoci?...4 Shopper Browser Versions...5 Logging in...6 Issues Logging In (smartoci Access Issues)...6

More information

The Energy Grid Powerful Web Marketing for the Alternative Energy Industry

The Energy Grid Powerful Web Marketing for the Alternative Energy Industry The Energy Grid Powerful Web Marketing for the Alternative Energy Industry The Energy Grid 105 Rt 101A, Unit 18 Amherst, NH 03031 (603) 413-0322 MCR@TheEnergyGrid.com Terms & Disclaimer: USE THIS PROGRAM

More information

PeopleSoft Requisition Creation

PeopleSoft Requisition Creation PeopleSoft Requisition Creation Purchasing > Requisitions > Add/Update Requisitions 1. Add a New Value. p. 1 2. Accounting Date p. 1 3. Requisition Defaults p. 2 4. Add Comments p. 3 5. Item Description

More information

ACQA Learner s Guide Acquisitions: Creating Monograph, Standing and Serial Orders. Table of Contents

ACQA Learner s Guide Acquisitions: Creating Monograph, Standing and Serial Orders. Table of Contents ACQA Learner s Guide Acquisitions: Creating Monograph, Standing and Serial Orders Table of Contents 1. Introduction...2 2. Pre-Order Searching, Identification and Preparation for Order...3 3. Layout of

More information

MARS 2.0. Authority Control Planning Guide

MARS 2.0. Authority Control Planning Guide MARS 2.0 Authority Control Planning Guide 4 BACKSTAGE LIBRARY WORKS 5 Step 1: Data Setup SYNOPSIS Step 1 details the setup information for transferring your bibliographic or authority records. This setup

More information

SharePoint 2010 Site Owner s Manual by Yvonne M. Harryman

SharePoint 2010 Site Owner s Manual by Yvonne M. Harryman SharePoint 2010 Site Owner s Manual by Yvonne M. Harryman Chapter 9 Copyright 2012 Manning Publications Brief contents PART 1 GETTING STARTED WITH SHAREPOINT 1 1 Leveraging the power of SharePoint 3 2

More information

Placing Order from the Catalogs:

Placing Order from the Catalogs: Placing Order from the Catalogs: 1. Choose the Mechanical Solutions or the Controls & Instrumentation Tab. 2. Pick a category and drill down to a specific item. 3. Click on the item number to see the following

More information

GENERAL LEDGER STANDARD JOURNAL ENTRY. 3. Procedure In the Financial Management dropdown, select the Journals function in the Journals submenu.

GENERAL LEDGER STANDARD JOURNAL ENTRY. 3. Procedure In the Financial Management dropdown, select the Journals function in the Journals submenu. Procedure # GL - 1 General Ledger Standard Journal Entry Created By Emily Krambs 7/20/09 Revised By Donald Hein 1/8/14 Approved By GENERAL LEDGER STANDARD JOURNAL ENTRY 1. General Journal entries are used

More information

LEAP MANUAL AN OVERVIEW ON THE PUBLIC SERVICES/FRONT DESK FUNCTIONS IN POLARIS LEAP

LEAP MANUAL AN OVERVIEW ON THE PUBLIC SERVICES/FRONT DESK FUNCTIONS IN POLARIS LEAP LEAP MANUAL AN OVERVIEW ON THE PUBLIC SERVICES/FRONT DESK FUNCTIONS IN POLARIS LEAP MARCH 2018 MARIGOLD POLARIS LEAP MANUAL Last Update: March 2018 This manual provides an overview on the public services/front

More information

CORAL Resources Module User Guide

CORAL Resources Module User Guide CORAL Resources Module User Guide About CORAL Resources A component of Hesburgh Libraries locally developed ERM, CORAL Resources aids in the management of the electronic resource workflow from the initial

More information

Entering an erequest for Stores

Entering an erequest for Stores The erequest is an easy way for an employee to submit a request for products available from Stores. No prior knowledge of the University procurement process is necessary for completing this online, electronic

More information

Entering an erequest. Login Page

Entering an erequest. Login Page The erequest is an easy way for an employee to submit a request for goods, services, or payments. No prior knowledge of the University procurement process is necessary for completing this online, electronic

More information

Start by searching the catalog to see if your item is already in the system

Start by searching the catalog to see if your item is already in the system Cataloging Manual for Koha Version 3.0 (stable) 1. Adding Records Instructions for original and copy cataloging. Cataloging in Koha can be done one of two ways. This manual will explain how to use the

More information

3096 Temple Ave Pomona, CA Tel: Fax: Website:

3096 Temple Ave Pomona, CA Tel: Fax: Website: NETcellent s Sales Order Import For ELLIOTT VERSION 7.4x From NETcellent System, Inc. 3096 Temple Ave Pomona, CA 91766 Tel: 909.622.5009 Fax: 909.622.5119 E-mail: sales@netcellent.com Website: www.netcellent.com

More information

BEFORE YOU BEGIN You will need to know what you would like to order, the vendor, and the General Ledger (G/L) account to charge to.

BEFORE YOU BEGIN You will need to know what you would like to order, the vendor, and the General Ledger (G/L) account to charge to. Shopping Cart: Create a DRUG Order Use this Job Aid to: Learn how to place an order for pharmaceuticals in SAP BEFORE YOU BEGIN You will need to know what you would like to order, the vendor, and the General

More information

MAGENTO BOF: BASIC USER GUIDE NCT IT

MAGENTO BOF: BASIC USER GUIDE NCT IT MAGENTO BOF: BASIC USER GUIDE 2013.07.04 NCT IT MAGENTO BOF: ACCESS LEVELS WHO CAN MAKE ORDERS? The new Branch Order Form does away with order approval and uses a stricter access system instead. As long

More information

CATERING REQUISITIONER REFERENCE GUIDE

CATERING REQUISITIONER REFERENCE GUIDE CATERING REQUISITIONER REFERENCE GUIDE In order to automate the processing of invoices and payments for catered events, all catered events must have a purchase requisition and a receiving created. Note

More information

Document Imaging User Guide

Document Imaging User Guide Release 4.9 IMAGING TECHNOLOGY GROUP Document Imaging Systems Document Imaging User Guide IMAGING TECHNOLOGY GROUP IMIGIT tm Document Imaging User Guide Release 4.91 March 2007 Imaging Technology Group

More information

Internet Web Site:

Internet Web Site: 1 Internet Web Site: www.reliableparts.com Click on Canadian Online Ordering To sign on: User ID = your account number -- Password = "Your assigned password" Note: A one time set up to change your browser

More information

University of North Carolina User Guide

University of North Carolina User Guide University of North Carolina User Guide June 2006 The software described in this document is furnished under a license agreement. The software may be used or copied only in accordance with the terms of

More information

Product Manager Toolkit

Product Manager Toolkit Last update: 2017/10/20 09:32 magento_1:product_manager_toolkit https://amasty.com/docs/doku.php?id=magento_1:product_manager_toolkit For more details see the Product Manager Toolkit extension page. Product

More information

GL Reports Encumbrances

GL Reports Encumbrances The GL Encumbrance report provides detail information about outstanding encumbrances for GL accounting information. The data in the report is cumulative and shows data as of the ending date chosen from

More information

Before you dive into learning how to use Sage Timeslips, performing a

Before you dive into learning how to use Sage Timeslips, performing a In This Chapter Chapter 1 Set ting Up Sage Timeslips Reviewing the billing process in Sage Timeslips Creating a database Setting preferences Understanding the restrictions for network users Before you

More information

Requisitioner Training Manual

Requisitioner Training Manual Requisitioner Training Manual Larry McWilliams Procurement Department lmcwilli@kent.edu Revised December 2018 0 Introduction The purpose of this training guide is to familiarize the user with FlashCart,

More information

Falcon s Purch Guide REQUESTORS AND SHOPPERS. 1 Revised 7/16/18

Falcon s Purch Guide REQUESTORS AND SHOPPERS. 1 Revised 7/16/18 Falcon s Purch Guide REQUESTORS AND SHOPPERS 1 Table of Contents General Shopping & Requisitions... 3 Punchout, Hosted Catalogs and Non-catalog Items... 3 Splitting Between Multiple Budgets... 4 Foundation

More information

***** Archive and Backup your Data before updating***** ****Ensure that you are running a minimum version of before updating****

***** Archive and Backup your Data before updating***** ****Ensure that you are running a minimum version of before updating**** Alexandria 6.22.1 Release Notes Build 20130220 =========================================================== Please contact COMPanion at 1-800-347-6439 or COMPanion Technical Support at 1-800-347-4942 with

More information

WILIUG 2016 Lightning Round Diving into SkyRiver July 8, 2016

WILIUG 2016 Lightning Round Diving into SkyRiver July 8, 2016 The Waukegan Public Library dove right into SkyRiver! In June of 2015, we went live, and less than a month later, our contract with OCLC ended. Now a year has passed, and we re swimming along just fine.

More information

Administrator There is one administrator for each account with responsibility for Administration.

Administrator There is one administrator for each account with responsibility for Administration. Glossary Please note this Glossary is a list of terms commonly used throughout OASIS and not intended to capture procedures. For procedural information relating to a particular term please refer to the

More information

Your Cart User Manual v3.6

Your Cart User Manual v3.6 Your Cart User Manual v3.6 2 Your Cart User Manual v3.6 Table of Contents Foreword 0 7 Part I Getting Started Overview 11 Part II Categories & Products 1 Manage Categories... Overview 11 Add a New... Category

More information

UNIVERSITY OF NEW MEXICO FIN PU-101 Purchasing Processes for Departments Lab. Participant Guide

UNIVERSITY OF NEW MEXICO FIN PU-101 Purchasing Processes for Departments Lab. Participant Guide 0 UNIVERSITY OF NEW MEXICO FIN PU-101 Purchasing Processes for Departments Lab Participant Guide Version 3.0 11/02/2010 Table of Contents Confidentiality and Sensitive Information 2 Course Pre-requisites

More information

SedonaOffice Users Conference. San Francisco, CA January 21 24, Sedona . Presented by: Jim Mayes Carolyn Johnson

SedonaOffice Users Conference. San Francisco, CA January 21 24, Sedona . Presented by: Jim Mayes Carolyn Johnson SedonaOffice Users Conference San Francisco, CA January 21 24, 2018 SedonaEmail Presented by: Jim Mayes Carolyn Johnson This Page Intentionally Left Blank Page 2 of 50 Table of Contents Overview... 4 What

More information

VEDATRAK CRM 3.0. User Guide

VEDATRAK CRM 3.0. User Guide VEDATRAK CRM 3.0 User Guide 2 (C) 2006-2012 SUI SOLUTIONS Ltd. All rights reserved. 3 Contents Overview...9 System Requirements...12 Installation Notes...13 Vedatrak Basics...14 User Roles...14 System

More information

TUTORIAL FOR IMPORTING OTTAWA FIRE HYDRANT PARKING VIOLATION DATA INTO MYSQL

TUTORIAL FOR IMPORTING OTTAWA FIRE HYDRANT PARKING VIOLATION DATA INTO MYSQL TUTORIAL FOR IMPORTING OTTAWA FIRE HYDRANT PARKING VIOLATION DATA INTO MYSQL We have spent the first part of the course learning Excel: importing files, cleaning, sorting, filtering, pivot tables and exporting

More information