cancel
Showing results for 
Search instead for 
Did you mean: 

How to add the custom field to the Sub Agreement in CLM

gopalarao_p
Explorer
0 Kudos
109

Hi Gurus,

We need to add the standard field payment terms to under one customized tab "AGRCUS" and it should replicate what ever the value selected in the standard payment types it should update in that custom tab .

Regards,

Gp.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Gopal,

If I understood correct, you would like to create a new extension filed in a customized tab and populate the PayTerm value in it.

For this, you can create new extension filed,

Data  type : Object Reference

Object Reference : Payment Term

add the following lines in sub agreement validation script.

if(hasValue(doc.getPayTermsRef()))

{

doc.getExtensionField("your Extension Filed").set(doc.getPayTermsRef());

}

Hope this would help you.

Thanks

Krish

Answers (0)