FreeMarker get String convert to JSON ,Iterate through it ,Print Values In Table

PHOTO EMBED

Mon May 30 2022 07:15:28 GMT+0000 (Coordinated Universal Time)

Saved by @mdfaizi #java

<#assign use =record.custbody1?eval>
    
    <#list use?keys as prop>
  
    ${use[prop].ur}
</#list> 

      
 
<table class="itemtable" style="width: 100%; margin-top: 10px;"><!-- start items --><#list use?keys as item><#if item_index==0>
<thead>
	<tr>
      
      
	<th colspan="12" style="width: 195px;">&nbsp;</th>
	
	<th align="right" colspan="4" style="width: 67px;">${"a"}</th>
	<th align="right" colspan="4" style="width: 65px;">${"b"}</th>
	
	</tr>
</thead>
</#if><tr>
	<td align="center" colspan="3" line-height="150%" style="width: 61px;">${record.revrecenddate}&nbsp;&nbsp;</td>
  
	
	
	<td align="right" colspan="4" style="width: 67px;">${use[item].ur}</td>
	
	</tr>
	</#list><!-- end items --></table>
content_copyCOPY

Full Working eval,key,