Hi Sandeep,

On the 2nd point regarding populating the company name on the user records, can you share if the below way is the right way to do it or is there any other way suggested. The count still shows 0.. Thanks

Catalog client script:

function onLoad() {
var ga = new GlideAjax('getaccount');
ga.addParam('sysparm_name', "getaccount");
ga.getXMLAnswer(function(answer) {
g_form.setValue("account", answer);//account catalog variable name
});

}