• venkatesh
  • NEWBIE
  • 50 Points
  • Member since 2007

  • Chatter
    Feed
  • 2
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 44
    Questions
  • 60
    Replies

Hi, I am making the webservice GET and POST to the database from Salesforce. Some of the time am getting "User Key Not specified." exception as a response for that POST call while posting XML data to the external database. Please inform me the details if any one facing the same issue.

 

Please tell me solution if any for this issue.

 

Thanks in advance.

Hi,

As i read all the stuffs regarding VF , so m sure that we can incoporate this functionality. How can i add . add row / delete row functionality in my visualforce page.....

1) i want to add multiple rows through JS or any other method please suggest.

2) i want to take all the row values in my custom controller..

3) i can't use Visualforce tags in my javascript. Please suggest with some sample code , i will be greatly appreciate...

 

thnx

Hi,

 

        I heard that Adninistrator(one who developed amd deployed the application in AppExchange) can track the version of the application which will be installed by different clients. I would like to know how this feature can be implemented in Force.com platform or I would like to know whether I can find any feature within the salesforce to find the same. Please provide me the details, if someone knows about tracking or reporting of the Appexchange application.

 

Thanks in advance.

HI,

 

 I have created a Managed package and deployed in new developer account for testing. This package does not contain Workflow rule because we can not include time based workflow rule in package. So I created the Workflow manually in account where I installed the package and activated the same workflow rule. But this workflow rule will not get activated. 

 

Please let me know any suggetion to activate the workflow where I installed the Managed Package.

 

I am looking for a suggestion............

 

Please help me :smileymad:!!!!!!!!

 

Thanks in advance.

 

 

I also tried to install the package which contains workflow rule(workflow which does not contain time trigger can be uploaded to package). But still I could not activate the workflow.

 

Please let me know any one from Forum face the same issue.

Message Edited by venkatesh on 04-15-2009 06:05 AM
Message Edited by venkatesh on 04-15-2009 10:19 PM

HI,

 

Anyone knows how we can write the Apex code for conflict resolution?

If 'SFDC wins' option is selected, I don't know what needs to be done(how to compare the Salesforce data with external web service data).

 

Please help me anyone regarding this.

 

Thanks in advance.

:smileymad::smileysad: 

Message Edited by venkatesh on 03-10-2009 08:07 AM

Hi,

 

I will have to write the Apex class for associating master object with the chile object. How I can achieve this scenario.

 

Please help me........

 

Thanks in advance.

 

 :smileymad: :smileymad:

Message Edited by venkatesh on 03-06-2009 06:43 AM

 Hi,

 

if ((purgeType == 'LAST_N_DAYS') && (nDays <= 365)) {
List<ConnectCompiere_Log__c> lastNDays = new List<ConnectCompiere_Log__c>([SELECT Id FROM ConnectCompiere_Log__c WHERE CreatedDate >: System.now().addDays(-nDays)]);
// for(ConnectCompiere_Log__c rec:lastNDays) {
// delete rec;
// }
System.debug('Selecting' + lastNDays.size() + ' log records');
delete lastNDays;
}

 

Im getting the below error for the above code. 

 

Error: Invalid Data.
Review all error messages below to correct your data.
Apex trigger Purging caused an unexpected exception, contact your administrator: Purging: execution of AfterInsert caused by: System.Exception: Too many DML rows: 440: 

 

Above code selecting 440 rows to delete from the object. While deleting I am getting above error.

 

 Please help me to delete the mass records.

 

Thanks in advance.

 

Please Please help me!!!!!!!!!!!!!!!!!! :smileysad: 

Message Edited by venkatesh on 03-03-2009 12:32 AM

How I can relate Parent object with child object in salesforce UI?

 

I want this relationship for below concept/scenario:

 

1) I will be getting the data for Account object from external system by using Web Service connection.

2) When Account objects are upserted/inserted, related sales Order object details and invoice object details also should get updated.

3) The fields of the Sales Order and Invoice objects should be displayed as list view in Account object.

 

Please help me to achieve this scenario.

 

 

:smileysad: :smileysad:

 

 

Hi ,

I am writing a XML of the below mentuoned format ,

 

<customers>

   <partner>

      <id></id>

      <name></name>

      <age></age>

   </partner>

<partner>

      <id></id>

      <name></name>

      <age></age>

 </partner>

 

</customers>

 

can anyone suggest anything like XMLDom parser to create XML documents easily.. thanx

  

Hi all,

Using a partner application (Clicktools) that works through the API, I am attempting to create a new custom object and update fields within that object, from a custom form (built in Clicktools). I had set this up and it was all working fine. Now when I try to create the object Salesforce returns the following error message:

ERROR: Processing instance (Live) Loss Survey. Salesforce error: XML Parse Error: org.xml.sax.SAXParseException: XML document structures must start and end within the same entity.

at org.apache.xerces.util.ErrorHandlerWrapper.createSAXParseException(Unknown Source)

        at org.apache.xerces.util.ErrorHandlerWrapper.fatalError(Unknown Source)

        at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown Source)

        at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown Source)

        at org.apache.xerces.impl.XMLScanner.reportFatalError(Unknown Source)

        at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.endEntity(Unknown Source)

        at org.apache.xerces.impl.XMLDocumentScannerImpl.endEntity(Unknown Source)

        at org.apache.xerces.impl.XMLEntityManager.endEntity(Unknown Source)

        at org.apache.xerces.impl.XMLEntityScanner.load(Unknown Source)

        at org.apache.xerces.impl.XMLEntityScanner.peekChar(Unknown Source)

        at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanCDATASection(Unknown Source)

        at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown Source)

        at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)

        at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)

        at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)

        at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)

        at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)

        at org.apache.xerces.jaxp.SAXParserImpl$JAXPSAXParser.parse(Unknown Source)

        at org.apache.xerces.jaxp.SAXParserImpl.parse(Unknown Source)

        at javax.xml.parsers.SAXParser.parse(Unknown Source)

        at core.email.tools.XMLHandler.parse(XMLHandler.java:159)

        at core.email.tools.XMLHandler.parse(XMLHandler.java:129)

        at core.email.tools.BaseTempl

Within the custom object I am updating a number of custom fields. One of these is a date field. If I remove the date field from the object, or from the custom form information I’m passing through the API, everything works as it should. Adding a new date field causes the error again.

I have a similar problem when trying to update existing account information from a custom form – used to work, now it doesn’t. Again it seems to be a custom date field that’s causing the problem.

The Salesforce account I am working on has recently been upgraded from Professional to Enterprise edition.

 

Any ideas?

Thanks.