gentercz
22nd August 2003, 14:23
Hi all,
is it possible to copy a complete table def. including indexes ?
E.g.: I got a present table tdslsxxx and i would like to have a copy tdyyyzzz ?
Help greatly appreciated !
Jochen
EdHubbard
22nd August 2003, 14:50
If you mean just copy it through tools, then yes you can do it in "Maintain table definitions" ttadv4120m000 but you have to select your table and then go onto the second form (details) because the copy button is disabled on the first form(overview).
Not quite sure why Baan has programmed the session like that.
NvanBeest
22nd August 2003, 14:59
Not quite sure why Baan has programmed the session like that.The reason is that on the first form, all fields are display fields. You could mark a record and press copy, but somehow you have to enter new key fields. What they could have done is the following (did it myself in a recent project ;)):
choice.dupl.occur:
on.choice:
if form.curr=1 then
if not marked then
choice.again()
endif
to.form(2)
endif
gentercz
22nd August 2003, 15:06
thanks guys, sometimes it's SOOOOO easy ...:)
Jochen