Browse By Tags
Home
»
All Tags
»
Key Values
ASP
ASP.NET
buttons
C#
Caching
Code Snippets
COM
Context
Custom Entity
Document Drop
Edit Screen
Entry Screen
Intranet
List Block
Login
Logoff
logon
Logout
Meta Data
Mode
Parameters
PipeLineGraphic
System Actions
Tab
Web Services
Blog Post:
Logging on to Sage CRM from within an Intranet Page
Jeff Richards
Some time ago I was asked about how users of an company intranet could have a logon screen presented to them that was part of an existing intranet page that when completed would bring the user into Sage CRM. In addition, once the user had finished their work inside Sage CRM and logged out they should...
on
1 Apr 2010
Blog Post:
Access Team IDs from within ASP pages linked to Team menu
Jeff Richards
In an ASP page to get the currentusers team or the selected users team you can access this with the normal GetContextInfo method. var intTeam = eWare.GetContextInfo("user", "user_primarychannelid"); var intSelectedTeam = eWare.GetContextInfo("selecteduser", "user_primarychannelid"...
on
13 Aug 2007
Blog Post:
Grabbing and Using Company and Person Context in Some Custom Entity ASP pages
Jeff Richards
A little while ago I wrote an article called " Adding the Document Drop Plugin into a Custom Page ". That article provided the code to include activex plugin into a custompage to allow upload of documents to the library. The orginal article's code that the company and person records were...
on
12 May 2009
Blog Post:
Passing Parameters and Automatic Logons
Jeff Richards
Some time ago I wrote an article " Passing Parameters Directly to CRM on Startup ". The example I gave in that post was a URL that could be sent to someone in an email. The URL hyperlink when followed would prompt the user for a log in and then take them to the standard opportunity list. http...
on
25 Feb 2009
Blog Post:
How did I get Here?
Jeff Richards
In this post I would like to consider how you can establish whether a page has just been called via a hyperlink (from the tab) or it has been called because "Save" action button has been pressed. Pages can be called either by direct hyperlinking to them or by clicking a "button"....
on
17 Oct 2007
Blog Post:
Is this the final word on what the URL variables mean?
Jeff Richards
A screen is called as a result of a hyperlink. This may be a button click, a call from the recent list or any other selection from the interface. A URL of a Case's Summary Screen will look something like this: http://localhost/CRM/eware.dll/Do?SID=198369875659391&Act=281&Mode=1&CLk...
on
17 Feb 2008
Blog Post:
Understanding GetContextInfo()
Jeff Richards
GetContextInfo() is perhaps the most commonly used method within the Sage CRM API. This is both within internal code (Create scripts, Validate scripts etc) and application extensions which maybe either COM ASP or .NET API. GetContextInfo() returns a named field from the given table based on the current...
on
23 Jan 2009
Blog Post:
Combining CRM WebServices and ASP.NET
Jeff Richards
The links in this article have been corrected and updated. It might seem that you can't use ASPX pages in the context of Sage CRM, but that is not the case as you can see from the simple example below. You can create a seperate ASP.NET application and integrate it with Sage CRM, the key...
on
22 Jan 2009
Blog Post:
Key Values in URLs
Jeff Richards
If you do any customization. Then very quickly you start to build hyperlinks that need to bring you directly into the correct context. Consider this partial URL from the Summary tab of the Company context. ...&act=200&key0=1&key1=28&key2=30... The keys can be read to understand...
on
13 Jul 2007
Blog Post:
Long List of Key Values for Sage CRM
Jeff Richards
Please see the previous articles that discuss the Key values in Sage CRM URLs. PreviousDominantKey = -1; DominantKey = 0; CompanyId = 1; //current company PersonId = 2; //person we are CURRENTLY viewing AddressId = 3; //address we are currently EDITING UserId = 4; //user for which we are viewing the...
on
15 Oct 2008
Blog Post:
Customizing a Screen
Jeff Richards
A screen is called as a result of a hyperlink. This may be a button click, a call from the recent list or any other selection from the interface. A URL of a Case's Summary Screen will look something like this: http://localhost/CRM/eware.dll/Do?SID=198369875659391&Act=281&Mode=1&CLk...
on
23 Jan 2009