• Gareth Davies
  • NEWBIE
  • 65 Points
  • Member since 2004

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 13
    Questions
  • 240
    Replies

Is it possible to either run a report or retrieve a report meta data through the API? If so where would the definition of the reports syntax be defined?

 

I would like to drive code based on how my users have set filter criteria on certain reports.

We are creating a simple survey pluggin to SF account. I have 3 custom objects as shown in the image below. And I have defined their relationships. If I have the Campaign ID in my development enviornment how can I create a Survey Custom Object programatically.
 
This is my code;

Campaign campaign = new Campaign();

campaign.Id = "701500000009731";

campaign.Name = "BreakFast Event";

campaign.surverys__r <------ [HOW CAN I CREATE the custom object here and add values]

Here is my DSD.

 

Hi,
I have written a program in .NET that logins in to Sales Force and extracts data and reformats it in an excel file.  It works fine when run from the command line or within windows, but I want to run it within SalesForce.  Most probably create some type of s-control.  The main reason I would like to run it within SalesForce is because the user will already be authenticated, so it makes it easier for them to just click a button/link. 

Is there any samples/codes that I can be pointed to or any suggestions?

Hi All,
 
Can anyone tell me where can I find the documents related to SFDC integration with Informatica.
 
Thanks,
Hello- I'm new to Salesforce, an experienced developer otherwise.
I have been provided with a Salesforce account with a simple list of customers in it, and a report I'd like to get the contents of (built by someone else)

