• Turing
  • NEWBIE
  • 15 Points
  • Member since 2015

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 1
    Likes Given
  • 4
    Questions
  • 14
    Replies
We are trying to validate a change set containing a class and it's corresponding test class through specific test run however, we are getting a code coverage error. Here is the link to change set in production for your reference, https://na65.salesforce.com/changemgmt/inboundChangeSetDetailPage.apexp?cid=0EP0h000000PagN

The same class has 84% test coverage in full sandbox https://cs79.salesforce.com/changemgmt/inboundChangeSetDetailPage.apexp?cid=0EP1h0000004CMl
  • October 27, 2017
  • Like
  • 0
Can any one please help which report writer is best recommended for salesforce data to develop formatted and complex reports.

Thanks
 
  • October 13, 2015
  • Like
  • 0
Is there a way in salesforce in which we can calculate prorated figures i.e. formula based on the starting and ending date of the report parameter.

Let say we have a contract with a client for 12 months Jan-15 to Dec 15 and we have defined the rate as monthly. How we can generate a report e.g. let say from Jul-15 to Sep-15 to gave us revenue for this duration.

something like Revenue= Rate * DateDiffMonth(ReportStartDate , ReportEndDate)


Appreciate any help. If this is possible or not.
 
  • October 13, 2015
  • Like
  • 0
Hi All,

We have been using our UAT Sandbox environment to access salesforce objects on our custom websites  via Salesforce API's. 

we can successfully validate the conenction using the credentials ( of API user) and passing the cosumer and secret of our connected app, which went through succesfully by giving us the Token, but when we try to access the salesforce objects using the generated token, it failed and gave us error message 'Connection Failure'.

While the same code is working fine with Production environment.

The issue with the UAT - Sandbox started all of the suddent, one day it was working fine and next day we started enperiencing this issue.

Any help will be highly appreciated.

Thanks
Numan
We are trying to validate a change set containing a class and it's corresponding test class through specific test run however, we are getting a code coverage error. Here is the link to change set in production for your reference, https://na65.salesforce.com/changemgmt/inboundChangeSetDetailPage.apexp?cid=0EP0h000000PagN

The same class has 84% test coverage in full sandbox https://cs79.salesforce.com/changemgmt/inboundChangeSetDetailPage.apexp?cid=0EP1h0000004CMl
  • October 27, 2017
  • Like
  • 0
Is there a way in salesforce in which we can calculate prorated figures i.e. formula based on the starting and ending date of the report parameter.

Let say we have a contract with a client for 12 months Jan-15 to Dec 15 and we have defined the rate as monthly. How we can generate a report e.g. let say from Jul-15 to Sep-15 to gave us revenue for this duration.

something like Revenue= Rate * DateDiffMonth(ReportStartDate , ReportEndDate)


Appreciate any help. If this is possible or not.
 
  • October 13, 2015
  • Like
  • 0
Hi All,

We have been using our UAT Sandbox environment to access salesforce objects on our custom websites  via Salesforce API's. 

we can successfully validate the conenction using the credentials ( of API user) and passing the cosumer and secret of our connected app, which went through succesfully by giving us the Token, but when we try to access the salesforce objects using the generated token, it failed and gave us error message 'Connection Failure'.

While the same code is working fine with Production environment.

The issue with the UAT - Sandbox started all of the suddent, one day it was working fine and next day we started enperiencing this issue.

Any help will be highly appreciated.

Thanks
Numan
Hi All
       I am trying to retrieve customers and orders from magento, through API Access, But I am always getting response like "403 Forbidden" as a response status, I am using consumerkey and consumerSecret key and accessToken And Token secret keys to retrieve the data, But when i try to retrive customers from restClinent or POST Man I am getting the status as 200, then it was fine (Using the same keys)
But what was the reason for this error,
I am testing in my sandbox, using OAuthPlayground by installing managed package, one month ago it was worked fine, like it is retrieve everyting what ever i request, but now it is showing 403 Forbidden error,

Please let me know what was the reason for that
I'm having trouble getting Salesforce SAML single logout (SLO) working. I'm writing a web application that uses Salesforce as the SAML Identitiy Provider (IdP)

Every LogoutRequest I send gets a response with a StatusCode of "urn:oasis:names:tc:SAML:2.0:status:Responder", which according to the spec means that an error has occurred in Salesforce.

However, I can't find any other details about what might be wrong. There isn't anything in the "Identity Provider Event Log", and no other details in the LogoutResponse. Does anyone know how to debug this issue, or what might be wrong? I've included an example LogoutRequest and the LogoutResponse below:

Request:
<samlp:LogoutRequest
        Destination="https://example.cs13.my.salesforce.com/services/auth/idp/saml2/logout"
        ID="EXAMPLE_ID"
        IssueInstant="2018-05-03T18:18:32Z"
        Version="2.0"
        xmlns:saml="urn:oasis:names:tc:SAML:2.0:assertion"
        xmlns:samlp="urn:oasis:names:tc:SAML:2.0:protocol">
    <saml:Issuer>
        http://subdomain.example.com
    </saml:Issuer>
    <saml:NameID>
        username@example.com
    </saml:NameID>
</samlp:LogoutRequest>

Response:
<?xml version="1.0" encoding="UTF-8"?>
<samlp:LogoutResponse xmlns:samlp="urn:oasis:names:tc:SAML:2.0:protocol"
                      Destination="https://localhost/logout/callback"
                      ID="EXAMPLE_ID_2"
                      InResponseTo="EXAMPLE_ID"
                      IssueInstant="2018-05-03T13:59:57.627Z" Version="2.0">
    <saml:Issuer xmlns:saml="urn:oasis:names:tc:SAML:2.0:assertion">
        https://example.cs13.my.salesforce.com
    </saml:Issuer>
    <samlp:Status>
        <samlp:StatusCode Value="urn:oasis:names:tc:SAML:2.0:status:Responder"/>
    </samlp:Status>
</samlp:LogoutResponse>

And here is a screen shot of my connected app settings:
screen shot of connected app settings
Any ideas about how to debug this? ​