Approving field is empty

a2gupta
Giga Contributor

Hi,

 

Capture1.PNG                                                                                                                                            

I noticed today that in some of the approval records generated, the Approving field is coming empty in some cases,which is stopping the approvers from getting info by clicking the approving field. I also noticed that for all the records in which Approving field is empty,the Source Table field is also coming empty. What could be the reason for this? and possible ways to counter this problem?

Thanks,

1 ACCEPTED SOLUTION

Kalaiarasan Pus
Giga Sage

Adding a custom business rule such as this will solve the issue (Sample from my instance)



if(current.sysapproval.sys_class_name=='sc_req_item')


  {


  current.document_id=current.getValue('sysapproval');


  current.source_table=current.sysapproval.sys_class_name;


}


View solution in original post

10 REPLIES 10

byrne_p_kevin
Tera Contributor

Hi, Kalai.

I just used this to solve a similar issue. Many thanks.

Regards,

Kevin