Microsoft test MB2-634 exam dumps Exam MB2-634 CRM 4.0 Extending Microsft Dynamics MB2-634 Testing Engine - Test4pass

MB2-634 Exam

CRM 4.0 Extending Microsft Dynamics

  • Exam Number/Code : MB2-634
  • Exam Name : CRM 4.0 Extending Microsft Dynamics
  • Questions and Answers : 50 Q&As
  • Update Time: 2011-09-21
  • Price: $ 119.00 $ 69.00

Free MB2-634 Demo Download

Test4pass offers free demo for Microsoft Business Solutions MB2-634 exam (CRM 4.0 Extending Microsft Dynamics). You can check out the interface, question quality and usability of our practice exams before you decide to buy it. We are the only one site can offer demo for almost all products.


 

Exam Description

It is well known that MB2-634 exam test is the hot exam of Microsoft certification. Test4pass offer you all the Q&A of the MB2-634 real test . It is the examination of the perfect combination and it will help you pass MB2-634 exam at the first time!

Why choose Test4pass MB2-634 braindumps

Quality and Value for the MB2-634 Exam
100% Guarantee to Pass Your MB2-634 Exam
Downloadable, Interactive MB2-634 Testing engines
Verified Answers Researched by Industry Experts
Drag and Drop questions as experienced in the Actual Exams
Practice Test Questions accompanied by exhibits
Our Practice Test Questions are backed by our 100% MONEY BACK GUARANTEE.

Microsoft Microsoft Business Solutions MB2-634 exam braindumps questions and answers

¡¡
¡¡
Exam : Microsoft MB2-634
Title : CRM 4.0 Extending Microsft Dynamics


1. You're an administrator of your company network. Now you've been assigned a task. You have to write an application that automatically disables a set of accounts.
Which option should you use to programmatically disable an account using the Microsoft Dynamics CRM Web service? (choose more than one)
A. CrmService.Update methoD.
B. CrmService.SetState methoD.
C. Pass a SetStateAccountRequest to CrmService.Execute methoD.
D. Pass a SetStateDynamicEntityRequest to CrmService.Execute methoD.
Answer: BC

2. The account entity has a parent account attribute within the CrmService Web service, the parentaccount attribute is used to identify which account record is the parent
of a given account. What Microsoft Dynamics CRM attribute type is the parentaccountid attribute?
A. Guid
B. Owner
C. Lookup
D. Picklist
Answer: B

3. You're an administrator of your company network. A block of .NET code has been written by you. It calls methods of the CrmService Web service to delete Microsoft
Dynamics CRM data, and also performs some mathematical calculations. You plan to record any errors that occur with meaningful error messages. So what Catch block
or blocks of code do you need write?
A. One catch block to catch all exceptions of type Exception.
B. One catch block to catch all exceptions of type SoapException.
C. One catch block to catch all exceptions of type XmlException.
One catch block to catch all exceptions of type Exception.
D. One catch block to catch all exceptions of type SoapException.
One catch block to catch all exceptions of type Exception.
Answer: C

4. You're an administrator of your company network. Now you've been assigned a task, you have to create a utility application which can be run to add new values to an
existing picklist on the account entity. You know that other customizations may be made to the account entity, and you have to make sure that your utility application
will not overwrite any other account customizations. So what should you do to achieve this?
A. In your utility, create instances of the InsertOptionValueRequest class
Pass these instances to the CrmService.Execute method
B. In your utility, create instances of the InsertOptionValueRequest class
Pass these instances to the MetadataService.Execute method
C. Create the new picklist values in a development CRM environment.
Export the account entity customizations from the development CRM environment to an XML file
In your utility pass the contents of the XML in an ImportXmlRequest that is passed to the CrmService.Execute method
Answer: A

5. As an administrator of your company network. You've been assigned a task, you have to write an application which uses the CrmService Web service to find an account
based on its name attribute. So what method should you use?
A. Retrieve method of the account class.
B. Retrieve method of the CrmService class.
C. RetrieveMultiple method of the account class.
D. RetrieveMultiple method of the CrmService class.
Answer: C

