GertW wrote:no, it does not. does this have anything to do with the modifications I did in import.inc.php in the RIS TO REFBASE section (see previous posting). I have outcommented the "ID" => "call_number"?
If you uncomment again the "ID" => "call_number" mapping (in function 'risToRefbase()' in file 'import.inc.php') the contents of the Bookends 'User1' field should get exported to the refbase 'call_number' field when importing records directly from Bookends via the Refs > "Upload To Refbase" menu command.
GertW wrote:where should I then put my User1 information (aka 'Label')? Any suggestions? I think we are using Bibutils v.3.37.
If you want to manually export records from Bookends as RIS and transfer your contents from the Bookends 'User1' field to the refbase 'call_number' field, then you could do either of the following:
- Edit your Bookends RIS exporter so that it outputs contents from the 'User1' field to the RIS 'ID' tag. By default, refbase imports contents of the RIS 'ID' tag to its 'call_number' field.
Or, alternatively:
- Edit your Bookends RIS exporter so that it outputs contents from the 'User1' field to the RIS 'U4' tag (or any other user definable RIS tag except 'U1')
- Then, edit function 'risToRefbase()' in file 'import.inc.php' so that it has a mapping of "U4" => "call_number". Btw, you don't need to comment the "ID" => "call_number" mapping, since tag mappings higher up in the mappings array get overwritten by any subsequent mappings to the same refbase field (unless the RIS tags are also specified in '$tagsMultipleArray' in which case the info will get merged).
Hope this helps, Matthias