Skip to main content
Solved

Roles and Type of Relations in Business Account


kristianharianja
Semi-Pro I
Forum|alt.badge.img+3

Hello,

How do I customize the behavior of Role and Type under Relation tab of Business Account? I add new role via Automation Steps below but how can I default a Type based on Role selected? For example if IT Consultant is selected in Role the default Type is Prospect.

 

 

Best answer by Naveen Boga

Hi @kristianharianja,

We can achieve this by having small customization. Based on the ROLE, we have default a type.

Please find the customization code below.


        public class BusinessAccountMaintExt : PXGraphExtension<BusinessAccountMaint>
        {
            protected virtual void CRRelation_TargetType_FieldDefaulting(PXCache sender, PXFieldDefaultingEventArgs e, PXFieldDefaulting InvokeBaseHandler)
            {
                InvokeBaseHandler?.Invoke(sender, e);
                var row = (CRRelation)e.Row;
                if (row == null) return;

                if (row.Role == "ITConsultant")
                {
                    e.NewValue = "Prospect";
                }
            }
        }

Hope this helps!!

View original
Did this topic help you find an answer to your question?

2 replies

Naveen Boga
Captain II
Forum|alt.badge.img+19
  • Captain II
  • 3410 replies
  • Answer
  • May 7, 2021

Hi @kristianharianja,

We can achieve this by having small customization. Based on the ROLE, we have default a type.

Please find the customization code below.


        public class BusinessAccountMaintExt : PXGraphExtension<BusinessAccountMaint>
        {
            protected virtual void CRRelation_TargetType_FieldDefaulting(PXCache sender, PXFieldDefaultingEventArgs e, PXFieldDefaulting InvokeBaseHandler)
            {
                InvokeBaseHandler?.Invoke(sender, e);
                var row = (CRRelation)e.Row;
                if (row == null) return;

                if (row.Role == "ITConsultant")
                {
                    e.NewValue = "Prospect";
                }
            }
        }

Hope this helps!!


kristianharianja
Semi-Pro I
Forum|alt.badge.img+3

Thank you!


Reply


Cookie policy

We use cookies to enhance and personalize your experience. If you accept you agree to our full cookie policy. Learn more about our cookies.

 
Cookie settings