• yamini
  • NEWBIE
  • 25 Points
  • Member since 2011

  • Chatter
    Feed
  • 1
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 10
    Questions
  • 11
    Replies

Hi,

 

 

My requirement is integrating the echosign with salesforce. I am generating the classes from wsdl of echosign. But i don't know how to use that classes. I am new to usage of api.How to send a document using that classes. Can any body please help me.

 

 

Thanks,

Yamini.

  • December 07, 2011
  • Like
  • 0

Hi, 

I am nue to commandline dataloader. Please any one help me for usage of database-conf.xml. Its very urgent for me. Thanks in advance.

 

 

Thanks,

Yamini.

  • October 22, 2011
  • Like
  • 0

Hi, 

 

i have the custom object test it contain master look up with opportunity. And i have another object as testing.In testing i have a master look up with test object. Now i want to use the owner id of testing. How to get the owner id of testing. Please help me out. 

 

If i am want the owner id for test i use the query like

 

System.debug([select id,opportunity_name__r.ownerid from test__c]);

 

opportunity_name__c is master look up with opportunity in test.  Now i want the owner id of testing. How to use the query for getting the owner id of testing. please help me.

  • October 19, 2011
  • Like
  • 0

Hi, 

 

I have sand box account of client. In that account i have the custom object as testing. Now i wrote the trigger for the testing object. Want to collect the owner id of object in to set. When i add the owner id in to set it gives the error as 

 

No such column 'ownerid' on entity 'testing__c'. If you are attempting to use a custom field, be sure to append the '__c' after the custom field name.

 

and i queried from system log (system.debug([select ownerid from application__C]);)also it give the same error. This object contain master detail look up with opportunity. 

 

In the same account the owner id working for the custom object which is not having the look up with any object. How to solve this error and how to collect the owner id of custom object.

  • October 15, 2011
  • Like
  • 0

Hi, 

 

How to get the url of contact in to string when we click on the new button from the related list of account record.

 

Thanks,

Yamini.

  • September 06, 2011
  • Like
  • 0

Hi,

 

How to work the salesforce web to lead with google analytics. How to track the lead using google analytics. I am tried a lot but am not getting. Any one please help me for solving this. Thanks in advance.

 

 

Thanks,

Yamini.

  • September 05, 2011
  • Like
  • 0

Hi,

 

Any one please help me for, getting the tracking information, site name and profile id of google analytics in to salesforce through api. Thanks in advance.

 

Thanks,

Lakshmi.

  • September 02, 2011
  • Like
  • 0

Hi,

 

How to integrate the google analytics with salesforce. Any one help me how to solve these.

 

Thanks,

Yamini.

  • August 31, 2011
  • Like
  • 0

Hi,

 

              how to use the entitle management  in salesforce. can any one please help me how to work with entitle management in salesforce. how to work with mile stone and service contact in salesforce.

 

 

Thanks,

Lakshmi

  • August 10, 2011
  • Like
  • 0

Hi,

 

  I want to display the account and related contacts in the same visual force page. Actually i am achieved this like,

i am displayed the account names in first page block and am kept the command link for that account names if we click on that command link that will displayed the contacts related to that particular account in another pageblock. But, Now i want to display the account name first and all related contacts line by line. like that  i want to displat the contacts for all accounts. please any one help me how to solve this...

 

 

example

Maple Lawn Office III
8161 Maple Lawn Blvd
Fulton, MD 20759

Contact: Lydia Chandlee
G & R Management
840 First Street, NE
Washington, DC 20002

Phone: 301-807-0271
Fax: 202-898-0053
Email: 

Contract: No
Inspection Date: 4/6/2010
Inspection Type: Annual
5 Year Test: 2012
Reg/Serial #: HO1863
Service Company: Kone
Equipment Type: Passenger Hydraulic
Annual Price (per unit): $180
Semi-Annual Prince (per unit): $80

Maple Lawn Office III
8161 Maple Lawn Blvd
Fulton, MD 20759

Contact: Lydia Chandlee
G & R Management
840 First Street, NE
Washington, DC 20002

Phone: 301-807-0271
Fax: 202-898-0053
Email: 

Contract: Yes
Inspection Date: 4/6/2010
Inspection Type: Annual
5 Year Test: 2012
Reg/Serial #: HO1863
Service Company: Kone
Equipment Type: Passenger Hydraulic
Annual Price (per unit): $180
Semi-Annual Prince (per unit): $80

 

 

 

thanks,

yamini

  • March 29, 2011
  • Like
  • 0

Hi,

 

How to integrate the google analytics with salesforce. Any one help me how to solve these.

 

Thanks,

Yamini.

  • August 31, 2011
  • Like
  • 0

Hi,

How to update the group of fields using batch apex class. I am update the single field using batch apex class. But am unable to update group of fields. Any one help me for solving these. I am follow the class for single field updation 

 

}

