• Arun A
  • NEWBIE
  • 5 Points
  • Member since 2016

  • Chatter
    Feed
  • 0
    Best Answers
  • 1
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 3
    Replies
When I am executing the Batch Apex in Salesforce. I can see in the debug logs with the entry of operation SerialBatchApexRangeChunkHandler with request type API.
So my question is, does executing Batch Apex in salesforce affects the SF API limit?
Lightning Design System is not rendering the ordered-list of html. Is it a bug?

=================================================================================
​WITH CSS
<aura:component >
    <ltng:require styles="/resource/SLDS090/assets/styles/salesforce-lightning-design-system.css" />  
<ol >
    <li>red</li>
    <li>green</li>
    <li>blue</li>
</ol>
</aura:component>
User-added image
============================================================================
WITHOUT CSS
<aura:component >
<ol >
    <li>red</li>
    <li>green</li>
    <li>blue</li>
</ol>
</aura:component>
User-added image
  • January 11, 2016
  • Like
  • 1
Lightning Design System is not rendering the ordered-list of html. Is it a bug?

=================================================================================
​WITH CSS
<aura:component >
    <ltng:require styles="/resource/SLDS090/assets/styles/salesforce-lightning-design-system.css" />  
<ol >
    <li>red</li>
    <li>green</li>
    <li>blue</li>
</ol>
</aura:component>
User-added image
============================================================================
WITHOUT CSS
<aura:component >
<ol >
    <li>red</li>
    <li>green</li>
    <li>blue</li>
</ol>
</aura:component>
User-added image
  • January 11, 2016
  • Like
  • 1
When I am executing the Batch Apex in Salesforce. I can see in the debug logs with the entry of operation SerialBatchApexRangeChunkHandler with request type API.
So my question is, does executing Batch Apex in salesforce affects the SF API limit?
Hi guys. I'm new at powershell and scripting, need some help.

I try to authenticate in developers edition by Username-Password OAuth and get list of recources (for example)

I can get access_token succesfully, but next step returned error 400 (bad request)
This is my code:

$url = "https://login.salesforce.com/services/oauth2/token"

$postParams = @{
                grant_type = "password"
                client_id = "[Consumer Key]"
                client_secret = "[1578651120116368499]"
                username = "[useremail]"
                password = "[password+securitytoken]"
               }

$result = Invoke-RestMethod -Uri $url -Method POST -Body $postParams
$access_token = $result.access_token 

$url2 = "https://eu6.salesforce.com/services/data/v37.0/limits/"

$var = Invoke-RestMethod -Uri $url2 -Headers @{"Authorization" = "Bearer " + $access_token}

Please, could you help with this task?