• Soumya Behera
  • NEWBIE
  • 50 Points
  • Member since 2014
  • IT Developer
  • Accenture

  • Chatter
    Feed
  • 0
    Best Answers
  • 1
    Likes Received
  • 2
    Likes Given
  • 20
    Questions
  • 29
    Replies
In Lightning Experience, my Flow Screen with 'Show Header' set to false still shows the header.

I am launching the flow from a Quick Action.

'Show Footer' works as expected and I am able to override the navigation with Lightning Components

https://help.salesforce.com/articleView?id=vpm_designer_elements_screen.htm&type=5

flow screen

User-added image

Is anyone aware of any issue or limitation? I can see this being documented somewhere as "Show Header currently is not supported for quick action distributed flows"
Hi All,
We are receiving an internal server error. when I go to (any) Permission Set, Apex Class Access then hit 'Edit' we are facing this issue. How can we overcome this, please assist.

Error: An internal server error has occurred An error has occurred while processing your request. The salesforce.com support team has been notified of the problem. If you believe you have additional information that may be of help in reproducing or correcting the error, please contact Salesforce Support. Please indicate the URL of the page you were requesting, any error id shown on this page as well as any other related information. We apologize for the inconvenience. Thank you again for your patience and assistance. And thanks for using salesforce.com! Error ID: 1488824837-18844 (-1270687048)
Hi All,

The expected scenario is on click of a button it should open a subtab in the service console.
Below is the code which i have put in the button java script code. However its not working and throwing the below error. Please do help.

// Start of the CODE

{!REQUIRESCRIPT("/soap/ajax/25.0/connection.js")} 
{!REQUIRESCRIPT("/soap/ajax/25.0/apex.js")}
{!REQUIRESCRIPT("/soap/ajax/25.0/integration.js")}

function testGetFocusedPrimaryTabId() {
            sforce.console.getFocusedPrimaryTabId(showTabId);
        }
var showTabId = function showTabId(result) {
 alert('Tab ID: ' + result.id);
};

testGetFocusedPrimaryTabId();

// END of the CODE

Error thowing - can not read property getFocusedPrimaryTabId in salesforce

Regards,
Soumya Behera

 
Hi All,

I am tryging to update the sort order which user will change in the UI. Please let me know how my visualforce controller get to know the the sorting order. 

Regards,
Soumya Behera
Hi All,
Greets for the day.
Need your help for the below .
I am trying to create an external data source to connect with the Google Drive. However i am not able to get the Type as : Files Connect: Google Drive  .  Although i have already enable the file connecton setting.
Please do let me know how this option will be available in the dropdown list.

