Topic by Marcelo Peralta
Hello, my query is as follows.
How can I edit the "Summary" field of the Opportunity screen with an Addin .NET.
To modify custom fields, I have no problems: Example: IOpportunity genObj = (IOpportunity) _recordContext.GetWorkspaceRecord (RightNow.AddIns.Common.WorkspaceRecordType.Opportunity);
IList <ICustomAttribute> fields = genObj.CustomAttributes;
How do I do it with Rignow's own fields?
Thank you so much.