6. As an administrator of a network, you have to build some custom validation code which will force Microsoft Dynamics CRM users to enter values in certain fields of an
opportunity once its CloseProbability field exceeds 50%. A message must be displayed when a user fails to enter appropriate data and they are prevented from saving
the opportunity. So what should you do to ensure this? (choose more than one)
A. You should use lient-side JScript
B. You should use a plug-in on a pre-event
C. You should use a plug-in on a post-event
D. You should use a custom workflow activity
Answer: A

7. You're an administrator of your company network. You want to retrieve a list of Microsoft Dynamics CRM 4.0 organizations within a Microsoft Dynamics CRM 4.0
deployment. So what Web service should you use?
A. You should use CrmService.
B. You should use CrmAsyncService.
C. You should use MetadataService.
D. You should use CrmDiscoveryService.
Answer: C

8. You are an adiministrator of your company network. You created and deployed a web application which accesses Microsoft Dynamics CRM contact data through the
CrmService Web service. The application uses a Web reference for the CrmService Web service which was created within Visual Studio and uses strongly typed Microsoft
Dynamics CRM Classes. Subsequently two new attributes have been added to the contact entity. And you want to use these new attributes in your application. In order
to make these new attributes available to your application, what should you do?
A. You don't need to do anything else.
B. You should publish the contact entity within the Microsoft Dynamics CRM user interface.
C. Within the Visual Studio .Net project, update the Web reference to the CrmService Web service.
D. In Visual Studio .Net, find the proxy code generated for the Web service. Add the new attributes as properties of the contact class.
Answer: B

9. You're an administrator of your company network. you want to use the CrmService Web service to find all opportunities that have a CloseProbability greater than 50%.
So what should you do to achieve this?
A. Use the Retrieve method of the CrmService Web service.
B. Use the RetrieveMultiple method of the CrmService Web service, and pass a QueryExpression parameter.
C. Use the RetrieveMultiple method of the CrmService Web service, and pass a QueryByAttribute parameter.
D. Use the RetrieveMultiple method of the CrmService Web service, and pass a SQLCommand parameter that queries the FilteredOpportunity view.
Answer: A

10. As an administrator of your company network, you've assigned a task that you have to design an extension to Microsoft Dynamics CRM for a customer. If a sales person
activates a quote and the total discount exceeds a threshold, then the extension should create tasks for various people. The logic for calculating this threshold is
complex, and is dependent on data in several entities, including the user, the account and the product entities.
The customer wants the flexibility to change the content and properties of the tasks that are created by the code.
So what extension approach is most appropriate?
A. Write a plug-in that checks whether the total discount exceeds the threshold, and if so creates the tasks.
B. Use client-side JScript to check whether the discount exceeds the thresholD. If it does, use further client-side JScript to create the tasks.
C. Create a custom workflow activity that returns a value identifying whether the total discount exceeds the thresholD.
Call this custom workflow activity from a workflow rule on the quote entity, and create the tasks using standard activities within the workflow.
D. Use client-side JScript to check whether the discount exceeds the thresholD. If it does, set a flag attribute in the quote recorD.
Write a workflow rule on the quote entity that waits for the flag attribute to be set, and if so creates the tasks using standard activities within the workflow.
Answer: B

11. You're an administrator of your company network. Now you're creating custom Web pages that extend Microsoft Dynamics CRM contact functionality, using the
Microsoft Dynamics CRM Web service. You want any changes made to the Microsoft Dynamics CRM entity and attribute display names can be reflected by your Web
pages. So what should you do to achieve this with as little additional development work as possible?
A. Read the display names from the Microsoft Dynamics CRM Web service CrmService.
B. Read the display names from the Microsoft Dynamics CRM Web service MetadataService.
C. Store all text in a satellite .Net assembly. Create a separate copy of the satellite assembly for each deployment with the relevant text.
D. Use .Net Reflection within your Web pages to determine the entity and attribute display names at runtime from the WSDL generated by the Microsoft Dynamics
CRM Web service.
Answer: A

