carolsmith62's picture
From carolsmith62 rss RSS  subscribe Subscribe

MB7-222 Practice Tests & Exam 

CertMagic.com is a place where you can find various types of MB7-222 exam certifications preparation material. CertMagic’s full range of study material for the MB7-222 exam helps you to be prepared for the MB7-222 exam fully and enter the exam centre with full confidence. We provide you easy, simple and updated study material. After preparing from the MB7-222 exam material prepared by us we guarantee you that you will be a certified professional. We guarantee that with CertMagic
MB7-222 study material, you will pass the Certification exam.

 

 
Tags:  MB7-222 Exams  MB7-222 Certification  MB7-222 Training  MB7-222 Practice Exams  MB7-222 Tests  MB7-222 Exam Materials  MB7-222 Download 
Views:  75
Published:  November 19, 2009
 
0
download

Share plick with friends Share
save to favorite
Report Abuse Report Abuse
 
Related Plicks
642-542 Practice Tests & Exams

642-542 Practice Tests & Exams

From: carolsmith62
Views: 711 Comments: 0
CertMagic.com is a place where you can find various types of 642-542 exam certifications preparation material. CertMagic’s full range of study material for the 642-542 exam helps you to be prepared for the 642-542 exam fully and enter the exam centr (more)

 
1D0-570  Exam

1D0-570 Exam

From: caroljhon
Views: 116 Comments: 0
1D0-570 Exam Material is Available to download Now immediately after Your purchase, It's Downloadable and Printable. CertMagic.com . By reading our CertMagic.com product 1D0-570 Study Material, thousands of professionals succeeded in their Certific (more)

 
See all 
 
More from this user
MB7-221 Practice Tests & Exam

MB7-221 Practice Tests & Exam

From: carolsmith62
Views: 216
Comments: 0

000-301 Practice Tests & Exams

000-301 Practice Tests & Exams

From: carolsmith62
Views: 218
Comments: 0

4H0-100 Practice Tests & Exams

4H0-100 Practice Tests & Exams

From: carolsmith62
Views: 143
Comments: 0

650-175 Practice Tests & Exams

650-175 Practice Tests & Exams

From: carolsmith62
Views: 142
Comments: 0

000-743 Practice Tests & Exams

000-743 Practice Tests & Exams

From: carolsmith62
Views: 181
Comments: 0

HP0-763 Practice Tests & Exams

HP0-763 Practice Tests & Exams

From: carolsmith62
Views: 156
Comments: 0

See all 
 
 
 URL:          AddThis Social Bookmark Button
Embed Thin Player: (fits in most blogs)
Embed Full Player :
 
 

Name

Email (will NOT be shown to other users)

 

 
 
Comments: (watch)
 
 
Notes:
 
