<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html; charset=ISO-8859-1"
 http-equiv="Content-Type">
</head>
<body text="#000000" bgcolor="#ffffff">
Hi ;)<br>
<br>
You have to look in what tag is the MARC field linked with the koha
"itemnumber" field (995 for UNIMARC and 952 for MARC21). Then you add
as much as 995 or 952 tags in your notice than you have items for a
given notice.<br>
<br>
Look how I did it with java and the marc4j library:<br>
<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; DataField ex = mf.newDataField("995", ' ', ' ');<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; if (s[11].equals(""))<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ex.addSubfield(mf.newSubfield('k', s[10]+"/"+s[4])); // Cote<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; else <br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ex.addSubfield(mf.newSubfield('k',
s[10]+"/"+s[4]+"/"+s[11]));<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ex.addSubfield(mf.newSubfield('f', "0000-"+lineId)); // barcode<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ex.addSubfield(mf.newSubfield('o', "0")); // <br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ex.addSubfield(mf.newSubfield('2', "0")); // lost?<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ex.addSubfield(mf.newSubfield('e', "Magasin")); //Localisation<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ex.addSubfield(mf.newSubfield('c', "JH")); // Localisation<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ex.addSubfield(mf.newSubfield('b', "JH")); // branch<br>
<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; result.addVariableField(ex);<br>
<br>
Hope it helps,<br>
<br>
Regards,<br>
<br>
Fred<br>
<br>
On 09/06/2010 13:30, vishnu varthan wrote:
<blockquote
 cite="mid:AANLkTimOTQQNTeybOwJI4jiGh0wrS-RgXDzts2OnImJf@mail.gmail.com"
 type="cite">Hi all,<br>
  <br>
I have book details in csv and i managed to converted into marc format
using Custom script and MARC::RECORD 2.0 Perl library.I can import
record successfully now however i could not figure out importing items
with records.<br>
  <br>
  <br>
Script i use for converting csv to marc record is hosted here <a
 moz-do-not-send="true" href="http://pastebin.com/UuAgbEFw">http://pastebin.com/UuAgbEFw</a><br>
  <br>
I would like to know what change in need to do for this.<br>
  <br>
with regards<br>
vishnuvarthan perumal<br>
  <a moz-do-not-send="true" href="mailto:vishnu@e-ndicus.com">vishnu@e-ndicus.com</a><br>
  <a moz-do-not-send="true" href="http://e-ndicus.com">http://e-ndicus.com</a><br>
  <pre wrap="">
<fieldset class="mimeAttachmentHeader"></fieldset>
_______________________________________________
Koha mailing list
<a class="moz-txt-link-abbreviated" href="mailto:Koha@lists.katipo.co.nz">Koha@lists.katipo.co.nz</a>
<a class="moz-txt-link-freetext" href="http://lists.katipo.co.nz/mailman/listinfo/koha">http://lists.katipo.co.nz/mailman/listinfo/koha</a>
  </pre>
</blockquote>
<br>
</body>
</html>