Hello Everyone,
We need to include the Appointment's Customer name in the recently viewed list. We can put the customer's name in Line 1, but we need it in the title header next to the Appointment Nbr.

We have added the customer field on the PXSearchable Attribute like below but it is not working. Also we have performed rebuild index process on Rebuilt Full-Text Entity Index.
public class AppointmentEntry_Extension : PXGraphExtension<AppointmentEntry>
{
#region
[PXMergeAttributes(Method = MergeMethod.Append)]
[PXRemoveBaseAttribute(typeof(PX.Data.PXSearchableAttribute))]
[PXSearchable(SM.SearchCategory.FS, "SM {0}: {1} {2}", new Type[] { typeof(FSAppointment.srvOrdType), typeof(FSAppointment.refNbr) , typeof(FSAppointment.customerID) },
new Type[] { typeof(Customer.acctCD), typeof(FSAppointment.docDesc) },
NumberFields = new Type[] { typeof(FSAppointment.refNbr) },
Line1Format = "{0:d}{1}", Line1Fields = new Type[] { typeof(FSAppointment.scheduledDateTimeBegin), typeof(FSAppointment.status) },
Line2Format = "{0}", Line2Fields = new Type[] { typeof(FSAppointment.docDesc) },
MatchWithJoin = typeof(InnerJoin<FSServiceOrder, On<FSServiceOrder.sOID, Equal<FSAppointment.sOID>>, InnerJoin<Customer, On<Customer.bAccountID, Equal<FSServiceOrder.customerID>>>>),
SelectForFastIndexing = typeof(Select2<FSAppointment, InnerJoin<FSServiceOrder, On<FSServiceOrder.sOID, Equal<FSAppointment.sOID>>, InnerJoin<Customer, On<Customer.bAccountID, Equal<FSServiceOrder.customerID>>>>>)
)]
protected void FSAppointment_NoteID_CacheAttached(PXCache sender) { }
#endregion
}
what changes are required to display the customer name in title header?