function displayRequirementDetails {
var headerList =["displayName":"RM System ID","displayName":"RM System ID","displayName":"RM System ID","displayName":"RM System ID","displayName":"RM System ID"];
var headerHtml = '';
var dataHtml = '';
for(i in headerList){
headerHtml +="<th>" + headerList[i].displayName + "</th>";
}
$('#reqTableHeader').append(headerHtml);
for(i in headerList){
dataHtml+='<td>' + headerList[i].displayName+"111" + '</td>'
}
$('#reqTableBody').append(dataHtml);
$('#dialogForRequirementSearch').modal('show');
}