Tag Cloud

CRM 2011 (161) CRM 4.0 (144) C# (116) JScript (109) Plugin (92) Registry (90) Techpedia (77) PyS60 (68) WScript (43) Plugin Message (31) Exploit (27) ShellCode (26) FAQ (22) JavaScript (21) Killer Codes (21) Hax (18) VB 6.0 (17) Commands (16) VBScript (16) Quotes (15) Turbo C++ (13) WMI (13) Security (11) 1337 (10) Tutorials (10) Asp.Net (9) Safe Boot (9) Python (8) Interview Questions (6) video (6) Ajax (5) VC++ (5) WebService (5) Workflow (5) Bat (4) Dorks (4) Sql Server (4) Aptitude (3) Picklist (3) Tweak (3) WCF (3) regex (3) Config (2) LINQ (2) PHP (2) Shell (2) Silverlight (2) TSql (2) flowchart (2) serialize (2) ASHX (1) CRM 4.0 Videos (1) Debug (1) FetchXml (1) GAC (1) General (1) Generics (1) HttpWebRequest (1) InputParameters (1) Lookup (1) Offline Plug-ins (1) OutputParameters (1) Plug-in Constructor (1) Protocol (1) RIA (1) Sharepoint (1) Walkthrough (1) Web.config (1) design patterns (1) generic (1) iframe (1) secure config (1) unsecure config (1) url (1)

Pages

Thursday, March 21, 2013

Get the Next Birthday

The following sample workflow activity returns the next birthday. Use this in a workflow that sends a birthday greeting to a customer. Note that this uses dynamic entity rather than strong types as is recommended for workflows and plug-ins.



using System;
using System.Collections;
using System.Workflow.ComponentModel.Compiler;
using System.Workflow.ComponentModel.Serialization;
using System.Workflow.ComponentModel;
using System.Workflow.ComponentModel.Design;
using System.Workflow.Runtime;
using System.Workflow.Activities;
using System.Workflow.Activities.Rules;
using System.Reflection;
using Microsoft.Crm.Workflow;
using Microsoft.Crm.Sdk;
using Microsoft.Crm.SdkTypeProxy;
using Microsoft.Crm.Sdk.Query;

