Forum Discussion
Anonymous
2 years agoNot applicable
Visualizing BOM with a tree visual
Hello, I have an issue about displaying the BOM in a tree view. My data has the following shape : Product ProductComponent ProductA Comp1 ProductA Comp2 ProductB Comp1 ...
PhilipTreacy
2 years agoSuper User
Hi Anonymous
Please explain what you mean by "it doesn'rt deal with recusive BOM". Show an example of this 'recursion'.
Regards
Phil
Anonymous
2 years agoNot applicable
Hello PhilipTreacy ,
By recursion I mean that in the same column, I have many level of depth.
I don't have a column for each depth level.
For example :
| Product | ProductComponentLevel1 | ProductComponentLevel2 | ProductComponentLevel3 | ProductComponentLevel4 |
| ProductA | Comp1 | |||
| ProductA | Comp2 | Comp1 | ||
| ProductB | Comp3 | Comp2 | Comp0 | |
| ProductB | Comp4 | Comp1 | Comp3 | Comp0 |
Such a representation could be easily used in a tree representation. But instead I have :
| Product | Component |
| ProductA | Comp1 |
| ProductA | Comp2 |
| Comp2 | Comp1 |
| ProductB | Comp3 |
| ProductB | Comp4 |
| Comp3 | Comp2 |
| Comp3 | Comp0 |
| Comp4 | Comp1 |
| Comp4 | Comp3 |
| Comp4 | Comp0 |