New “replace string” parameter for fix_doc_do_file_08

Slides:



Advertisements
Similar presentations
2015/6/301 TransCAD Managing Data Tables. 2015/6/302 Create a New Table.
Advertisements

Grep, comm, and uniq. The grep Command The grep command allows a user to search for specific text inside a file. The grep command will find all occurrences.
Importing Data to Excel. Suppose you have a delimited* text file and you need to bring it into Excel. Follow these steps… *Delimited means text separated.
V. 21. new fix_doc_notes fix routine (downgraded to version 20 RC 3513) Yoel Kortick Aleph Support Manager.
How to sort the “Order Information report” from the service “Print Acquisitions Records acq-03” Yoel Kortick.
How to create a prompt in an Alma Analytics report Yoel Kortick | Senior Librarian.
How to Open a New Language in Web OPAC for Testing Web Screens Presenter: Yoel Kortick.
1 Audible Alert for Return Item on Hold rep_ver in V20 Yoel Kortick Aleph Support Manager.
Examples of UTF compliance in version 20.1 Yoel Kortick Aleph support manager.
V. 21. Automatic LKR field creation from item. Rep_ver and Yoel Kortick Aleph Support Manager.
V. 21. Controlling and limiting the creation of photocopy and hold requests according to “service hours”. Rep_Ver Yoel Kortick.
1 Controlling directionality with Unicode Characters Yoel Kortick Aleph Support manager.
V. 21. Improvements to the PC – Server transactions log available for viewing via the GUI Rep_ver Yoel Kortick.
Full text indexing of multi character PDF documents as ADAM digital objects. V18 RC 2089 This presentation applies to Version 18 and up Presenter: Yoel.
1 Yoel Kortick Senior Librarian Adding a local Electronic Collection.
How to send Serial claims to vendor (Batch) Version 16 Yoel Kortick.
Yoel Kortick Circulation Request Refusal Version 21 rep_ver #
1 Designing and using normalization rules Yoel Kortick Senior Librarian, Ex Libris.
Aleph Publishing services with a special focus on PRIMO-FULL and PRIMO-AVAIL version 18 Presenter: Yoel Kortick.
1 Yoel Kortick Senior Librarian Alma Product Management Mapping the bibliographic call number to the holding record call number.
Using home made fix procedures for non Latin characters Yoel Kortick.
Merge Rules and Routines
1 RDA in Aleph 500 Version 21 Yoel Kortick. Aleph support manager Nov
Validation Check Version 21 rep_ver # Yoel Kortick.
Update Item Records (manage-63)
SMS Messaging in Aleph 500 Version 20 and up
Ori Miller, Aleph Support Manager
New service, p-ret-adm-03 (Advanced General Retrieval Form) Version 21 rep_ver # Yoel Kortick Alma Global Support Manager
Defining and using an external search profile with multiple targets for copy cataloging Yoel Kortick Senior Librarian Alma Product Management.
ILL2 with partner type Aleph
Log for Patron Record Changes
How to change default item status after binding
How to add a non-Analytics widget to the Alma Dashboard
Rep change 1590 (ver 18) Access to Google books
using non-Cobol programs
Using character conversion to display non standard Unicode values
Presenter: Yoel Kortick
How to make a bibliographic base of records with attached ADAM digital objects Yoel Kortick October, 2007.
Version 20 Feature Developments
How to add a fix procedure for copy cataloging from a Z39.50 base
MARC extensions Yoel Kortick | Senior Librarian
Digital Assets Module Services adam-01 and adam-02 versions 17 and up
Yoel Kortick Senior Librarian
Check_circ_14_a for LOAN RC 2042 in V20
Creating links from an Alma Analytics report to an external web page
How to Define Separate Order Counters for Separate Sub-Libraries
System Administration Management
The Z00T “View record history” (rep_ver version 20) EPUG-UKI Conference 2010 British Library, Nov. 1-2 Yoel Kortick.
How to change default item status after binding version 16 and up
Aleph Restful APIs Yoel Kortick January 2010.
Publishing Course Readings to PRIMO Version 20
Presenter: Yoel Kortick
Real-Time Acquisition (RTA) integration with OASIS platform
Yoel Kortick Aleph Support Manager
Introduction This presentation will show two ways of making a report of newly acquired records: Via services Retrieve Catalog Records (ret-01) and Print.
Addition of new filters to cash-06
Interoperability Between Aleph and Primo: Aleph Restful APIs
Metadata Editor Introduction
Cataloging introductory flow
Upload and Download files via GUI
Yoel Kortick Senior Librarian Alma Product Management
Parallel_words in versions 18, 19 and 20
Presenter: Yoel Kortick
Yoel Kortick Senior Librarian
Yoel Kortick Senior Librarian
Click ‘browse’ to search your device for
Three methods of activating electronic collections in the consortial environment Yoel Kortick. Senior Librarian
Designing and Using Normalization Rules
Indication rules and set filtering
Real-Time Acquisition (RTA) integration with OASIS platform
Presentation transcript:

