Display Process Name

I would like to display the smmOpportunityTable.Processnam on the SalesQuotationTable form.

Could you tell me the easiest way of displaying (no edit etc) this informaiton.

Many thanks

Phil

Hello friend,

Please follow these steps.

  1. Create the follwing method in SalesQuotationTable Table → Methods- new method()

display smmOpportunitySalesProcess processName()
{
return smmOpportunityTable::find(this.opportunityId).ProcessName;
}

  1. Goto to SalesQuotationTable Form add this display method to design where you required to show it.

Hope this will help you. Let me know if you still required any help. :slight_smile:

That is brilliant Prasan, many thanks.