on 2016 Sep 15 6:01 PM
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.
Request clarification before answering.
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.