• Abante
  • NEWBIE
  • 0 Points
  • Member since 2010

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 30
    Questions
  • 7
    Replies

Hello everyone,

 

 

We've developed a custom button, to download an Excel with records from a custom object. 

 

It works fine and It's really useful, but sometimes there are more than a thousand records... We use a 1.000 records query limit, but It'd be great to download all records.

 

We tried with batch processing but It doesn't work.

 

 

Any idea?

 

Thanks in advance

 

 

Hello everyone,

 

 

In a  database batchable...How do I put a 5 records limit to the scope? 

 

global void execute(Database.BatchableContext info, List<Contact> scope)

 

 

Thanks in advance!

Hello everyone,

 

 

In our role hierarchy organization we have three different teams. Now I want to have three reports to see accounts of each one of those teams.

 

People change from one team to another very frequently so filter using owner alias is not an option...

 

 

Thanks in advance

Hello everyone,

 

 

I'ld like to delete everyday all records from a custom object. I didn't schedule an Apex job before so I don't know what do first. It should be a really simple piece of code.

 

 

Any idea?

 

Thanks in advance

Hello everyone, 

 

 

Is there any way to update fields with Analytic Snapshots?

 

I have a report with several columns, and one of them is the Account Id, and I'ld like to update Accounts using this information.

 

I tried with triggers, but Salesforce doesn't let me use Analytic Snapshots with triggers...go figure...

 

 

Thanks in advance!!

  • April 26, 2012
  • Like
  • 0

Hello everyone,

 

 

I'ld like to restrict the lead conversion when the user is not the lead owner. What's the easiest way?

 

 

Thanks in advance

 

Javier Jiménez

Abante Asesores

  • April 24, 2012
  • Like
  • 0

Hello eveyone,

 

If I send a contact  by e-mail an invitation to a conference, is there any way to clic and confirm assistance and directly update his campaign member status?

 

We don't want to update campaign members one by one... :smileywink:

 

Regards, and have a nice Thursday!!

  • January 19, 2012
  • Like
  • 0

Hello everyone,

 

 

Is there any simple way to schedule a massive delete of a custom object?

 

I want to insert new records everyday, but I want to save time and schedule a massive delete during the night

 

Thanks in advance

 

 

  • January 17, 2012
  • Like
  • 0

Hello everyone!

 

We have a custom field (path__c) with the URL of a file stored in our local server. Now we want to put a button in the layout with a very simple VF Page

 

<apex:page standardController="Account" >
<html>
<head>
<script type="text/javascript">
function startXL()
{
   var myApp = new ActiveXObject("Excel.Application");
   if (myApp != null)
   {
     myApp.visible = true;
     myApp.workbooks.open("file:///\\Abserver1{!Account.Path__c}");
   }
}
</script>
</head>
<body>
<input type="button" value="Open" onclick="startXL()"> 
</body>
</html>
</apex:page>

 

We want to click on It and open the file, we don't want to download the file.

 

Any advice?

 

Thank you

 

 

  • December 09, 2011
  • Like
  • 0

Hello everyone,

 

We have a internal server with a very important folder: \\abserver1\Grups

 

We would like in Salesforce Account a custom field to link files of this folder, but we don't know how because a URL field has by default http:// 

 

Thanks in advance

 

Javier Jimenez

  • November 30, 2011
  • Like
  • 0

Hello everyone,

 

I have a  {get;set;} Account List where I want to add Accounts every time I call list_Accounts() function. But I can's save, It says External Entry Point about "aux". 

 

public with sharing class Prop
{
public Prop(){}
public list<Account> aux
public list<Account> cad {get;set;}
 
public PageReference list_Accounts()
{
 
cad = new List<Account>();
for(Account PR:[select Id,isSelected__c from Account])
{
   if(PR.isSelected__c==true){aux.add(recomendaciones);}
}

cad=aux
return null;
}
 
}
 

 

 

 

Is there any way to do this? any advice?

 

Thank you

 

 

  • November 25, 2011
  • Like
  • 0

Hello everyone,

 

That's my question; What's the cheapest way to Increase the size of SalesForce Database?

 

Is there something new about that?

 

Any professional experience?

 

Thanks in advance

 

 

  • November 11, 2011
  • Like
  • 0

Hello everyone,

 

Is there any way to let a user convert leads only if he is the owner?

 

Thanks in advance!

  • November 10, 2011
  • Like
  • 0

Hello everyone,

 

Do you know what is the maximum number of custom object?

 

Thanks in advance!

  • November 08, 2011
  • Like
  • 0

Hello everyone,

 

I've developed a VF Page where I want to show several options in a column. But, instead of that, the options are in a row. This is the code:

 

<apex:form >

<apex:selectCheckboxes value="{!Products}" title="Choose Five!!">           

<apex:selectOptions value="{!items}"/><br/>     

</apex:selectCheckboxes><br/>

</apex:form >

 

Any advice would be most welcome!

 

Regards

  • November 02, 2011
  • Like
  • 0

Hello everyone,

 

 

We already do PDF's with Salesforce, but now we want to protect those PDF's with a Password.

 

Is It possible?

 

Thanks in advance

  • October 10, 2011
  • Like
  • 0

Why I can't access my activity reports where I used to track e-mails I sent???

  • October 07, 2011
  • Like
  • 0

 

 

Hello everyone,

We have an Excel Worksheet of 400 columns and 3000 rows and It'd be great If we could load It into Salesforce. 

Does anyone else have to do something like this? any idea or advice will be more than welcome!!

 

Thanks in advance!!

  • September 22, 2011
  • Like
  • 0

Hello everyone,

 

 

I am really new with Single Sign-On. I thought It'd be easy but I lost focus.

 

Salesforce enabled us this feature and I activated It at my profile, but I don't know what to do next...

 

We have created a Salesforce tab linked to Twitter, and we want to log-in Twitter directly when we login Salesforce!

 

Thanks in advance!

  • September 19, 2011
  • Like
  • 0

Hello everyone, 

 

 

Is there any way to link the Printable View report button? It would be great to fire it with just one click!

 

 

Thanks in advance

Hello everyone,

 

 

In a  database batchable...How do I put a 5 records limit to the scope? 

 

global void execute(Database.BatchableContext info, List<Contact> scope)

 

 

Thanks in advance!

I have a formula field with a value and I need to input this value in a text field type for all opportunities.

It's possible?

Hello everyone,

 

Is there any way to let a user convert leads only if he is the owner?

 

Thanks in advance!

  • November 10, 2011
  • Like
  • 0

 

 

Hello everyone,

We have an Excel Worksheet of 400 columns and 3000 rows and It'd be great If we could load It into Salesforce. 

Does anyone else have to do something like this? any idea or advice will be more than welcome!!

 

Thanks in advance!!

  • September 22, 2011
  • Like
  • 0

Hello everyone,

 

Please, clould anyone show me how to update all the leads with batch processing in a very easy and simple way?

 

Thanks in advance

 

Javier Jiménez

What's the best way to find duplicated leads, accounts and contacts?

 

 

I have to know if there is duplicated information, with different account managers working on It!!

 

 

  • November 15, 2010
  • Like
  • 0