namespace SampleWorkflows
{
///
/// Activity will return the next upcoming birthday that has just passed
///
/// If this year's birthday has not yet occurred, it will return this year's birthday.
/// Otherwise, it will return the birthday for next year.
///
/// A workflow can time-out when on this date.
///

[CrmWorkflowActivity("Get the Next Birthday", "Release Scenarios")]
[PersistOnClose]
public partial class UpdateNextBirthday : SequenceActivity
{
protected override ActivityExecutionStatus Execute(ActivityExecutionContext executionContext)
{
IContextService contextService = (IContextService)executionContext.GetService(typeof(IContextService));
IWorkflowContext context = contextService.Context;

//Create a CRM Service.
ICrmService crmService = context.CreateCrmService();

//Retrieve the contact ID.
Guid contactId = ((Lookup)base.GetValue(ContactProperty)).Value;

//Retrieve the entity to determine what the birth date is.
//Retrieve the Contact Entity
DynamicEntity contactEntity;
{
//Create the target.
TargetRetrieveDynamic retrieveTarget = new TargetRetrieveDynamic();
retrieveTarget.EntityId = contactId;
retrieveTarget.EntityName = EntityName.contact.ToString();

//Create a request.
RetrieveRequest retrieveRequest = new RetrieveRequest();
retrieveRequest.ColumnSet = new ColumnSet(new string[] {"birthdate" });
retrieveRequest.ReturnDynamicEntities = true;
retrieveRequest.Target = retrieveTarget;

//Execute the request.
RetrieveResponse retrieveResponse = (RetrieveResponse)crmService.Execute(retrieveRequest);

//Retrieve the Loan Application Entity.
contactEntity = retrieveResponse.BusinessEntity as DynamicEntity;
}

//Check to see if the current birthday is set. We don't want the activity to fail if the birth date is not set.
CrmDateTime contactBirthDate = (CrmDateTime)contactEntity["birthdate"];
if (contactBirthDate == null || (contactBirthDate.UniversalTime == null))
{
//Complete the execution of the activity.
return base.Execute(executionContext);
}

//Calculate the next birth date. Encapsulate it in a method so that the method can be used in the test case for verification purposes.
DateTime nextBirthdate = CalculateNextBirthday(contactBirthDate.UniversalTime);

//Update the next birthday field on the entity.
DynamicEntity updateEntity = new DynamicEntity(EntityName.contact.ToString());
updateEntity["contactid"] = new Key(contactId);
updateEntity["new_nextbirthday"] = CrmDateTime.FromUniversal(nextBirthdate);

crmService.Update(updateEntity);

CompositeActivity parentActivity = this.Parent;
while (parentActivity.Parent != null)
{
parentActivity = parentActivity.Parent;
}

context.PopulateEntitiesFrom((CrmWorkflow)parentActivity, "primaryEntity");

//Allow the base class to continue the execution.
return ActivityExecutionStatus.Closed;
}

//Define the variables.
public static DependencyProperty ContactProperty = DependencyProperty.Register("Contact", typeof(Lookup), typeof(UpdateNextBirthday));

//Define the properties.
[CrmInput("Update Next Birthdate for")]
[ValidationOption(ValidationOption.Required)]
[CrmReferenceTarget("contact")]
public Lookup Contact
{
get
{
return (Lookup)base.GetValue(ContactProperty);
}
set
{
//Validate the argument.
if (value == null || (value.IsNullSpecified && value.IsNull))
{
throw new InvalidPluginExecutionException("Contact Lookup cannot be null or have IsNullSpecified = true");
}
else if (value.type != null && value.type != "contact")
{
throw new InvalidPluginExecutionException("Contact Lookup must be a contact entity");
}
else if (value.Value == Guid.Empty)
{
throw new InvalidPluginExecutionException("Contact Lookup must contain a valid Guid");
}

base.SetValue(ContactProperty, value);
}
}

private DateTime CalculateNextBirthday(DateTime birthdate)
{
DateTime nextBirthday = new DateTime(birthdate.Year, birthdate.Month, birthdate.Day);

//Check to see if this birthday occurred in a leap year.
bool leapYearAdjust = false;
if (nextBirthday.Month == 2 && nextBirthday.Day == 29)
{
//Verify that this year was a leap year.
if (DateTime.IsLeapYear(nextBirthday.Year))
{
//Check to see if the current year is a leap year.
if (!DateTime.IsLeapYear(DateTime.Now.Year))
{
//Push the date to March 1st so that the date arithmetic will function correctly.
nextBirthday = nextBirthday.AddDays(1);
leapYearAdjust = true;
}
}
else
{
throw new InvalidPluginExecutionException("Invalid Birthdate specified", new ArgumentException("Birthdate"));
}
}

//Calculate the year difference.
nextBirthday = nextBirthday.AddYears(DateTime.Now.Year - nextBirthday.Year);

//Check to see if the date was adjusted.
if (leapYearAdjust && DateTime.IsLeapYear(nextBirthday.Year))
{
nextBirthday = nextBirthday.AddDays(-1);
}

return nextBirthday;
}
}
}




Wednesday, March 20, 2013

Calculate Distance

The following sample uses the MapPoint service to calculate the distance between two zip codes using a simple route. It has two input parameters for the start and end zip codes and one output parameter for the total distance calculated.



using System;
using System.Collections.Generic;
using System.Text;
using System.Workflow.Activities;
using System.Workflow.ComponentModel;
using System.Configuration;
using Microsoft.Crm.Sdk;
using Microsoft.Crm.Workflow;
using System.Net;
using System.Xml;

