Search
-
Hi Andy,
My apologies, there are a few more steps than I may have indicated. The button is only one part of it. You'll need to slightly alter the CRM_EditDocumentLink screen. The CRM_EditDocumentLink screen does grab all of the Shared Results and puts them on screen. There are however hidden actions that reset fields, then enter ...
-
Hi Andy,
At this time there the Gmail Gadget does not allow for attachments to be automatically uploaded to you Method or SmartVault accounts. You will have to save the attachment to your computer first, then upload it through the Documents Tab. This could be a feature that will be offered down the road, but currently ...
-
When creating an activity from an email that has an attachment, is there any way of saving the attachment to either Method or Smartvault?
-
Just a couple of quick ones.
When displaying date fields on a template is there anyway of removing the time element?
How are multiple line items, on an estimate for example, displayed within a template?
-
Here is my Python:
import webapp2
import urllib
from google.appengine.api import urlfetch
class MainHandler(webapp2.RequestHandler):
def get(self):
self.response.headers['Content-Type'] = 'text/plain'
url = ...
-
Dave,
I need to add that I have used a where clause similar to the one above using the MethodAPI and Excel VBA. So now I am wondering if PHP and cURL are the culprits. Any ideas?
-
Dave,
I have tried a data range which does return data. When I use "<tem:strWhereClause>(TxnDate >= '2013-09-23')</tem:strWhereClause>", many record are retrieved. However, when I try to limit the search to one week with "<tem:strWhereClause>(TxnDate >= '2013-09-23') AND (TxnDate <= ...
-
Thanks for your response Dave.
I am hoping to use Google App Engine with Python. I am using the urllib.urlencode() function. In my dictionary I have {arrInsertFieldArray : ['name', 'assignedTo']}. I pass the dictionary to urlencode() and send the resulting string to Method, but I am not ...
-
Hi nsmith_piano,
It can be done....but without know what language you are using, I'm not sure where to point you.
I'm gonna advise in this case you google 'HTTP Post an array?'. That should help you find the solution pretty quick.
Dave
-
Hi viret56,
2 things come to mind off the top of my head.
1. Does your data actually have records in the date range?
2. Try changing your dates to be YYYY-Mon-DD format,...namely TxnDate >= '2013-Sep-30' AND TxnDate <= '2013-oct-06' to avoid an ambiguity error and your enddate being read as jun 10, 2013
Dave
|
|
|