Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.

Bug 366136

Summary: Error in tutorial
Product: z_Archived Reporter: Bob NIcholson <bob>
Component: EDTAssignee: Ben Margolis <margolis>
Status: CLOSED FIXED QA Contact:
Severity: normal    
Priority: P3 CC: margolis, svihovec
Version: unspecified   
Target Milestone: ---   
Hardware: PC   
OS: Windows 7   
Whiteboard:

Description Bob NIcholson CLA 2011-12-09 01:07:50 EST
EDT:Tutorial: RUI With DataBase Lesson 8

Next, create the function that adds data. Update the addRow function so that the code is as follows: 


  function addRow(event Event in)
     call dbService.addPayment(new paymentRec) returning to recordAdded
        onException serviceLib.serviceExceptionHandler;
  end

I think this should be "serviceExeptionHandler"
instead of "serviceLib.serviceExceptionHandler"

  function addRow(event Event in)
     call dbService.addPayment(new paymentRec) returning to recordAdded
        onException serviceExceptionHandler;
  end
Comment 1 Ben Margolis CLA 2011-12-09 09:55:28 EST
Yes, a mistake.  ServiceLib does not and will not have a delegate of that name.
Comment 2 Ben Margolis CLA 2012-01-16 13:08:46 EST
is now correct.