namespace CustomWorkflowActivity
{
// Get more information about the mappoint assembly from http://staging.mappoint.net/standard-30/
using net.mappoint.staging;

[CrmWorkflowActivity("Calculate Distance", "Mappoint Utilities")]
public class DistanceCalculator : SequenceActivity
{
protected override ActivityExecutionStatus Execute(ActivityExecutionContext executionContext)
{
// Set the MapPoint ID and password you created with your Bing Developer/License Account.
ICredentials creds = new NetworkCredential("MappointID", "MappointPassword");
string DataSourceName = "MapPoint.NA";
FindServiceSoap findService = new FindServiceSoap();
findService.Credentials = creds;
findService.PreAuthenticate = true;

RouteServiceSoap routeService = new RouteServiceSoap();
routeService.Credentials = creds;
routeService.PreAuthenticate = true;
routeService.UserInfoRouteHeaderValue = new UserInfoRouteHeader();
routeService.UserInfoRouteHeaderValue.DefaultDistanceUnit = DistanceUnit.Mile;

FindAddressSpecification addressSpecStart = new FindAddressSpecification();
addressSpecStart.DataSourceName = DataSourceName;
addressSpecStart.InputAddress = new Address();
addressSpecStart.InputAddress.PostalCode = this.zipCodeStart;

FindAddressSpecification addressSpecEnd = new FindAddressSpecification();
addressSpecEnd.DataSourceName = DataSourceName;
addressSpecEnd.InputAddress = new Address();
addressSpecEnd.InputAddress.PostalCode = this.zipCodeEnd;

FindResults resultsStart = findService.FindAddress(addressSpecStart);
FindResults resultsEnd = findService.FindAddress(addressSpecEnd);

LatLong startLatLong = resultsStart.Results[0].FoundLocation.LatLong;
LatLong endLatLong = resultsEnd.Results[0].FoundLocation.LatLong;

RouteSpecification routeSpec = new RouteSpecification();
routeSpec.DataSourceName = DataSourceName;
routeSpec.Segments = new SegmentSpecification[2];

routeSpec.Segments[0] = new SegmentSpecification();
routeSpec.Segments[0].Waypoint = new Waypoint();
routeSpec.Segments[0].Waypoint.Location = resultsStart.Results[0].FoundLocation;

routeSpec.Segments[1] = new SegmentSpecification();
routeSpec.Segments[1].Waypoint = new Waypoint();
routeSpec.Segments[1].Waypoint.Location = resultsEnd.Results[0].FoundLocation;


Route route = routeService.CalculateSimpleRoute(new LatLong[] { startLatLong, endLatLong }, DataSourceName, SegmentPreference.Quickest);
this.totalDistance = new CrmNumber((int)route.Itinerary.Distance);

return ActivityExecutionStatus.Closed;
}

public static DependencyProperty zipCodeStartProperty = DependencyProperty.Register("zipCodeStart", typeof(string), typeof(DistanceCalculator));

[CrmInput("Starting Zip Code")]
public string zipCodeStart
{
get
{
return (string)base.GetValue(zipCodeStartProperty);
}
set
{
base.SetValue(zipCodeStartProperty, value);
}
}

public static DependencyProperty zipCodeEndProperty = DependencyProperty.Register("zipCodeEnd", typeof(string), typeof(DistanceCalculator));

[CrmInput("Ending Zip Code")]
public string zipCodeEnd
{
get
{
return (string)base.GetValue(zipCodeEndProperty);
}
set
{
base.SetValue(zipCodeEndProperty, value);
}
}

public static DependencyProperty totalDistanceProperty = DependencyProperty.Register("totalDistance", typeof(CrmNumber), typeof(DistanceCalculator));

[CrmOutput("Total Distance")]
public CrmNumber totalDistance
{
get
{
return (CrmNumber)base.GetValue(totalDistanceProperty);
}
set
{
base.SetValue(totalDistanceProperty, value);
}

}
}

}




TEXT TO HTML REGEX METHOD



