• vivinmathew
  • NEWBIE
  • 0 Points
  • Member since 2007

  • Chatter
    Feed
  • 0
    Best Answers
  • 1
    Likes Received
  • 0
    Likes Given
  • 7
    Questions
  • 3
    Replies
Hi,
 
Can anyone please explain what is a Related list ?
 
Thanks,
Vivin Mathew
Hi,

I have more than 5000 leads and i want to send mails to all of these 5000 leads or atleast 1000 leads in one shot and i know this is not possible within SFDC because it is restricted to only 250.

But the idea is i want to develop an external application using .NET which fetches all the Leads from my account in SFDC and even all the email templates.

I can apply all the filter conditions here  in my application and send mails to these Leads(more than 250 mails) using my mail server.

I just want to know iwhether this is possible.

Please share your ideas.

Thanks,
Vivin Mathew
Hi,

I have more than 5000 leads and i want to send mails to all of these 5000 leads or atleast 1000 leads in one shot and i know this is not possible within SFDC because it is restricted to only 250.

But the idea is i want to develop an external application using .NET which fetches all the Leads from my account in SFDC and even all the email templates.

I can apply all the filter conditions here  in my application and send mails to these Leads(more than 250 mails) using my mail server.

I just want to know iwhether this is possible.

Please share your ideas.

Thanks,
Vivin Mathew
Hi,

I have developed a custom control which retrieves the threads posted in a custom object called Threadsnew_c.

I am in the process of developing a discussion forum in SFDC.

I able to retrive records when this query is executed in sfore xplorer. I have made this scontrol as a custom web control and when i run it from the interface that is SFDC i get values which says 'undefiend'.

Can someone please help me.

I have attached my coding HTML script with this.

Regards,
VIvin MathewCode:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>SalesForce SControl</title>
<link href="/dCSS/Theme2/default/common.css" type="text/css" media="handheld,print,projection,screen,tty,tv" rel="stylesheet" >
<link href="/dCSS/Theme2/default/custom.css" type="text/css" media="handheld,print,projection,screen,tty,tv" rel="stylesheet" >
<script src="https://www.salesforce.com/services/lib/ajax/beta3.3/sforceclient.js—browser=true" type="text/javascript"></script>
<script type="text/javascript" src="/js/functions.js"></script>
<script language="javascript">
<!--
//Page initialization is a good idea.  
function initPage() 
{
sforceClient.registerInitCallback(pageSetup);
//Including the two merge fields below will enable this sforce control when used in your account.  
sforceClient.init("{!API.Session_ID}", "{!API.Partner_Server_URL_70}", true);
}

function pageSetup() {
//Simple query call
//var qr = sforceClient.query("Select CreatedDate, Id, Name, Threadsnew_subject__c,Threadsnew_body__c  from Threadsnew__c order by CreatedDate DESC");
SearchString="Select CreatedDate, Id, Name, Threadsnew_subject__c,Threadsnew_body__c  from Threadsnew__c order by CreatedDate DESC";
var queryResult = sforceClient.Query(SearchString);
//if (qr.className == "QueryResult") {
// BUILD TABLE HEADER
var output = "<table width=’100%’ class=list border=’0’ cellspacing=’0’ cellpadding=’0’><tr class=headerRow height=20>";
output += "<th nowrap’>Thread Subject</th>";
output += "<th nowrap’>Author</th>";
output += "<th nowrap’>Posted Date</th></tr>";
//BUILD TABLE ROWS
for (var j = 0; j < queryResult.records.length; j++)
{
var Threadsnew__c = queryResult.records[j];
output += "<tr onmouseover=hiOn(this) onmouseout=hiOff(this)>";
output +="<td><a href=’/"+Threadsnew__c.Id+"’ target=_parent>" + Threadsnew__c.Threadsnew_subject__c + "</a></td>";
output += "<td>" + Threadsnew__c.Name+ "</td>";
output += "<td>" + Threadsnew__c.CreatedDate+ "</td></tr>";
}
output += "</table>";
document.getElementById("divMain").innerHTML = output;
}
//}
//-->
</script>
</head>
<body onload="initPage();">
<BODY class="account">
<form name=AccountSearchForm">
<DIV class=bPageTitle>
<DIV class="ptBody secondaryPalette">
<DIV class=content><IMG class=pageTitleIcon alt=Account src="/s.gif">
<H1 class=pageType>General<SPAN class=titleSeparatingColon>:</SPAN></H1>
<H2 class=pageDescription>Discussion Boards</H2>
</DIV></DIV></DIV>
<DIV class="bPageBlock secondaryPalette">
<DIV class=pbBody>
<DIV class=pbSubsection>
<div id="divMain"></div>
</form>
</DIV></DIV></DIV>
</body>
</html>

 

Hi,

