Skip to main content
ExLibris
  • Subscribe by RSS
  • Ex Libris Knowledge Center

    How to update additonal IDs (e.g. type 05) with PLIF?

    • Article Type: General
    • Product: Aleph
    • Product Version: 20

    Description:
    We would like to update IDs with type 05 via PLIF (p_file_02) and have tried actions A and U without success. How can we for example change ID type 05 "OLDID5" to "NEWID5"?

    Resolution:
    The action U does not work in this case as the system will not find a record with value "NEWID5" for type 05.
    The action A in this case would add an additional ID with type 05 and value "NEWID5" but would not delete the old ID record. (In Aleph it is possible to have two ID records with same ID type for the same patron).

    So the best solution in this case is to first delete the previous ID (action D) and then insert the new ID (action I).

    Example for an input file for p_file_20 to update "OLDID5" to "NEWID5":

    <?xml version="1.0"?>
    <p-file-20>
    <patron-record>
    <z303>
    <match-id-type>05</match-id-type>
    <match-id>OLDID5</match-id>
    <record-action>A</record-action>
    <z303-name>Rosenberg, Theodor</z303-name>
    </z303>
    <z308>
    <record-action>D</record-action>
    <z308-key-type>05</z308-key-type>
    <z308-key-data>OLDID5</z308-key-data>
    </z308>
    <z308>
    <record-action>I</record-action>
    <z308-key-type>05</z308-key-type>
    <z308-key-data>NEWID5</z308-key-data>
    <z308-user-library></z308-user-library>
    <z308-verification>NEWID5</z308-verification>
    <z308-verification-type>00</z308-verification-type>
    </z308>
    </patron-record>
    </p-file-20>


    • Article last edited: 10/8/2013