Question Buffer copy

lkeller

New Member
When doing a buffer copy to create a new record do I need to exclude the rowpointer in the copy?

example:
create b-icsw.
buffer-copy icsw except cono whse to b-icsw.
 
If you mean by rowpointer the unique id of the row then yes you will to exclude it otherwise you have an error about unique id of your record
 
You can also assign it directly in the buffer-copy
create b-icsw.
buffer-copy icsw to b-icsw Assign b-icsw.uniq_id = New-Uniq_id
b-icsw.cono = XXXXX
b-icsw.whse = YYYYY.
 
Top