I now have Perl Salesforce::Simple working, connecting to the account, and listing some fundemental objects. ( I don't know what they mean yet!) I'd like to execute this report and recieve the result back.

The way Salesforce::Simple works is that it just wraps a SOQL query. Some type information is there, but I dont have to deal with it if I don't have to... Far, far simpler than the whole SOAP/WSDL model.

shortest route from A to B?

thanks in advance
 -Brian

I think I found a bug in the version 9 AJAX library.

I am trying to update a record of a custom object type.
The "Name" of the custom object type is set to be an auto-generated ID.

Sequence:
    Retrieve() the required columns of obejct using ID.
    This includes the Name field.
    Update() a field (in this case "collected amount").

    The update() call callbacks to my onSuccess handling function (i.e. no error reported) but the update fails.

If I remove the Name field from the object (by creating a new one and setting ID) then there is no issue everything works as expected.

I am not affected by this error now, but I think the API / AJAX code is not throwing on the attempt to update the auto generated NAME field which makes the update call fail.

   
Hi
I want to use Ajax in external site,because the whoe site(Product)  was devloped uing Ajaxpro.So we want ada Tickeing module to it.Using Salesforce we will create self-service users and enable them.
 
Now  want to give a custome screens that match with existing layout,
 
i.e we dont want separate login again fo Selef-Service user. Because i have existing credentails are set to SS User.
 
If this not works ,how i can use my custom page to validate SS user and create cases and views cases of that user?
 
Any example to work with AJAX with external site.
 
 
I am new to Salesforce.com Integration how i can use selfService AI call in my alication
Please Help Me.
 
 
Hi,
 
I am trying to install the Apex Toolkit for eclipse.
I've been following the guidelines from:
I keep getting stuck at step 9:
9. In the following dialog, select the Apex Toolkit and then click “Select Required”
Here i am presented with the following error:
Apex Eclipse Toolkit (8.0.2002) requires plug-in "org.apache.axis"
I am working on Windows Vista Home Premium.
I am running Eclipse Version 3.2.2
I have installed the latest version of Java "Windows Platform - Java(TM) SE Development Kit 6 Update 1" from http://java.sun.com/javase/downloads/index.jsp
Please Help Me...
 
This is the scenario.
For a particular User Account i have 100 Leads. Now i have another user account . I need to transfer all old Leads to new User Account.(I want this to be done in Dot Net)
 
Please help
 
Thanks in Advance
 
We have a case closed survey that creates a new case via web2case. The survey form updates a custom field called "surveyCaseNumber" with the case number of the case being surveyed.
 
When the survey is done, I would like to update the survey cases with information from the original cases. Specifically, I would like to accomplish the following:
 
1. Set the owner of each survey case to the owner of the original case.
2. Set the contact of each survey case to the contact of the original case.
 
I suspect an S-control may be the way to go, but I'm new to S-controls.
 
Can someone provide example code for how to do this?
 
Thanks!
I know this is simple, so I must be doing something wrong. Please help.

I am taking baby steps with APEX - having now created and run triggers I have progressed to creating a package and want to expose it via the API.

This is the package which saves without Error from Eclipse.

Code:
package GWDWebServiceTest{

 webService Id GWDTest(String lastName, Account a)
 {
   Contact  c = new Contact (LastName = lastName, AccountId = a.Id);
   insert c;
   commit;
   return c.id;
 }
}
I expected that when I generated the WSDL (Enterprise or Partner, I've tried both) I would see a method called GWDTest (or perhaps GWDWebServiceTest.GWDTest) but I don't. I have checked that I don't have two packages with the same name and I don't (So it's not a name space issue).

I even tried to access it using this piece of AJAX

Code:
<script type="text/javascript" src="/js/functions.js"></script>
    <script src="/soap/ajax/8.0/connection.js"></script>
    <script src="/soap/ajax/8.0/apex.js"></script>
    <script language="javascript">
        sforce.debug.trace = true;
        
     function makeaContact()
     {
      alert ("Hi");

      try
      {
       var account = sforce.SObject("Account");
       var id = sforce.apex.execute ("GWDWebServiceTest","GWDTest",{a:"Smith",b:account});
       alert (id);
      }
      catch (ex)
      {
       alert ("Failed : " + ex.message);
      }
     }
    </script>

 But I only get the alert that says "Failed: undefined".

Any pointers?

Cheers
Gareth.

 

Hi everyone --

I'm building an application in .NET 2.0 and storing values into Session objects ("In Process") so I can access the objects on other pages in my application.  The size and number of objects I'm storing as session objects has grown and now the application is experiencing performance problems (and it frequently loses the session objects).

Does anyone have experience using .NET 2.0 session objects?  Would you recommend using "In Process" session objects (versus "SQL Server" mode)?  Any recommendations or preferences about better ways to maintain state in a .NET application instead of using session objects?

Michael
My employer collects system monitoring info from our customers.  They enter it into a webform on our website, which in turn sends us an e-mail.

Somebody at the company then manually enters that info from these e-mails into salesforce.

I presume there must be a way to automate this process and take the laborious task off the shoulders of the employee at our company.

What options are available for allowing the info submitted by customers via a webform to automatically find its way into salesforce without manual receipt of the e-mail and subsequent data entry into saleforce by an employee?
Hi,
 
currently I'm developing an SalesForce integration with a call application. This application provides an integrated webbrowser in which I want to load the normal SalesForce interface/application.
When a call is coming in, I want to automatically search for the account/contact who is calling in SalesForce.
Initially, I have done some investigating on the SF API which I can use. I can search directly some SQL statements for the necessary information. However, in that case I do need to develop an interface myself. What I basically want is that I use the complete SalesForce interface within my application, and that when I search for a Contact for example, that I display that contact information in SF the same way as when I've done a search in SF manually.
In that way, the user can work in SF whole day, with the standard interface, only they have another skin and additional functionality in the parent application.
 
As this is my first SF development, any help is appreciated. Btw, I want to develop it in ASP.NET
 
TIA, Rutger

Yesterday the main www.salesforce.com site was down periodically.  Because of this, our S-Controls were encountering javascript errors ...presumably because the javascript source file is linked as follows: https://www.salesforce.com/services/lib/ajax/beta3.3/sforceclient.js

Are there alternate locations for this file that can be used to avoid this scenario?  I've tried the na2 server but the file does not appear to be there.

Any help would be appreciated,

 

John

My organization seems to be resistant to granting us the ability to use the synch tool between outlook and Salesforce.
 
Does anyone know if there is any real secruity risk to our OUTLOOK Exchange Server that we need to know about? 
 
 
I downloaded the ASP samples from here:
https://wiki.apexdevnet.com/index.php/API#.NET
and ran the installer.  When I open the solution file with visual stdio.net, I get:
"The project file or web cannot be found"
under the ASPSample2 project.

Help?

I did not know where to post this, sorry if this is the wrong place!
 
Does salesforce use Oracle as the database?
 
If so could someone please confirm this?
 
Thanks,
Mike
Maxim Int Products
   
We are working on a project and I was trying to find a reference regarding accessing reports via the API. You would think since the Office edition provides just this functionality the support should be there but I have not been able to find any documentation.  Does anyone know if this is possible?

Thanks

Ok sorry.. found this post..
http://community.salesforce.com/sforce/board/message?board.id=NET_development&message.id=2198&query.id=40799#M2198

There was talk of support this in the future. Does anyone know if this made it to the Winter 07 release?

Message Edited by tango on 11-06-2006 07:25 PM

Message Edited by tango on 11-06-2006 07:26 PM