global class BatchUpdateField implements Database.Batchable<sObject>{
global final String Query;
global final String Field;
global final String Value;
global BatchUpdateField(String q, String f, String v){
Query = q;
Field = f;
Value = v;
}
global Database.QueryLocator start(Database.BatchableContext BC){
return Database.getQueryLocator(query);
}
global void execute(Database.BatchableContext BC, List<sObject> scope){  
for(sobject s : scope){
s.put(Field,Value);
}

update scope;
}
global void finish(Database.BatchableContext BC){  
AsyncApexJob a = [Select Id, Status, NumberOfErrors, JobItemsProcessed,TotalJobItems,CreatedBy.Email
from AsyncApexJob where Id = :BC.getJobId()];
string message = 'The batch Apex job processed ' + a.TotalJobItems + ' batches with '+ a.NumberOfErrors + ' failures.';
// Send an email to the Apex job's submitter notifying of job completion.
Messaging.SingleEmailMessage mail = new Messaging.SingleEmailMessage();
String[] toAddresses = new String[] {a.CreatedBy.Email};
mail.setToAddresses(toAddresses);
mail.setSubject('Salesforce BatchUpdateField ' + a.Status);
mail.setPlainTextBody('The batch Apex job processed ' + a.TotalJobItems + ' batches with '+ a.NumberOfErrors + ' failures.');
Messaging.sendEmail(new Messaging.SingleEmailMessage[] { mail });  
}

 

using the query for execution from systemlog:

 

Database.executebatch(batch,200);

string query='select id,website from account';
batchupdatefield batch=new batchupdatefield(query,'website','www.dskvap.com');

Hi,

 

  I want to display the account and related contacts in the same visual force page. Actually i am achieved this like,

i am displayed the account names in first page block and am kept the command link for that account names if we click on that command link that will displayed the contacts related to that particular account in another pageblock. But, Now i want to display the account name first and all related contacts line by line. like that  i want to displat the contacts for all accounts. please any one help me how to solve this...

 

 

example

Maple Lawn Office III
8161 Maple Lawn Blvd
Fulton, MD 20759

Contact: Lydia Chandlee
G & R Management
840 First Street, NE
Washington, DC 20002

Phone: 301-807-0271
Fax: 202-898-0053
Email: 

Contract: No
Inspection Date: 4/6/2010
Inspection Type: Annual
5 Year Test: 2012
Reg/Serial #: HO1863
Service Company: Kone
Equipment Type: Passenger Hydraulic
Annual Price (per unit): $180
Semi-Annual Prince (per unit): $80

Maple Lawn Office III
8161 Maple Lawn Blvd
Fulton, MD 20759

Contact: Lydia Chandlee
G & R Management
840 First Street, NE
Washington, DC 20002

Phone: 301-807-0271
Fax: 202-898-0053
Email: 

Contract: Yes
Inspection Date: 4/6/2010
Inspection Type: Annual
5 Year Test: 2012
Reg/Serial #: HO1863
Service Company: Kone
Equipment Type: Passenger Hydraulic
Annual Price (per unit): $180
Semi-Annual Prince (per unit): $80

 

 

 

thanks,

yamini

  • March 29, 2011
  • Like
  • 0

 

Hi,
 
i placed 5 command links in visual force page and i placed the related data of 5 command links line by line in the same visual force page. Now my requirement is,
 
         if am click on the 4th command link,  want to scroll the visual force page up and display the data of 4th command link..
and if am click on the 2nd command link the page would scroll and display the data of 2nd command link.. please any one help me how to solve these. Actually i got the code in html as
 
 
<html>
<body>
<p>
<a href="#C4">See also Chapter 4.</a>
</p>
<p>
<a href="#C5">See also Chapter 5.</a>
</p>
<h2>Chapter 1</h2>
<p>This chapter explains ba bla bla</p>
<h2>Chapter 2</h2>
<p>This chapter explains ba bla bla</p>
<h2>Chapter 3</h2>
<p>This chapter explains ba bla bla</p>
<h2><a name="C4">Chapter 4</a></h2>
<p>This chapter explains ba bla bla</p>
<h2><a name="C5">Chapter 5</a></h2>
<p>This chapter explains ba bla bla</p>
<h2>Chapter 6</h2>
<p>This chapter explains ba bla bla</p>
<h2>Chapter 7</h2>
<p>This chapter explains ba bla bla</p>
<h2>Chapter 8</h2>
<p>This chapter explains ba bla bla</p>
<h2>Chapter 9</h2>
<p>This chapter explains ba bla bla</p>
<h2>Chapter 10</h2>
<p>This chapter explains ba bla bla</p>
<h2>Chapter 11</h2>
<p>This chapter explains ba bla bla</p>
<h2>Chapter 12</h2>
<p>This chapter explains ba bla bla</p>
<h2>Chapter 13</h2>
<p>This chapter explains ba bla bla</p>
<h2>Chapter 14</h2>
<p>This chapter explains ba bla bla</p>
<h2>Chapter 15</h2>
<p>This chapter explains ba bla bla</p>
<h2>Chapter 16</h2>
<p>This chapter explains ba bla bla</p>
<h2>Chapter 17</h2>
<p>This chapter explains ba bla bla</p>
</body>
</html>

 

How to insert/update from Microsoft SQL database server to Salesforce ?

Hi Everyone,

I'm new to Salesforce development and I hope this is the proper place to post my question, if not please let me know and I'll post accordingly.

Does anyone know how I can connect to my salesforce instance with SQL server.  I'm currently trying to figure out how we can do custom analystics using MS SQL Analysis Services and I would like to be able to pull in all of our salesforce data.  The specific tools i'm using are SSIS (SQL Server Integration Services) with Business development studio.  Further, I thought I might be able to connect to the salesforce web service using the web services event within SSIS and it appears with template supports very few web services outside of the microsoft world.

Any help greatly appreciate!, Thanks.

-mike