• Niranja
  • NEWBIE
  • 0 Points
  • Member since 2012

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 3
    Replies

Hi,

 

Is it possible to make a SOSL query to retrieve more than 200 records? How can I make a paging to retrieve the records in small batched using SOSL?

 

Thank you.

Mikhail

Hi,

 

My Requirements is:

 

• Need to check if through Authenticated Website License, can we create and delete Content Workspaces from Apex and VF (or are there any API's for this).

 

Please make sure that Authenticate Website license is must.


Above is my requirement, can you please help me out for the above .Looking forward for a positive reply


Does anyone know why a returned page reference on an action would append these character %23_=_ to the end of the URL? 

 

Here's the redirect script that salesforce is running. What is the escapedHash it's screwing up the redirect and causing an exception. I can fix it by setting a bogus parameter in the page reference but that little gem still get's appended... why? 

 

<script>
var escapedHash = '';
var url = '/mypage';
if (window.location.hash) {
escapedHash = '%23' + window.location.hash.slice(1);
}
if (window.location.replace){
window.location.replace(url + escapedHash);
} else {;
window.location.href = url + escapedHash;
}
</script>

 

I get this if I don't pass a bogus parameter:

/mypage%23_=_

 

This fails hard, page doesn't exist

 

If I set a parameter I get this

/mypage?init=1%23_=_

 

The page loads fine but the last parameter would get messed up if it wasn't bogus.