NOTE :- I am following the below salesforce provided link ( http://help.salesforce.com/HTViewHelpDoc?id=admin_files_connect_google_xds.htm ).

Please do let me know if  you guys have any suggestion.

Regards,
Soumya Behera

 
Hi All,

     I am Trying to Save Attachement file in GoogleDrive,,,,But I strucked Can Any one help on this ......How to save a file In Google Drive From SalesForce,,
Below Code Shows the Creating The Attachement ,After Creating The Attachement in SalesForce How to Store In Goole Drive

 public PageReference AttachTorecord()
    {
        PageReference pdf= Page.ITReport;
         pdf.getParameters().put('id',orderRecord.id);
         Attachment att = new Attachment();
          att.Body = pdf.getContentAsPDF();
          att.ParentId =orderRecord.id ;
          att.Name = 'ITPDF.pdf';
          insert att;
    return new PageReference('/'+orderRecord.id);
In the Formulas & Validations Module the challenge in the Using Formula Fields unit is validating API name = Days_Since_Last_Update__c and in the Implementing Roll-Up Summary Fields unit the challenge is validating API name = Potential_Value__c.  The challenges always come back with errors as 2 consecutive underscores are not allowed in an API name.

Thanks!

I am getting error "invalid_grant: authentication failure" for some of my REST Api requests .  Please not that most of the time our Api request requests are fine but ssometime only we are getting this. I am sure that we have not breached API usage limit .

 

What could be the reason behind it ?

Hi All,

In the development box , i have marked one of the custom object as "Avaible for the customer portal ". So now i wanted to deploy the same attribute/property to other org. I have tried to fetch all the attribute of that particular custom object , however i have not find anything with the customerportal .
Can somebody guide that whether we do have any attribute or we need to do manual post deployment steps.

Regards,
Soumya Behera
Hi Fokes,

I have an requirment where i need to assgin an permission based on the some codition. So can it be possible through code to assign permission set to the user. 
Need to do by Apex coding. Please guide .
Regards,
Ranjan
Anyone help me. I send json object with webhook to  /services/apexrest/myService/test, but i can't reseve them, my class is 
@RestResource(urlMapping='/myService/test/*')
global class myWeb {
	 @HttpGet
    global static void sayHello() {
        RestRequest request = RestContext.request; 
        RestResponse response = RestContext.response;
        String accountId = request.requestURI.substring(request.requestURI.lastIndexOf('/')+1);
        System.debug(accountId);
    }
}

But result after execute is System.NullPointerException: Attempt to de-reference a null object. I need send from woocommerce wordpress plugin with webhooks to salesforce. Anyone help me. Thanks :)
The requirment is like when i am updating the account field (Active__C type boolean) as True /False then i need to update the Active/False contacts as input for the account active field. For example for an Account 1 (whcih is active) there are two contacts (Cont1 (Active = False)& Cont2(Active = True) ). When i want to update the account's active field as False  i need to update on the contacts whose active field value is set as true and need to update the field value as False.

For this particular requiement i have used Process Builder however it in retruns in Required fields are missing: [FieldValueId] . Can somebody let me know what mistake i am doing ?

Thanks in Advance. 

Hi there

 

It seems to me that the "ALL ROWS" keyword that you use in SOQL (to access records in the recycled bin) can only be used in Apex.

 

I went to Developer Console in the Query Editor and tried typing this

 

SELECT ID FROM Fruit__c 

and it executes.

 

But If I add "ALL ROWS" at the end, i.e.

SELECT ID FROM Fruit__c ALL ROWS

 

then I got

"Unknown error parsing query" error.

 

If I write this in an Apex code, like this

 

List<Fruit__c> fruits = [SELECT ID FROM Fruit__c ALL ROWS];

 

then the line actually executes successfully.

 

It seems weird to me that "ALL ROWS" keyword cannot be used inside the Query Editor.  Wondering if anyone has encountered that?

 

Thanks

King

Hi all,

I have Responses__c and Response_Type__c objects . Response_Type__c is parent to Responses__c . Now I have Response_Type__c Id so written Query as follows to get Response_type__c fields as well as Responses__c fields 

 

List<Response_type__c> rtList = [select id,name,(select id,name from responses__c) from Response_type__c  where id =: rt.id];

 

Now it raising error 

 

Error: TestController Compile Error: Didn't understand relationship 'responses__c' in FROM part of query call. If you are attempting to use a custom relationship, be sure to append the '__r' after the custom relationship name. Please reference your WSDL or the describe call for the appropriate names.

 

then I changed the query as follows

 

List<Response_type__c> rtList = [select id,name,(select id,name from responses__r) from Response_type__c  where id =: rt.id];

 

still the same error 

 

Error: TestController Compile Error: Didn't understand relationship 'responses__r' in FROM part of query call. If you are attempting to use a custom relationship, be sure to append the '__r' after the custom relationship name. Please reference your WSDL or the describe call for the appropriate names.

 

 

so please help me in resolving this. please explain what is root cause

When any user other than an administrator attempts to run a custom report the following error message appears.

"Report Obsolete

This report can no longer be edited or run. Your administrator has disabled all reports for the custom object, or its relationships have changed."

While logged in as the system adminstrator i am able to run the report, but when i log in as a Standard user and try to run the same custom report i get the message above.

Is there anyway to allow the Standard user permission to run custom reports?