Can someone please give me some ideas on how to create a discussion forum in salesforce without using any external technology.

Just use the scontrols and other stufff available in SFDC.

Please share your ideas.

Thanks,
Vivin Mathew


Hi,

I have developed a custom scontrol (For example a Cases search) and i want to make that scontrol available  as a custom tab.

Please share your ideas.

Thanks,
Vivin Mathew
Hi,

I am a new user of salesforce but i know a bit about salesforce and have a fair knowledge of S_Controls and other custom objects and controls.

The main thing is that i want to develop a discussion forum inside salesforce.com.
It can be a custom tab like the other tabs available in the SFDC.
Users can start a thread and others users can post a reply to that thread.

Can someone please help me  with this.

Thanks.
Hi,

I am a new user of salesforce but i know a bit about salesforce and have a fair knowledge of S_Controls and other custom objects and controls.

The main thing is that i want to develop a discussion forum inside salesforce.com.
It can be a custom tab like the other tabs available in the SFDC.
Users can start a thread and others users can post a reply to that thread.

Can someone please help me  with this.

Thanks.
Hi,
 
Can anyone please explain what is a Related list ?
 
Thanks,
Vivin Mathew
Hi,

I have developed a custom control which retrieves the threads posted in a custom object called Threadsnew_c.

I am in the process of developing a discussion forum in SFDC.

I able to retrive records when this query is executed in sfore xplorer. I have made this scontrol as a custom web control and when i run it from the interface that is SFDC i get values which says 'undefiend'.

Can someone please help me.

I have attached my coding HTML script with this.

Regards,
VIvin MathewCode:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>SalesForce SControl</title>
<link href="/dCSS/Theme2/default/common.css" type="text/css" media="handheld,print,projection,screen,tty,tv" rel="stylesheet" >
<link href="/dCSS/Theme2/default/custom.css" type="text/css" media="handheld,print,projection,screen,tty,tv" rel="stylesheet" >
<script src="https://www.salesforce.com/services/lib/ajax/beta3.3/sforceclient.js—browser=true" type="text/javascript"></script>
<script type="text/javascript" src="/js/functions.js"></script>
<script language="javascript">
<!--
//Page initialization is a good idea.  
function initPage() 
{
sforceClient.registerInitCallback(pageSetup);
//Including the two merge fields below will enable this sforce control when used in your account.  
sforceClient.init("{!API.Session_ID}", "{!API.Partner_Server_URL_70}", true);
}

function pageSetup() {
//Simple query call
//var qr = sforceClient.query("Select CreatedDate, Id, Name, Threadsnew_subject__c,Threadsnew_body__c  from Threadsnew__c order by CreatedDate DESC");
SearchString="Select CreatedDate, Id, Name, Threadsnew_subject__c,Threadsnew_body__c  from Threadsnew__c order by CreatedDate DESC";
var queryResult = sforceClient.Query(SearchString);
//if (qr.className == "QueryResult") {
// BUILD TABLE HEADER
var output = "<table width=’100%’ class=list border=’0’ cellspacing=’0’ cellpadding=’0’><tr class=headerRow height=20>";
output += "<th nowrap’>Thread Subject</th>";
output += "<th nowrap’>Author</th>";
output += "<th nowrap’>Posted Date</th></tr>";
//BUILD TABLE ROWS
for (var j = 0; j < queryResult.records.length; j++)
{
var Threadsnew__c = queryResult.records[j];
output += "<tr onmouseover=hiOn(this) onmouseout=hiOff(this)>";
output +="<td><a href=’/"+Threadsnew__c.Id+"’ target=_parent>" + Threadsnew__c.Threadsnew_subject__c + "</a></td>";
output += "<td>" + Threadsnew__c.Name+ "</td>";
output += "<td>" + Threadsnew__c.CreatedDate+ "</td></tr>";
}
output += "</table>";
document.getElementById("divMain").innerHTML = output;
}
//}
//-->
</script>
</head>
<body onload="initPage();">
<BODY class="account">
<form name=AccountSearchForm">
<DIV class=bPageTitle>
<DIV class="ptBody secondaryPalette">
<DIV class=content><IMG class=pageTitleIcon alt=Account src="/s.gif">
<H1 class=pageType>General<SPAN class=titleSeparatingColon>:</SPAN></H1>
<H2 class=pageDescription>Discussion Boards</H2>
</DIV></DIV></DIV>
<DIV class="bPageBlock secondaryPalette">
<DIV class=pbBody>
<DIV class=pbSubsection>
<div id="divMain"></div>
</form>
</DIV></DIV></DIV>
</body>
</html>

 

Hi,

I have developed a custom scontrol (For example a Cases search) and i want to make that scontrol available  as a custom tab.

Please share your ideas.

Thanks,
Vivin Mathew