• K. Nandeeswara Raju
  • NEWBIE
  • 0 Points
  • Member since 2014

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 4
    Replies
<aura:component >
     <ltng:require scripts="{!join(',', 
    $Resource.jquery + '/jquery.js', 
    $Resource.tipsyjs + '/tipsy.js',
    $Resource.d3 + '/d3.js',
    $Resource.d3chartline + '/d3chartline.js')}"
    />
</aura:component>

SAML based SSO is working (for the most part)

If I login to my IDP (Identity Provider such as Okta), I can click Salesforce, and login successfully.

What is NOT working: if i go to login.salesforce.com and enter my email address, it should redirect me immediately to my IDP (SP initiated SSO), but instead it allows me to enter a password. 

I have followed all directions to configure SP Initiated SSO, but it does not seem to work. Okta said it's on the Salesforce side. 
Hi Friends,

I wanto add one of Scheduled Jobs in my sandbox to outbound change set to deploy new changes to production. How cab I do that ?

Can some one help me pls.

hi i have created a DataBase.Batchable class in which i am inserting a custom object named it Event__c

 

public class BatchCreateGCalendars implements Database.Batchable<SObject>, Database.Stateful, Database.AllowsCallouts {

 private List<Event__c> event_id;

}

i am creating say 1000 records of type events and then using the statement

insert event_id;

is this good or inserting each element one by one is more appropriate.

in my custom object i created only one  custom field of type text(255).so what is the maximum size of list can be(approximate)??

please guideline