Slide 1: MB7-222 Navision 4.0 C/SIDE Solution Development Exam: MB7-222 Demo Edition CERT MAGIC 1 http://www.certmagic.com
Slide 2: MB7-222 QUESTION: 1 You have created a custom report for Certmagic.com. Your customer has complained about how this report is taking several hours to run. However, your customer has stated that when the report does finish that the information is correct and the report is formatted correctly. Which of the following could cause the performance degradation that your client is experiencing? A. The sort button is not available on the request form. B. The data items are not using the correct key. C. The data items are not linked. D. The data items are in the wrong order. Answer: B QUESTION: 2 Which of the following lines of code would cause a report section to NOT print? A. CurrReport. SHOWOUTPUT (TRUE); B.CurrReport.SHOWOUTPUT(1=0); C.CurrReport.SHOWOUTPUT(1=1); D. CurrReport. SHOWOUTPUT:=TRUE; Answer: B QUESTION: 3 You have opened a File variable and are using it to export data from Microsoft?Navision? Suppose you execute the following line of C/AL code: XFile.WRITE ('Line No.'); where'Line No.' is a field of type Integer. What is the total number of bytes that will be added to the file due to the above line of code, if 'Line No.' had a value of 1000, and if the TEXTMODE for XFile was set to TRUE? A. 2 bytes B. 8 bytes C. 6 bytes D. 4 bytes Answer: C 2 http://www.certmagic.com
Slide 3: MB7-222 QUESTION: 4 Which of the following is TRUE regarding Text Constants? A. All error messages must be entered as text constants. B. Text constants cannot be translated. C. Error messages cannot be entered as text constants. D. Text constants are recommended for error messages so that they can be translated. Answer: D QUESTION: 5 In regard to the following block of code, which statement is true about performance when the code is executed? WITH Customer DO BEGIN //section A IF FIND('_')THEN REPET"Credit Limit(LCY)":=1000;MODIFY; UNTIL NEXT=0; //section B IF FIND('_')THEN REPET"Credit Limit(LCY)":=1000;OK:= MODIFY; UNTIL NEXT=0; END; A. There is no difference between sections A and B B. Section A will execute the fastest. C. An error will occur in section A D. Section B will execute the fastest. Answer: B QUESTION: 6 Which XMLPort TagName property causes flowfields to be calculated automatically? A. CalcFields B. DoCalcs C. CalcFlow D. FlowCalc Answer: A 3 http://www.certmagic.com
Slide 4: MB7-222 QUESTION: 7 You are writing code in C/SIDE. Assuming that you are not in a transaction, which of the following would start a transaction? A. BeginTrans B. StartTrans C. Insert D. Commit Answer: C QUESTION: 8 What can be determined from viewing the following C/AL command? Cust Process Code.Update(Customer); A. A variable named CustProcessCode has been declared with a subtype of Codeunit, and has a function which updates the Customer table. B. A variable has been declared with the name CustProcessCode, the variable refers to a complex data type, and the object referred to contains a function named Update. C. The Customer table has a function named Update. D. The Customer table will be updated if the command is executed. Answer: B QUESTION: 9 An object has a version tag of 'NAVW13.00.03'. The '03' at the end stands for what? A. World Wide Add-On 3 B. World Wide Hotfix 3 C. Customer Number 3 D. World Wide Service Pack 3 Answer: D 4 http://www.certmagic.com
Slide 5: MB7-222 QUESTION: 10 What is meant by optimistic concurrency? A. It means we lock the record as soon as possible to ensure that we will be able to make our change. B. It means we lock the table as soon as possible to ensure that we will be able to make our change. C. It means that we don't lock the records at all hoping that no changes will be made at the same time because of our efficient use of filters. D. It means that we do not lock the record before we read it for an update. Answer: D QUESTION: 11 Which one of the following Codeunits read the Journal Line table? A. Gen. Jnl.-Post Line B. Gen. Jnl.-B.Post C. Gen. Jnl.-Post Batch D. Gen. Jnl.-Check Line Answer: C QUESTION: 12 Below is a list of report triggers. Of the triggers in the list, which one is actually executed sooner than its position in the list would indicate? 1) OnPreReport 2) OnInitReport 3) OnPreDataItem 4) OnPostReport A. OnPostReport B. OnPreReport C. OnInitReport D. OnPreDataItem 5 http://www.certmagic.com
Slide 6: MB7-222 Answer: C QUESTION: 13 Which of the following triggers is executed FIRST when a report that includes a request form is run? A. OnPreSection B. OnOpenForm C. OnPreReport D. OnPreDataitem Answer: B QUESTION: 14 Which of the following statements is true regarding C/AL programming? A. Is based on the Microsoft C programming language. B. Requires that each line be identifed by line number. C. Can be found in any Microsoft Navision application object. D. Can be found in object areas known as "events". Answer: C QUESTION: 15 For a video rental project, the customer, Video Warehouse, will need to bring their data from their old legacy system into Microsoft Navision After looking at some of their data and talking with their accountant, the following requirements for data conversion have been identified: a) Current customer balances will have to be brought over. Data in this area is complete and has been tested. b) The Closed Invoices and Payments are not complete and testing has not been done on the data. c) Open invoices will not be brought over. Analysis has begun on converting the data to bring over the current customer balances. What standard code do you know will need to be included in your dataport? 6 http://www.certmagic.com
Slide 7: MB7-222 A. Code to call the OnModify table trigger to be run. B. Code to call the field OnValidate table triggers to be run. C. Code to commit the process when completed. D. Code to insert the records. Answer: B QUESTION: 16 When running a report which contains only one dataitem, and when there are no records in that particular table, which of the following triggers will NOT be executed? A. OnAfterGetRecord B. OnPreReport C. OnPreDataItem D. OnPostDataItem Answer: A QUESTION: 17 Which of the following commands is NOT valid? A. CODEUNIT.RUNMODAL(CODEUNIT::"GLBudget-Open"); B. CODEUNIT.RUN(10140,DepositHeader); C. CODEUNIT.RUN(10140); D. CODEUNIT.RUN(CODEUNIT::"GLBudget-Open"); Answer: A QUESTION: 18 Which of the following is TRUE regarding exporting of MenuSuite objects? A. MenuSuite objects can be exported in either object (fob) or text (txt) format. B. MenuSuite objects can only be exported in text (txt) format. C. MenuSuite objects cannot be exported. D. MenuSuite objects can be exported in either menusuite (mns) or text (txt) format. 7 http://www.certmagic.com
Slide 8: MB7-222 Answer: A QUESTION: 19 Which of the following controls cannot be contained in a subform? A. Tablebox B. Picturebox C. Tab Control D. Subform Answer: D QUESTION: 20 You have just created additional functionality for a customer who is up and running on a previously implemented Microsoft Navision application. In order to get a copy of modified application objects, so you can install them on your customer's system, which procedure would you use? A. Export Objects B. Backup Entire Database C. Backup Application Objects D. 'Save as...' the object(s) to a file Answer: A 8 http://www.certmagic.com

   
Time on Slide Time on Plick
Slides per Visit Slide Views Views by Location