Plugin Registration Tool for Microsoft Dynamics CRM 2013


Summary:Plugin Registration Tool for MS CRM 2013.

Step1: Download Latest CRM 2013 SDK 6.1 from the following URL                


Step 2: Install the SDK and Extract the file.

  Open the folder-> SDK -> Tools folder, you can see the “Plugin Registration” Application.

Step 3: Click on the Plugin Registration. It will open the window as below.
 
 
 
Step 4: Click on the “Create New Connection” Button .it will open the pop window from there you can connect to the On-Premise,Online,Office 365(Outlook) versions.you see the below Figure.
 
Step 5: Click on the Login Button it will display the list of Organizations on the server and the Organization it will display the list of Registered DLL’s. You can see as below.
 
Step 6: Here we can Replay the Execution also .
 

Urgent Requirement for Dynamics Ax Technical Consultant

Summary:Urgent Requirement for Ax Technical Consultant
We have an Urgent Requirement for Ax Technical Consultant
Experience Required - 3-6
Location - Hyderabad
Position Type- (Contract position)

Key Skills and Experience Required: 

- Subject Matter Expert - MS Dynamics AX Technical 
- Extensive knowledge of Messaging, Customization and Integration with other EDI systems. 
- Communication, Influence & Impact 
- Client Understanding & Relationship Building 
- Presentation Skills 
- Appropriate tertiary qualifications e.g. Accounting, Computer Science or equivalent 
- A minimum of 3 years' experience with Microsoft Dynamics AX, technical design and development. 
- As undertaken a minimum of 3 Microsoft Dynamics AX implementations 
- Having or achieving and maintaining certification at Certified Professional level 
- Have worked with Sure Step or equivalent implementation methodology. 
- Minimum 2 years' experience in consulting, engagement/project management, and/or business and resource management 
- Specialist knowledge of one or more industries or segments, coupled with strong analytical skills 
- Adaptable to an environment offering constant changes and demands 
- Effective verbal communication skills with the ability to consult and liaise effectively with internal and external customers 
- High level of confidence, drive and motivation.

NOTE- We require candidates who have done minimum 2 implementations.

If you are interested for contract position Please share the CV @madhulatha.paraminfo@gmail.com

Job | Excellent onsite opportunity for Dynamics CRM Professionals

Summary:Job | Excellent onsite opportunity for Dynamics CRM Professionals

We are hiring professional with hands on experience in Microsoft Dynamics CRM for South Africa.

Prodapt at a Glance :-

Prodapt is a leading provider of IT services to telecommunication clients around the globe. We work with communications service providers (CSPs), ISVs and OEM customers to help outsource, reduce cost and maximize value from IT investments.Prodapt has partnered with several leaders in the telecom industry including Fortune 500 customers. Most of the clients are long-time customers of Prodapt that cite flexibility, depth in telecom and high-levels of service as the reasons for re-engaging with us. 

Through our CMMi Level 3, ISO: 9001 and SAS70 -compliant Global Delivery Center and a cumulative expertise in software services of over 1000 man years, we are committed to providing repeatable high quality, cost-effective, and scalable services. Headquartered in Chennai-India, Prodapt has presence in US, Europe and South Africa. We have more than 1000 employees spread across different regions. 

Deloitte has recognized Prodapt as one among the fastest growing technology companies in APAC and 10th fastest growing technology company in India. According to Dataquest, Prodapt is one among the top 250 IT companies in India.

Prodapt is a part of 117 year old business conglomerate, Jhaver Group. With over 13000 people across 60 locations around the world, the group has businesses in - IT Services, Healthcare, Chemicals, Pharmaceuticals, Agro-chemicals, Apparel accessories,Infrastructure and Trading.

For More details Pls visit www.prodapt.com

Skills Required:

1) Should have good hands on exp in Microsoft Dynamics CRM Experience (version 2011 and higher) 
2) Should Lead and or participate in the requirement analysis workshops 
3) Must have participated in at least 3 go-live data conversions, and/or upgrades, and/or full cycle implementations. 
4) Should have exp in C#, JavaScript, T-SQL, SSRS, SSIS n
5) Good Communiation skills


Position - Consultant / Sr Consultant

Pls mail me your updated resume in a word format to prabu.k@prodapt.com along with the following details

How hide/Disable the NextStage Button in restricting the user Business Process work flow through Javascript.