New “replace string” parameter for fix_doc_do_file_08 Version 21 rep_ver #017548 Yoel Kortick

Agenda Introduction Configuration Example Unlike our competitors, we did not release a new revolutionized system every few years but rather took the evolutionary approach

Introduction Purpose of Enhancement: The difference between this new operation code and the existing REPLACE-STRING operation code is that REPLACE-STRING is hardcoded to use the comma character as a delimiter between the source string and the target string. Thus it was not possible to use the REPLACE-STRING operation to replace a comma with something else. The new operation code will give the library the option to choose the delimiter type. Unlike our competitors, we did not release a new revolutionized system every few years but rather took the evolutionary approach

Introduction Description: A new operation code - "REPLACE-STRING-GENERAL" - has been added to the set of operation codes available for the "fix_doc_do_file_08" fix program. This operation code will give the library the option to replace a string in a document field with another string. Unlike our competitors, we did not release a new revolutionized system every few years but rather took the evolutionary approach

Agenda Introduction Configuration Example Unlike our competitors, we did not release a new revolutionized system every few years but rather took the evolutionary approach

Configuration For example, in the following setup the text Yoel, will be replaced with Yoel; in field 900 The delimiter is a dollar ! 2 3 4 5 6 7 8 9 !-!!!!!-!!-!-!!!-!!!-!!!!!-!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!-!!!!!!!!!!!! 1 900## REPLACE-STRING-GENERAL $Yoel,$Yoel; Unlike our competitors, we did not release a new revolutionized system every few years but rather took the evolutionary approach The first position in column 9 determines what the delimiter will be. In this case it is a dollar.

Configuration Here is the $data_tab/import/ file yoelk@il-aleph07(a21_1) USM01> tail -1 $data_tab/import/comma_to_semic 1 900## REPLACE-STRING-GENERAL $Yoel,$Yoel; yoelk@il-aleph07(a21_1) USM01> Here is the $data_tab/ file yoelk@il-aleph07(a21_1) USM01> grep COMMA $data_tab/tab_fix COMMA fix_doc_do_file_08 comma_to_semic yoelk@il-aleph07(a20_3) USM01> Unlike our competitors, we did not release a new revolutionized system every few years but rather took the evolutionary approach Here is the $data_root/pc_tab/catalog/ file yoelk@il-aleph07(a21_1) USM01> grep COMMA $data_root/pc_tab/catalog/fix_doc.eng COMMA N L Change Yoel, to Yoel; in 900 yoelk@il-aleph07(a21_1) USM01>

Agenda Introduction Configuration Example Unlike our competitors, we did not release a new revolutionized system every few years but rather took the evolutionary approach

Example Here is our sample record with 900 field which includes “Yoel,” Unlike our competitors, we did not release a new revolutionized system every few years but rather took the evolutionary approach

Example Now we run the fix procedure which we built which uses the new REPLACE-STRING-GENERAL Unlike our competitors, we did not release a new revolutionized system every few years but rather took the evolutionary approach

Example The change has been made Unlike our competitors, we did not release a new revolutionized system every few years but rather took the evolutionary approach the text Yoel, has been replaced with Yoel; in field 900

Yoel.Kortick@exlibrisgroup.com