• Ikbal Halakeri
  • NEWBIE
  • 30 Points
  • Member since 2018


  • Chatter
    Feed
  • 1
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 5
    Replies
Hi All,

How to track field history in lightning web components.

Thanks, Sesha
need a batch interface to migrate opportunity with attachments data from one org to another org
Hi All,

How to track field history in lightning web components.

Thanks, Sesha

From within my apex controller, how do set PageReference to redirect to an object's list view page?

 

The only documented way of doing this is through visualforce:

 

<apex:page action="{!URLFOR($Action.Account.List, $ObjectType.Account)}"/>

 However, I want to be able to do this from the controller instead:

public PageReference confirm()
{
	// Do prep data
	
	PageReference ref = new PageReference();
	
	// ??? redirect to object's list view

	return ref;
}