Can a parent and child in a list have the same code?
Best Answer
-
No, a Child and Parent cannot have the same code. It will throw an error.
Suppose we have a list named Check,
One of its member names is A and its Code is 20. Now, I insert a child named B and Try to put the same code it will throw an error
" Setting the code of 'B' to '20' is not permitted
'20' clashes with the code of List Member 'A'0
Answers
-
Hi @sagarkpr ,
It is not recommended to have similar codes for both parent and child lists. Though you can technically go to the backend and type/modify codes of parent or child lists to have similar codes, it will fail when you load list through imports or while adding items to the list.
Cheers!
0