• Sanket Nagpure
  • NEWBIE
  • 10 Points
  • Member since 2019
  • Associate Technical Consultant
  • Blue Flame Labs Pvt Ltd,Pune


  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 4
    Questions
  • 5
    Replies
Step 1: Display a list of Contacts with a radio button to select one Contact Step
2: Show the selected Contact in an edit form (You can hardcode a few fields for this assignment). We may update the field value here. On clicking next, Save the updated Contact
if the user created the record and attempts to change the owner within a minute of creating the record they should be able to do that  ? Validation Rule
Hello, I have configured a connected app that is SAML enabled.  I am displaying the app in a Visualforce page using an iframe as part of the Case layout page.  You can see below that the src attribute of the iframe references the connected app’s startup url and then the connected app (which is an asp.net web page) is loaded.
 
<apex:page standardController="Case" >
     <apex:iframe id="CaseFrame" width="100%" height="500" scrolling="true"  src="https://domain.my.salesforce.com/idp/login?app=0sp1O000000fxTs" />
</apex:page>
 
While loading, it builds a SAML assertion which it then posts to my asp.net app’s ACS url (assertion consumer service).  This url is a configuration setting in SFDC.  Because it redirects like this and does a post, I don’t see a simple way to pass custom parameters to my app as below…(passing the case id in the src url)
 
<apex:page standardController="Case" >
          <apex:iframe id="MyIFrame" width="100%" height="220px" scrolling="false"  src="https://mydomin.paasnational.com/FM.aspx?cid={!case.ID}" />
</apex:page>
 
I see there is a way to add custom parameters to the SAML assertion by extending the Auth.ConnectedAppPlugin class.  I could write a SOQL query here and load business data that my connected app could consume, but I don’t see a way to add the case id of the Case that the current user is viewing with this approach like in the iframe above. 
 
Does anyone know of an approach I could use to pass the current case id to my saml enabled connected app?  Thanks.
 
hello ,hai to all, i have a task is this,please help, am fresher
Create a 3 step wizard based on Lightning Components using progressIndicator control.

Step 1: Display a list of Contacts with a radio button to select one Contact
Step 2: Show the selected Contact in an edit form (You can hardcode a few fields for this assignment). We may update the field value here. On clicking next, Save the updated Contact
Step 3: Show a confirmation screen with the Update Contact.