Re: [OPEN-ILS-GENERAL] Reports - Simple Record Extracts

2018-01-02 Thread Josh Stompro
Hello Eva, I worked on a change to the Simple Record Extracts recently which was included in the 3.0 release, so I panicked when I saw your message, but then saw that you are not on 3.0. Even though I don’t think I caused the problem, it is fresh in my mind so here are some suggestions. The

[OPEN-ILS-GENERAL] 2017 Evergreen Community Survey

2018-01-02 Thread Kathy Lussier
Hi all, Happy New Year! Now that 2017 is behind us, the Evergreen Outreach Committee is beginning to gather highlight the year’s activities for the 2017 annual report. We are asking Evergreen libraries and consortia to respond to our annual community survey. The survey is essential for

Re: [OPEN-ILS-GENERAL] unAPI from getAttribute in WWW/SuperCat.pm?

2018-01-02 Thread Daniel Wells
Thanks for the additional information. Yeah, if you are limited to communicating via Z39.50, then your options are going to be much more confined. I don't think your strategy here is off track. Hopefully others using Z39.50/SRU more regularly can chime in if another path seems better. It looks

Re: [OPEN-ILS-GENERAL] unAPI from getAttribute in WWW/SuperCat.pm?

2018-01-02 Thread John Merriam
Hi Dan. Yes, 'copy_id' is what I was looking for. Thank you so much for that! We need to have the id from the asset.copy table in the 852 subfield f of our Z39.50 output for our holdings. I'm not sure exactly why but it is my understanding that certain vendors that we work with need it

Re: [OPEN-ILS-GENERAL] unAPI from getAttribute in WWW/SuperCat.pm?

2018-01-02 Thread Daniel Wells
Hello John, This part of the code is pulling data from the unapi.bre() function in the DB, so in this case, you want 'copy_id', i.e.: ... f => $copy->getAttribute('copy_id'), ... This said, I think we'd all be interested to know exactly what you are trying to accomplish, as there are other

[OPEN-ILS-GENERAL] unAPI from getAttribute in WWW/SuperCat.pm?

2018-01-02 Thread John Merriam
Hello. I am working in the perl module WWW/SuperCat.pm and trying to get the id of a row in asset.copy. For some reason I am getting back what looks like an unAPI URI instead of just the id of the row. I've been staring at this for a while and not sure why this is happening or the best way