How to extends class in apex Get link Facebook X Pinterest Email Other Apps November 21, 2019 // class onepublic virtual class MyCodeController { }// class twopublic class TestController extends MyCodeController { public TestController{ super(); }} Get link Facebook X Pinterest Email Other Apps Comments
How to change Page Layout November 25, 2019 First of all you need to go to : Setup => Search Profile ==> Select profile you have used ===> Select Object Setting and choose object you used ====> Now you can edit on Record Types and Page Layout Assignments You can change by record type. Read more
Dynamic SOQL June 11, 2018 url source : https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_dynamic_soql.htm Read more
How to get Org Wide Email Address salesforce June 25, 2021 OrgWideEmailAddress [] owea = [ select Id from OrgWideEmailAddress where Address = 'ab@g.test' ]; if ( owea . size () > 0 ) { mail . setOrgWideEmailAddressId ( owea . get ( 0 ). Id ); } Read more
Comments
Post a Comment