• Nila
  • NEWBIE
  • 0 Points
  • Member since 2007

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 13
    Questions
  • 7
    Replies
Hi There,
I have moved my application from one developer account to another developer  account.
when I try to run application from another account I am getting this error
API is not enabled for this Organization or Partner
Any idea?
 
  • October 04, 2007
  • Like
  • 0
Hi There,
I am trying to deploy unmanaged application from one developer account to another developer account. 
 
After installing application I am overriding tab but when I install to another account I can not see button override.
 
I created package of s-control, objects, tabs and application
 
Any idea?
Thanks,
Nila

 

  • October 04, 2007
  • Like
  • 0
HI There,
I am trying to install License Management App When Installing its giving me this error :
Installing this package requires the following feature and its associated permissions: Record Type
Any idea ?
Basically, I have created one unmanged application now I open up new account when I try to install my unmanagd application its asking me to first install License Management app...
I have just started with this.. And now I am confused?
Many Thanks,
Nila
 
  • October 03, 2007
  • Like
  • 0
Hi There,
I have list button on contacts. I wants to grab multiple contact basically.Button is using Custom S-Control Custom S- Control its redirecting to other site but its throwing invalid URI . I am Passing Application URL and Session ID and ContactID's in urI. Any idea whe I am gettting Invalid URI? If I pass from single contact its work but for multiple contact its throwing error...
Any suggestion will be great...
Thanks
  • September 28, 2007
  • Like
  • 0
Hi There,
I am trying to store session in database in .Net project
 
when I run application I am getting this error  "'salesforce_payment.SforceService' in Assembly 'App_WebReferences.ldeop_29, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null' is not marked as serializable." i.e. Unable to serialize the session state. In 'StateServer' and 'SQLServer' mode, ASP.NET will serialize the session state objects, and as a result non-serializable objects or MarshalByRef objects are not permitted.
 
How can I make salesforce wsdl(web service) serializable?
 
Thanks in advance
Cheers
Nila
 
  • September 13, 2007
  • Like
  • 0
Hi There,
I have custom s-control to send email to User . Before it was working suddenly it stops working I can not see anything wrong . Any idea? Do I need to change any setting in salesfoece?
 
Code looks like
var singleRequest= new sforce.SingleEmailMessage();
singleRequest.toAddresses =contactEmail;
singleRequest.htmlBody = strBody;
singleRequest.bccAddresses = user;
singleRequest.subject = "test";
singleRequest.replyTo = user;
try
{
var sendMailRes = sforce.connection.sendEmail([singleRequest]);
alert('Email sent to user id: ' + contactEmail);
}
catch(err) {
alert(err)
}
  • September 12, 2007
  • Like
  • 0
Hi There,
I have custom object customer It has unique ID . Now in Page layout I dont want that ID to be editable I want it to read only. But I Can not make it read only. That id is a standard field and Datatype is text. I also tried to set it through profile but didnt help.
can you please help me?
Thanks,
Nila
  • September 04, 2007
  • Like
  • 0
Hi There,
I am trying to update selfservice user contactID through code its giving me error like "Unable to create/update fields: ContactId. Please check the security settings of this field and verify that it is read/write for your profile"
where can I change contactId security settings?
I tried from security controls -> field security -> contacts object but there is not contactid field for contacts object?
can you please help me?
Thanks,
Nila
  • August 31, 2007
  • Like
  • 0
HI There,
I am trying to create Self service user. For some User its giving error that Invalid Password ! Passowrd does not contain user name.is it any way to change this password policy?
Thanks in advance
  • August 30, 2007
  • Like
  • 0
Hi There,
I am trying to export data using Custom S- control. I can get all data but I dont know how to export all data to Excel?
Any idea?
Thanks,
  • August 13, 2007
  • Like
  • 0
Hi There,
I am trying to access Custom object from Account . I can only access custom object in edit mode its not pre populating all fields. Account object is related to Product and product is related to custom object
Any idea how can I access custom object from Account?
 
my url looks like
<a href='/a02/e?retURL=%2Fa0C%2Fo'&"+productID+"& "&00N2000000142E5 ="+myCustomID +" &" target=_parent>"+ myCustomID + "</a>
 
