So, in spirit of me not breaking anything.....
I am doing a Navigation DCR, that is to be put into a DB, really only the 2nd level data.
I have TS 6.7.1, OD 6.2, Win2K, and SQL Svr, using XML style templates.
In a simple case, my DCR looks like:
[html]
Level1
1
Level2
1
/some/path/
Level2a
2
/some/path/
Level1a
2
Level2b
3
/some/path/
Level2c
4
/some/path/
[/html]
My table is set with Title (=Name in DCR), Link (=URL), CategoryID (PrimaryKey), and ClassificationID (basically the parent). Only CategoryID is required. When I trim it down to 1 replicant and set is_replicant="no" then it works. Trying to insert multiple SubCategories into differing rows is failing
my deployment config attribute maps:
[html]
[/html]
It fails with this:
DBD: ERROR:Value(s) for PK column [CategoryID] missing in [templatedata\Admin\NavigationMenu\data\en-US\NavigationMenu.xml].
DBD: ERROR:Exception occured: Value(s) for PK column [CategoryID] missing in [templatedata\Admin\NavigationMenu\data\en-US\NavigationMenu.xml].
DBD: ERROR:
com.interwoven.dd100.dd.InvalidSourceTupleException: Value(s) for PK column [CategoryID] missing in [templatedata\Admin\NavigationMenu\data\en-US\NavigationMenu.xml]
but it did find the CatID (higher in the log):
Root/0/Category/0/SubCategory/0/CategoryID/0=1,
Tips/Pointers/RTFMs greatly appreciated.