­
SQL Server 2008

How to Create Table Based on Another Table SQL Server 2008

4:52 AM
1. Create Table From another table and its values SELECT * INTO newtable_employe from Employees SQL Server 2008 - Create Table From another table and its values 2. Create Table From another table (column only) SELECT * INTO newtable_employe from Employees Where 1=2 SQL Server 2008 - Create Table From another table (column only) Thanks for visiting :) ...

Read More...

Cursor SQL Server

Step By Step How To Import Data SQL Server 2008 From Excel

3:52 AM
In this post, i have no explanation, just see the image and you will understood Step 1. Step 2. Step 3. Step 4. Step 5. Step 6. Step 7. Step 8. Step 9. Step 10.  Finish the table name should be the nam of you excel sheet name, just rename it as you want, thanks for visiting :) ...

Read More...

Cursor SQL Server

Step By Step How To Import Data SQL Server 2008 From Excel

3:52 AM
In this post, i have no explanation, just see the image and you will understood Step 1. Step 2. Step 3. Step 4. Step 5. Step 6. Step 7. Step 8. Step 9. Step 10.  Finish the table name should be the nam of you excel sheet name, just rename it as you want, thanks for visiting :) ...

Read More...

SQL Server 2008

Difference Continue and Break SQL Server and Sample Code

2:00 AM
this is a simple explanation 1. Continue : Continue loop to the next loop and ignore the next code in looping 2. Break : Exit from loop Example : 1. Continue SQL Server - Continue Sample Code 2. Break SQL Server - Break Sample Code Thanks for visiting :) ...

Read More...

Cursor SQL Server

A Simple Cursor In SQL Server 2008 R2

1:26 AM
Firstly, What is Cursor? wikipedia said: In computer science, a database cursor is a control structure that enables traversal over the records in a database. Cursors facilitate subsequent processing in conjunction with the traversal, such as retrieval, addition and removal of database records. The database cursor characteristic of traversal makes cursors akin to the programming language concept of iterator. Cursors are used by...

Read More...

CRM 2011

How to disable view picker in filtered view CRM 2011 Javascript

5:16 AM
How to disable view picker in filtered view CRM 2011 Javascript it annoying when you hava created filter view but still can pick up another view. these are simple step to disable view picker in filtered view dynamic CRM 2011 by javascript. Step 1 create your own filter view function filter_view() { var viewid = "{a76b2c46-c28e-4e5e-9ddf-951b71202c77}";//random var entityname = "new_entityname"; var displayname =...

Read More...

CRM 2015

How to solve undifined or null reference in javascript CRM

1:55 AM
Unable to get property 'value' of undifined or null reference when you customize dynamic CRM using client side or javascript code some times we get an error coused the variable we had define get null value or undefined . these are a simple step to solve it: Step 1 this is my full function function autofill() { var formtype =Xrm.Page.ui.getFormType(); if (formtype==1){ var...

Read More...

CRM 2015

How to get lookup value CRM 2015 using javascript

1:27 AM
You can retrieve data entity crm by sdk CRM using c# code. beside that, also you can retrieve entity in client side by javascript. these are the steps ! Step 1 Create Javascript Functon as below: function personalautofill() { var formtype =Xrm.Page.ui.getFormType(); if (formtype==1){ var objlookup = Xrm.Page.getAttribute("new_personal").getValue(); if (objlookup!=null) { var personalid = objlookup[0].id; var personalname = objlookup[0].name; var fetchXmlPersonal = "<fetch...

Read More...

CRM 2015

Step by Step How To Install Ribbon CRM 2015

5:03 AM
Using Ribbon Microsoft Dynamic CRM 2015 is strange with Ribbon Ribbon for Dynamic CRM 2011. the differences in CRM 2015 is, we should install it on the solution. below are simple steps to install it. Step 1 Download Microsoft Ribbon editor for CRM 2013/2015/2016 here Download page Ribbon editor CRM 2015 Step 2 go to your CRM page Setting Step by Step How...

Read More...

A Simple Way How to Create CRUD Operation in Dynamic CRM 2011

6:16 PM
CRUD Dynamic CRM 2011 When you start with your fisrt project or you first time use with Dynamic CRM, the first think should you have learn is CRUD operation. CRUD is acronym fro Create, Read, Update and Delete. Now I will show you a simple way to understand CRUD operation in Dynamic CRM 2011. here we go! Config: <?xml version="1.0" encoding="utf-8" ?> <configuration>...

Read More...

crm 4.0

How To Retrieve Data From CRM 4.0

5:32 PM
CRM 4.0 - Retrieve data crm After we created Connection for CRM 4.0 , now we will try in a simple way how to retrieve data from CRM 4.0. It is very simple. there is two way how to retrieve data from crm, first, use query by attribute, it like like select in sql with the only one condition. second, use query expression, it...

Read More...

crm 4.0

How To Connect Crm 2007 c#

9:51 PM
CRM is a business arrangement that helps organizations enhance promoting, deals, administration and responsibility to its clients to build the productivity of the association, while enhancing the client experience. Presently I need to share a tad bit involvement being developed crm. Acctualy I am Microsoft Dynamic CRM 2011, however for some anticipate still utilize crm 2007. so I need to relocate my code...

Read More...