Summary: CRM 2013: Business Process: restricting the user from entering values for the fields of the 'NEXT' stages.

processActionsContainer.style.display = "none";

Example:

if (Xrm.Page.getAttribute("Attributename").getText() == "ACCount") {

            processActionsContainer.style.display = "";

        }

        else {

            processActionsContainer.style.display = "none";

        }

 

SAP CRM Middle ware Interview questions TCS,IBM,Accenture-free download in pdf,ppt.

Summary: SAP CRM Interview questions and answers on Middle ware .
  1. Explain the end to end middle ware process.
  2. What is initial load , delta load and request load? Why do we do request load?
  3. Explain the process to replicate BP's from CRM to ECC.
  4. Explain the process to replicate BP's from CRM to ECC related to specific sales org.
  5. Explain the process to replicate BP's from ECC to CRM.
  6. How can we replicate the contact persons from CRM to ECC.
  7. Explain the product replication process.
  8. How can you set up RFC connections.

                       For More interview Question Click Here

Programmatically updating stages/process for Business Process Flow in CRM 2013

Summary: Programmatically updating stages/process for Business Process Flow in MS CRM 2013.
New release of CRM 2013 allows creating Business Process flows for custom entity as well. It also allows creating multiple processes flows for the same entity.  Different set of users can have different flows based on the business requirement. Even in some scenario’s we may need to shift from one process flow to some other process flow which should be generally done dynamically based on certain conditions.
We can enable Business Process Flows setting during creating custom entity or even we can update this in settings after the entity is created.
EnableSetting
 Once we enable this 2 fields gets created for this entity.
Attributes
So when we want to change the current process flow or the current stage we need to update these fields. Unfortunately CRM has not provided any UI to update these fields directly. So we can update this either through JavaScript/plugins using CRM API calls.
Plugins / WorkFlows:
// Get the Process Id based on the process name
 string procesName = "Business Process for Enquiry";
 var workflow = (from p in orgContext.WorkflowSet
 where p.Name == procesName && p.StateCode == Entities.WorkflowState.Activated
 select p).FirstOrDefault();
 
 if(workflow==null)
 {
 throw new InvalidPluginExecutionException(string.Format("Worflow not found with name {0}",procesName));
 }
 
 //Get the stage id based on the Stage Name
 string stageName = "CONFIRMED";
 var stage = (from p in orgContext.ProcessStageSet
 where p.StageName==stageName.ToUpper() && p.ProcessId.Id==workflow.WorkflowId
 select p).FirstOrDefault();
 if(stage ==null)
 {
 throw new InvalidPluginExecutionException(string.Format("Stage not found with name {0}", stageName));
 }
//Update the record with the new stage
 Entities.new_enquiry updateEnquiry = new Entities.new_enquiry();
 updateEnquiry.Id = context.PrimaryEntityId;
 updateEnquiry.stageid = stage.ProcessStageId;
 updateEnquiry.processid = workflow.WorkflowId;
 service.Update(updateEnquiry);
Reference Link: http://deepakexploring.wordpress.com/2013/11/21/programmatically-updating-stagesprocess-for-business-Aprocess-flow-in-crm-2013/


Microsoft Dynamics CRM 2014 release plans

Summary:Ms CRM 2014 release plans

Reference: http://www.preact.co.uk/preact_blog/microsoft-dynamics-crm-2014-release-schedule

Microsoft has coming up its Dynamics CRM 2014 release plans and presented the upcoming improvements that will be introduced in the coming months.



 the above picture shows the core CRM feature set is expanding to create a suite of connected applications that will include social listening, multi-channel marketing and enterprise service desk capabilities. As will all pre-releases any of these features are subject to change.

The headline announcements are:

  1.  2 CRM releases in 2014 for cloud & on-premise editions in Q2 & Q4
  2.  Microsoft Social Listening released in Q2 - free for CRM Online Pro Customers
  3.  Improved CRM Service Tools including new SLA & Entitlements entities
  4.  Dynamics CRM Marketing Module arrives in Q2
  5.  New Unified Service Desk + Parature Integration
  6.  Dynamics CRM Enterprise Licence plan announced
  7.  Inbuilt CRM calculation fields arriving in Q4

First up is the Dynamics Spring Wave consisting of 3 updates across CRM, Social and Marketing tracks.

To learn more about the Spring Wave releases download the Microsoft Release Preview Guide




Popular Posts