Can we create Data window dynamically from XML in PB17.
The XML can vary hence each time it could have deferent number of elements.
Please share any example if it can be done.
Can we create Data window dynamically from XML in PB17.
The XML can vary hence each time it could have deferent number of elements.
Please share any example if it can be done.
release 12.5;
datawindow(color=1073741824 processing=1 )
header(height=80 color="536870912" )
summary(height=0 color="536870912" )
footer(height=0 color="536870912" )
detail(height=92 color="536870912" )
table(column=(type=char(10) name=column1 dbname="column1" )
column=(type=char(10) name=column2 dbname="column2" )
)
What I am looking for is how I would run through the XML to get the elements which can be added as columns in the datawindow dynamicaly.