//TEXT TO HTML REGEX METHOD
public string TextToHtml(string inputtext )
{
inputtext = Regex.Replace(inputtext, "<", "<") ;
inputtext = Regex.Replace(inputtext, ">", ">") ;
inputtext = Regex.Replace(inputtext, @"http://(.\S+)", "$1") ;
inputtext = Regex.Replace(inputtext, @"ftp://(.\S+)", "$1ftp://$1\">$1;") ;
inputtext = Regex.Replace(inputtext, @"news://(.\S+)", "$1;") ;
inputtext = Regex.Replace(inputtext, @"(\S+\@.*\..\S+)", "$1;") ;
inputtext = Regex.Replace(inputtext, "\n", "
") ;
inputtext = Regex.Replace(inputtext, @"\s\s", " ") ;
return inputtext ;
}




Monday, March 18, 2013

Assign a Record to a Team

This sample shows how to assign a record to a team using the AssignRequest message.





using System;
using System.ServiceModel;
using System.ServiceModel.Description;

// These namespaces are found in the Microsoft.Xrm.Sdk.dll assembly
// found in the SDK\bin folder.
using Microsoft.Xrm.Sdk;
using Microsoft.Xrm.Sdk.Query;
using Microsoft.Xrm.Sdk.Discovery;


using Microsoft.Xrm.Sdk.Client;
using Microsoft.Crm.Sdk.Messages;



namespace Microsoft.Crm.Sdk.Samples
{

///
/// Demonstrates how to assign a record to a team.
/// If you want to run this sample repeatedly, you have the option to
/// delete all the records created at the end of execution.
///

public class AssignRecordToTeam
{
#region Class Level Members

///
/// Stores the organization service interface.
///

private OrganizationServiceProxy _serviceProxy;
private IOrganizationService _service;

// Define the IDs needed for this sample.
public Guid _accountId;
public Guid _teamId;
public Guid _roleId;

#endregion Class Level Members

#region How To Sample Code
///
/// Create and configure the organization service proxy.
/// Create a team, an account and a role.
/// Add read account privileges to the role.
/// Assign the role to the team so that they can read the account.
/// Assign the account to the team.
/// Optionally delete the account, team and role records.
/// The friendly name of
/// the target organization.

/// The name of the discovery server.
/// Indicates whether to prompt the user
/// to delete the records created in this sample.
///

public void Run(ServerConnection.Configuration serverConfig, bool promptForDelete)
{
try
{
// Connect to the Organization service.
// The using statement assures that the service proxy will be properly disposed.
using (_serviceProxy = ServerConnection.GetOrganizationProxy(serverConfig))
{
// This statement is required to enable early-bound type support.
_serviceProxy.EnableProxyTypes();

_service = (IOrganizationService)_serviceProxy;

// Call the method to create any data that this sample requires.
CreateRequiredRecords();

// Assign the account to a team.
AssignRequest assignRequest = new AssignRequest()
{
Assignee = new EntityReference
{
LogicalName = Team.EntityLogicalName,
Id = _teamId
},

Target = new EntityReference(Account.EntityLogicalName, _accountId)
};

_service.Execute(assignRequest);

Console.WriteLine("The account is owned by the team.");

DeleteRequiredRecords(promptForDelete);
}
}

// Catch any service fault exceptions that Microsoft Dynamics CRM throws.
catch (FaultException)
{
// You can handle an exception here or pass it back to the calling method.
throw;
}
}

///
/// This method creates any entity records that this sample requires.
/// Create a team, an account and a role.
/// Add read account privileges to the role.
/// Assign the role to the team so that they can read the account.
/// Assign the account to the team.
///

public void CreateRequiredRecords()
{
// Instantiate an account entity record and set its property values.
// See the Entity Metadata topic in the SDK documentation to determine
// which attributes must be set for each entity.
Account setupAccount = new Account
{
Name = "Example Account"
};

// Create the account record.
_accountId = _service.Create(setupAccount);
Console.WriteLine("Created {0}", setupAccount.Name);

// Retrieve the default business unit needed to create the team and role.
QueryExpression queryDefaultBusinessUnit = new QueryExpression
{
EntityName = BusinessUnit.EntityLogicalName,
ColumnSet = new ColumnSet("businessunitid" ),
Criteria = new FilterExpression()
};

queryDefaultBusinessUnit.Criteria.AddCondition("parentbusinessunitid",
ConditionOperator.Null);

BusinessUnit defaultBusinessUnit = (BusinessUnit)_service.RetrieveMultiple(
queryDefaultBusinessUnit).Entities[0];

// Instantiate a team entity record and set its property values.
// See the Entity Metadata topic in the SDK documentation to determine
// which attributes must be set for each entity.
Team setupTeam = new Team
{
Name = "Example Team",
BusinessUnitId = new EntityReference(BusinessUnit.EntityLogicalName,
defaultBusinessUnit.Id)
};

// Create a team record.
_teamId = _service.Create(setupTeam);
Console.WriteLine("Created {0}", setupTeam.Name);

// Instantiate a role entity record and set its property values.
// See the Entity Metadata topic in the SDK documentation to determine
// which attributes must be set for each entity.
Role setupRole = new Role
{
Name = "Example Role",
BusinessUnitId = new EntityReference(BusinessUnit.EntityLogicalName,
defaultBusinessUnit.Id)
};

// Create a role record. Typically you would use an existing role that has the
// the correct privileges. For this sample we need to be sure the role has
// at least the privilege to read account records.
_roleId = _service.Create(setupRole);
Console.WriteLine("Created {0}", setupRole.Name);

// Create a query expression to find the prvReadAccountPrivilege.
QueryExpression queryReadAccountPrivilege = new QueryExpression
{
EntityName = Privilege.EntityLogicalName,
ColumnSet = new ColumnSet("privilegeid", "name"),
Criteria = new FilterExpression()
};
queryReadAccountPrivilege.Criteria.AddCondition("name",
ConditionOperator.Equal, "prvReadAccount");

// Retrieve the prvReadAccount privilege.
Entity readAccountPrivilege = _service.RetrieveMultiple(
queryReadAccountPrivilege)[0];
Console.WriteLine("Retrieved {0}", readAccountPrivilege.Attributes["name"]);

// Add the prvReadAccount privilege to the example roles to assure the
// team can read accounts.
AddPrivilegesRoleRequest addPrivilegesRequest = new AddPrivilegesRoleRequest
{
RoleId = _roleId,
Privileges = new[]
{
// Grant prvReadAccount privilege.
new RolePrivilege
{
PrivilegeId = readAccountPrivilege.Id
}
}
};
_service.Execute(addPrivilegesRequest);

Console.WriteLine("Added privilege to role");

// Add the role to the team.
_service.Associate(
Team.EntityLogicalName,
_teamId,
new Relationship("teamroles_association"),
new EntityReferenceCollection() { new EntityReference(Role.EntityLogicalName, _roleId) });

Console.WriteLine("Assigned team to role");

// It takes some time for the privileges to propagate to the team. Delay the
// application until the privilege has been assigned.
bool teamLacksPrivilege = true;
while (teamLacksPrivilege)
{
RetrieveTeamPrivilegesRequest retrieveTeamPrivilegesRequest =
new RetrieveTeamPrivilegesRequest
{
TeamId = _teamId
};

RetrieveTeamPrivilegesResponse retrieveTeamPrivilegesResponse =
(RetrieveTeamPrivilegesResponse)_service.Execute(
retrieveTeamPrivilegesRequest);

foreach (RolePrivilege rp in
retrieveTeamPrivilegesResponse.RolePrivileges)
{
if (rp.PrivilegeId == readAccountPrivilege.Id)
{
teamLacksPrivilege = false;
break;
}
else
{
System.Threading.Thread.CurrentThread.Join(500);
}
}
}

return;
}

///
/// Deletes any entity records that were created for this sample.
/// Indicates whether to prompt the user
/// to delete the records created in this sample.
///

public void DeleteRequiredRecords(bool prompt)
{
bool deleteRecords = true;

if (prompt)
{
Console.WriteLine("\nDo you want these entity records deleted? (y/n)");
String answer = Console.ReadLine();

deleteRecords = (answer.StartsWith("y") || answer.StartsWith("Y"));
}

if (deleteRecords)
{
_service.Delete("account", _accountId);
_service.Delete("team", _teamId);
_service.Delete("role", _roleId);


Console.WriteLine("Entity records have been deleted.");
}
}

#endregion How To Sample Code

#region Main
///
/// Main. Runs the sample and provides error output.
/// Array of arguments to Main method.
///

static public void Main(string[] args)
{

try
{
// Obtain the target organization's Web address and client logon
// credentials from the user.
ServerConnection serverConnect = new ServerConnection();
ServerConnection.Configuration config = serverConnect.GetServerConfiguration();

AssignRecordToTeam app = new AssignRecordToTeam();
app.Run(config, true);
}
catch (FaultException ex)
{
Console.WriteLine("The application terminated with an error.");
Console.WriteLine("Timestamp: {0}", ex.Detail.Timestamp);
Console.WriteLine("Code: {0}", ex.Detail.ErrorCode);
Console.WriteLine("Message: {0}", ex.Detail.Message);
Console.WriteLine("Plugin Trace: {0}", ex.Detail.TraceText);
Console.WriteLine("Inner Fault: {0}",
null == ex.Detail.InnerFault ? "No Inner Fault" : "Has Inner Fault");
}
catch (System.TimeoutException ex)
{
Console.WriteLine("The application terminated with an error.");
Console.WriteLine("Message: {0}", ex.Message);
Console.WriteLine("Stack Trace: {0}", ex.StackTrace);
Console.WriteLine("Inner Fault: {0}",
null == ex.InnerException.Message ? "No Inner Fault" : ex.InnerException.Message);
}
catch (System.Exception ex)
{
Console.WriteLine("The application terminated with an error.");
Console.WriteLine(ex.Message);

// Display the details of the inner exception.
if (ex.InnerException != null)
{
Console.WriteLine(ex.InnerException.Message);

FaultException fe =
ex.InnerException
as FaultException;
if (fe != null)
{
Console.WriteLine("Timestamp: {0}", fe.Detail.Timestamp);
Console.WriteLine("Code: {0}", fe.Detail.ErrorCode);
Console.WriteLine("Message: {0}", fe.Detail.Message);
Console.WriteLine("Plugin Trace: {0}", fe.Detail.TraceText);
Console.WriteLine("Inner Fault: {0}",
null == fe.Detail.InnerFault ? "No Inner Fault" : "Has Inner Fault");
}
}
}
finally
{

Console.WriteLine("Press to exit.");
Console.ReadLine();
}

}
#endregion Main

}
}



Friday, March 15, 2013

Create a Task

The following sample workflow activity demonstrates how to create a task within an activity.



using System;
using System.Collections;
using System.Workflow.ComponentModel.Compiler;
using System.Workflow.ComponentModel.Serialization;
using System.Workflow.ComponentModel;
using System.Workflow.ComponentModel.Design;
using System.Workflow.Runtime;
using System.Workflow.Activities;
using System.Workflow.Activities.Rules;
using System.Reflection;

using Microsoft.Crm.Workflow;
using Microsoft.Crm.Sdk;
using Microsoft.Crm.SdkTypeProxy;
using Microsoft.Crm.Sdk.Query;

namespace SampleWorkflows
{
[CrmWorkflowActivity("Create a Task")]
public class CustomActivity : Activity
{
protected override ActivityExecutionStatus Execute(ActivityExecutionContext executionContext)
{

IContextService contextService = (IContextService)executionContext.GetService(typeof(IContextService));
IWorkflowContext context = contextService.Context;

ICrmService crmService = context.CreateCrmService();

DynamicEntity entity = new DynamicEntity();
entity.Name = EntityName.task.ToString();
entity.Properties = new PropertyCollection();
entity.Properties.Add(new StringProperty("subject", taskId.Value.ToString()));
entity.Properties.Add(new KeyProperty("activityid", new Key(taskId.Value)));
crmService.Create(entity);

return base.Execute(executionContext);
}

public static DependencyProperty taskIdProperty =
DependencyProperty.Register("taskId",
typeof(Lookup),
typeof(CustomActivity));

[CrmInput("The id")]
[CrmOutput("The output")]
[CrmReferenceTarget("task")]
public Lookup taskId
{
get
{
return (Lookup)base.GetValue(taskIdProperty);
}
set
{
base.SetValue(taskIdProperty, value);
}

}


}
}





Defaulting the History ‘Filter on’ to ‘All’ on Dynamics CRM 4.0 Accounts and Contacts


// History Default Filter to All
var crmloadarea = loadArea;
loadArea = function (area) {
crmloadarea(area);
if (area != "areaActivityHistory") { return; } // only hook into the history iframe

var frame = document.getElementById(area + "Frame");
frame.onreadystatechange = function () {
if (frame.readyState == "complete") {
doc = frame.contentWindow.document;
doc.all.actualend[0].value = "All"; // instead of 30 days
doc.all.actualend[0].FireOnChange();
}
}
}

Sunday, March 10, 2013

CRM 4.0 Form JS Library

Here are a set of functions to work with CRM 4.0 forms.
 
/* Jscript */

document = new Object();

// Field Object
document.getFieldObj = function(fname)
{
var ret = document.getElementById(fname);
return ret;
};
// FieldText
document.getDataValue = function(fname)
{
var str = document.getFieldObj(fname);
str = str.DataValue;
return tmp;
};
document.getDefaultValue = function(fname)
{
var obj = document.getFieldObj(fname);
obj = obj.DefaultValue;
return tmp;
};
document.lookupItem = function(fname)
{
var obj = document.getFieldObj(fname);
return (obj[0].name);
};
document.lookupGuid = function(fname)
{
var obj = document.getFieldObj(fname);
return (obj[0].id);
};
document.lookupTypename = function(fname)
{
var obj = document.getFieldObj(fname);
return (obj[0].typename);
};
document.setFocus = function(fname)
{
var obj = document.getFieldObj(fname);
obj.SetFocus();
};
document.onChange = function(fname)
{
var obj = document.getFieldObj(fname);
obj.FireOnChange();
};
document.getRequiredLevel = function(fname)
{
var tmp = document.getFieldObj(fname);
return tmp.RequiredLevel;
};
document.idDirty = function(fname)
{
var tmp = document.getFieldObj(fname);
if(tmp.IsDirty)
return true;
else
return false;
};
document.disableField = function(fname)
{
var str = document.getFieldObj(fname);
str.disabled = true;
return true;
}
document.forceSubmit = function(fname)
{
var obj = document.getFieldObj(fname);
obj.ForceSubmit;
}
document.getSelectedText = function(fname)
{
var obj = document.getFieldObj(fname);
return(obj.SelectedText);
}
document.getSelectedOption = function(fname)
{
var obj = document.getFieldObj(fname);
return(obj.GetSelectedOption);
}
document.getOptions = function(fname)
{
var obj = document.getFieldObj(fname);
return(obj.Options);
}
document.addOption = function(fname,text,datavalue)
{
var obj = document.getFieldObj(fname);
obj.AddOption(text,datavalue);
return true;
}
document.delOption = function(fname,value)
{
var obj = document.getFieldObj(fname);
obj.DeleteOption(value);
return true;
}
document.genSoap = function(fxml)
{
var soap2 = "";
soap2 += GenerateAuthenticationHeader();
soap2 += "";
soap2 += fxml;
soap2 += "
";
return soap2;
}
document.ajaxRequest = function(genUrl)
{
var xhr = new ActiveXObject("Msxml2.XMLHTTP");
xhr.open("GET", genUrl, false);
xhr.setRequestHeader("Content-Type", "text/xml; charset=utf-8");
xhr.send(null);
var resultSet = xhr.responsetext;
return resultSet;
}

document.ajaxSoap = function (soap_msg) {
// COUNTRY ISO CODE
var XmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
XmlHttp.open("POST", "/mscrmservices/2007/CrmService.asmx", false);
XmlHttp.setRequestHeader("Content-Type", "text/xml; charset=utf-8");
XmlHttp.setRequestHeader("SOAPAction", "http://schemas.microsoft.com/crm/2007/WebServices/Fetch");
XmlHttp.setRequestHeader("Content-Length", soap_msg.length);
XmlHttp.send(soap_msg);
var resultSet = XmlHttp.responseXML.text;
}