Hi Experts,
In the form interface, there is a table say 'Items' which has 3 field say A, B, C.
I have a text module created via tcode 'smartforms'. The text module 'T1' should have some dynamic content like 'Item number is &items-B&'.
I need to display a table on form which should look like:
| Col1 | Col2 | Col3 |
-
<items-A> | <T1> | <items-C> |
<items-A> | <T1> | <items-C> |
.....
But the text object actually need a field which has data, incase of table it should be table with index specied. E.g. &items[1]-B& I can't hardcode the index since I need the data to be populated based on current index.
Now, in the form context, should I add T1 Text field under the same node as table or outside it? Can you suggest how to solve it?
Thank you!