Thanks in Advance,
Appreciate
 
  • August 10, 2007
  • Like
  • 0
Hi There,
I am trying to create s-control for email . I can send single email without template. If I try to send email with template its not worikng.
Any idea?
code looks like
 
var user = sforce.connection.getUserInfo().userEmail;
var queryResponse = sforce.connection.query("select id from emailtemplate where name = 'test'");
var records = queryResponse.getArray("records");
var templatedId = records[0];
var request = new sforce.MassEmailMessage();
massRequest.saveAsActivity = false;
request .templateId = templatedId ;
var ids = new Array(1);
  ids[0] = "{!Contact.Id}";
massRequest.targetObjectIds = ids;
massRequest.subject = "sent through ajax test driver";
massRequest.replyTo = user;
var sendMailRes = sforce.connection.sendEmail([massRequest]);
Error is
faultcode 'soapenv:Client', faultstring:'Unexpected element {urn:partner.soap.sforce.com}type during simple type deserialization
  • August 06, 2007
  • Like
  • 0
Does anyone out there know how to call an email template from a custom button?
 
Thanks in advance.
  • August 03, 2007
  • Like
  • 0
Hi There,
I have moved my application from one developer account to another developer  account.
when I try to run application from another account I am getting this error
API is not enabled for this Organization or Partner
Any idea?
 
  • October 04, 2007
  • Like
  • 0
Hi There,
I am trying to store session in database in .Net project
 
when I run application I am getting this error  "'salesforce_payment.SforceService' in Assembly 'App_WebReferences.ldeop_29, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null' is not marked as serializable." i.e. Unable to serialize the session state. In 'StateServer' and 'SQLServer' mode, ASP.NET will serialize the session state objects, and as a result non-serializable objects or MarshalByRef objects are not permitted.
 
How can I make salesforce wsdl(web service) serializable?
 
Thanks in advance
Cheers
Nila
 
  • September 13, 2007
  • Like
  • 0
Hi There,
I have custom s-control to send email to User . Before it was working suddenly it stops working I can not see anything wrong . Any idea? Do I need to change any setting in salesfoece?
 
Code looks like
var singleRequest= new sforce.SingleEmailMessage();
singleRequest.toAddresses =contactEmail;
singleRequest.htmlBody = strBody;
singleRequest.bccAddresses = user;
singleRequest.subject = "test";
singleRequest.replyTo = user;
try
{
var sendMailRes = sforce.connection.sendEmail([singleRequest]);
alert('Email sent to user id: ' + contactEmail);
}
catch(err) {
alert(err)
}
  • September 12, 2007
  • Like
  • 0
Hi There,
I am trying to update selfservice user contactID through code its giving me error like "Unable to create/update fields: ContactId. Please check the security settings of this field and verify that it is read/write for your profile"
where can I change contactId security settings?
I tried from security controls -> field security -> contacts object but there is not contactid field for contacts object?
can you please help me?
Thanks,
Nila
  • August 31, 2007
  • Like
  • 0
Hi There,
I am trying to export data using Custom S- control. I can get all data but I dont know how to export all data to Excel?
Any idea?
Thanks,
  • August 13, 2007
  • Like
  • 0
Hi There,
I am trying to create s-control for email . I can send single email without template. If I try to send email with template its not worikng.
Any idea?
code looks like
 
var user = sforce.connection.getUserInfo().userEmail;
var queryResponse = sforce.connection.query("select id from emailtemplate where name = 'test'");
var records = queryResponse.getArray("records");
var templatedId = records[0];
var request = new sforce.MassEmailMessage();
massRequest.saveAsActivity = false;
request .templateId = templatedId ;
var ids = new Array(1);
  ids[0] = "{!Contact.Id}";
massRequest.targetObjectIds = ids;
massRequest.subject = "sent through ajax test driver";
massRequest.replyTo = user;
var sendMailRes = sforce.connection.sendEmail([massRequest]);
Error is
faultcode 'soapenv:Client', faultstring:'Unexpected element {urn:partner.soap.sforce.com}type during simple type deserialization
  • August 06, 2007
  • Like
  • 0