Unable to populate fields information using flow designer

reddy8055
Tera Contributor

Hi, 

We are using "Register a business application" flow designer and we have created additional fields on the record producer to populate into business application table. I am not able to insert and populate the new fields. All it is updating the fields is OOTB ones. Below highlighted three are custom fields added on to the form and not able to populate those fields.

reddy8055_0-1667583654981.png

Thanks,

 

3 REPLIES 3

Saurav11
Kilo Patron
Kilo Patron

Hello,

 

Please check the below thread for the same:-

 

https://www.servicenow.com/community/developer-forum/flow-designer-not-able-to-populate-a-field/m-p/...

 

Please mark my answer as correct based on Impact.

Hi,

I am trying like the below like other OOTB field values used.

 

var gr = new GlideRecord('question_answer');
gr.addQuery('table_sys_id', fd_data.trigger.current.sys_id);
gr.addQuery('question', '4d4ce1321b2a9550c21bbaebcc4bcb4f');
gr.query();
if(gr.next()) {
return gr.getValue('value');
}
return ''; 
 
Thanks,

Hi,

Can anyone help me on this? I am unable to populate custom fields information to business apps table.

Thanks