12. Look at the following extensibility features. Please choose the appropriate one which meets the following two requirements: 1. It is available within the the Microsoft
Dynamics CRM for Microsoft Office Outlook with Offline Access. 2. It can be deployed as part of the synchronization process. (choose more than one)
A. Plug-ins
B. ASP.NET extensions
C. Custom workflow activities
D. Client script that accesses the crmForm object model
Answer: C

13. You're in charge of your company network. There's a rule in your company which provides that when a user creates or updates an account in Microsoft Dynamics CRM,
corresponding data in a custom application is to be added or updated with no latency. The custom application has a .NET API that can be used to add or update datA.
You have to ensure that only data that is saved to Microsoft Dynamics CRM is written to the custom application. So what extension approach is most appropriate?
A. In a custom workflow activity.
B. Client-side JScript in the OnSave event.
C. In a plug-in that is registered on the pre-event.
D. In a plug-in that is registered on the post-event.
Answer: C

14. You're an administrator of your company network. When using the CrmService Web service, which method should you use to create a new lead in the Microsoft
Dynamics CRM database?
A. Constructor of the lead class.
B. Create method of the lead class.
C. Constructor of the CrmService class.
D. Create method of the CrmService class.
Answer: C


Click Online chat to talk with us , get more informations about Microsoft Microsoft Business Solutions MB2-634 practice exam study guides questions and answers

Test4pass MB2-634 Exam Features

Quality and Value for the MB2-634 Exam

Test4pass Practice Exams for Microsoft MB2-634 are written to the highest standards of technical accuracy, using only certified subject matter experts and published authors for development.

100% Guarantee to Pass Your MB2-634 Exam

If you prepare for the exam using our Test4pass testing engine, we guarantee your success in the first attempt. If you do not pass the Microsoft Business Solutions MB2-634 exam (ProCurve Secure WAN) on your first attempt we will give you a FULL REFUND of your purchasing fee AND send you another same value product for free.

Microsoft MB2-634 Downloadable, Printable Exams (in PDF format)

Our Exam MB2-634 Preparation Material provides you everything you will need to take your MB2-634 Exam. The MB2-634 Exam details are researched and produced by Professional Certification Experts who are constantly using industry experience to produce precise, and logical. You may get questions from different web sites or books, but logic is the key. Our Product will help you not only pass in the first try, but also save your valuable time.

MB2-634 Downloadable, Interactive Testing engines

We are all well aware that a major problem in the IT industry is that there is a lack of quality study materials. Our Exam Preparation Material provides you everything you will need to take a certification examination. Like actual certification exams, our Practice Tests are in multiple-choice (MCQs) Our Microsoft MB2-634 Exam will provide you with free MB2-634 dumps questions with verified answers that reflect the actual exam. These questions and answers provide you with the experience of taking the actual test. High quality and Value for the MB2-634 Exam:100% Guarantee to Pass Your Microsoft Business Solutions exam and get your Microsoft Business Solutions Certification.

Test4pass MB2-634 exam
Test4pass MB2-634 pdf exam
Test4pass MB2-634 braindumps
Test4pass MB2-634 study guides
Test4pass MB2-634 trainning materials
Test4pass MB2-634 simulations
Test4pass MB2-634 testing engine
Test4pass MB2-634 vce
Test4pass MB2-634 torrent
Test4pass MB2-634 dumps
free download MB2-634
Test4pass MB2-634 practice exam
Test4pass MB2-634 preparation files
Test4pass MB2-634 questions
Test4pass MB2-634 answers

http://www.test4pass.com/MB2-634-exam.html The safer.easier way to get Microsoft Business Solutions Certification .


Guarantee | Buying Process | F.A.Q. | Payment | Refundment Term | Semples | Testing Engine | privacy | Contact | Sitemap 1 2 3 4

Copyright©2006-2009 sale test4pass Limited. All Rights Reserved

sale test4pass materials do not contain actual questions and answers from Microsoft's Cisco's Certification Exams.