Copy a view

Have a DB with only one group. This group contains 100 documents.
Want to copy the left hand panel in vertical split view, where all the titles of these documents are listed and to make a sheet with these titles as one of its entries.
However, unable to copy/paste to do this (will not paste).
How could this task be managed?
Guess simple answer but ran out of ideas.
Thanks,
Tomas

That’s not possible, you have to use a simple script for this task:


tell application "DEVONthink Pro"
	set theSelection to the selection
	set theSheet to create record with {name:"Sheet", type:sheet}
	repeat with theItem in theSelection
		set theName to name of theItem as string
		create record with {name:theName, type:form} in theSheet
	end repeat
end tell

Mr. Grunenberg,
Tks vmuch!
rgds,
tomas