• GMANDINGO
  • NEWBIE
  • 50 Points
  • Member since 2010

  • Chatter
    Feed
  • 2
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 6
    Replies

We have been using Survey Force for a while without issue for several months. Now, however, when we try to run the report 'Survey with Questions and Responses', it returns an error that a date field must be selected, but there are no date fields available to select.  We have quite a few surveys that have been taken, so we do not want to uninstall/reinstall if possible.

 

Survey Force Report Error Message

When I copy the URL into a browser window, I get "Site under construction"

My developer Org works OK. I've tried diff-ing the normal org and its as close to the developer org as I can get.

I'd be grateful for any assistance from anyone

  • March 14, 2011
  • Like
  • 0

In the Force.com REST API Developer's Guide, there is a section of code on page 7 that can be seen below. I can see/figure out where all the variables are set besides the following. "post.addParameter("code",code);" Where or how do you get 'code'?

 

I am trying to Salesforce REST to work on an Android and am stuck. If you have any tips on the proper way to authenticate I would be very appreciative.

 

initParams={
@WebInitParam(name="clientId",value=
"3MVG9lKcPoNINVBJSoQsNCD.HHDdbugPsNXwwyFbgb47KWa_PTv"),
@WebInitParam(name="clientSecret",value="5678471853609579508"),
@WebInitParam(name="redirectUri",value=
"https://localhost:8443/RestTest/oauth/_callback"),
@WebInitParam(name="environment",value=
"https://na1.salesforce.com/services/oath2/token") }
HttpClienthttpclient=newHttpClient();
PostMethodpost=newPostMethod(tokenUrl);
post.addParameter("code",code);
post.addParameter("grant_type","authorization_code");
/**ForsessionIDinsteadofOAuth,use"grant_type","password"*/
post.addParameter("client_id",clientId);
post.addParameter("client_secret",clientSecret);
post.addParameter("redirect_uri",redirectUri);

We have been using Survey Force for a while without issue for several months. Now, however, when we try to run the report 'Survey with Questions and Responses', it returns an error that a date field must be selected, but there are no date fields available to select.  We have quite a few surveys that have been taken, so we do not want to uninstall/reinstall if possible.

 

Survey Force Report Error Message

When I copy the URL into a browser window, I get "Site under construction"

My developer Org works OK. I've tried diff-ing the normal org and its as close to the developer org as I can get.

I'd be grateful for any assistance from anyone

  • March 14, 2011
  • Like
  • 0

Hello All,

 

I have a basic question , want to find out the what is the maximum number of items we can include in a picklist.

 

thanks in advance.