• Nand Kishore 7
  • NEWBIE
  • 5 Points
  • Member since 2020

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 7
    Replies
Hi All,

I am creating an application which will integrate with third party application. I am using third party system for authentication. 
I got the redirect URL (which is of my org), secret key etc.
Redirect URL - https://test-dev--c.na90.visual.force.com/apex/TestVFPage1
I developed this application and its working good at my development environment.

Now, I created a managed package of my application (TestVFPage1 visualforce page is a part of package) and installed for a customer. When customer started to authenticate, he was redirected to my org's URL (https://test-dev--c.na90.visual.force.com/apex/TestVFPage1) at the time of authentication. He should be redirected to his org.

I want to know how we can handle this kind of scenario in Salesforce.
Note: My limitation is to use any single URL as a redirect URL and it should work for all the customers. This package will be installed on many orgs.

Waiting for respone. Thank You!!
Hi,

Can we open model/dialog/alert/VF Page/Lighting component which is having yes/no button and a label  from the Salesforce trigger?

I want to show a confirmation box with yes/no button from the trigger. If user clicks "OK" trigger will execute otherwise not.


Thank You
Hi All,

I am creating an application which will integrate with third party application. I am using third party system for authentication. 
I got the redirect URL (which is of my org), secret key etc.
Redirect URL - https://test-dev--c.na90.visual.force.com/apex/TestVFPage1
I developed this application and its working good at my development environment.

Now, I created a managed package of my application (TestVFPage1 visualforce page is a part of package) and installed for a customer. When customer started to authenticate, he was redirected to my org's URL (https://test-dev--c.na90.visual.force.com/apex/TestVFPage1) at the time of authentication. He should be redirected to his org.

I want to know how we can handle this kind of scenario in Salesforce.
Note: My limitation is to use any single URL as a redirect URL and it should work for all the customers. This package will be installed on many orgs.

Waiting for respone. Thank You!!
Hi,

Can we open model/dialog/alert/VF Page/Lighting component which is having yes/no button and a label  from the Salesforce trigger?

I want to show a confirmation box with yes/no button from the trigger. If user clicks "OK" trigger will execute otherwise not.


Thank You
I have trigger the below simple trigger to add BCC address dynamically, but its not firing to email. It is showing in the debug log about the added email address . Please help to solve this. 
 
trigger EmailMessage_Trigger on EmailMessage (before insert) {
    
       // EmailMessage_Trigger_Helper.emailMessage(Trigger.New);
     
     for(EmailMessage emsg : Trigger.New){
         if (emsg.Incoming==false && emsg.Status == '3') 
         {
             emsg.BccAddress ='saiprasanth123@gmail.com';  
             emsg.CcAddress ='saiprasanth1234@gmail.com';
           system.debug('coming sai inside:'+emsg.CcAddress+'....'+emsg.FromAddress);

         }
           system.debug('coming sai outside:'+emsg);
     }
}


Thanks,
Sai.