Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
Bug 366136 - Error in tutorial
Summary: Error in tutorial
Status: CLOSED FIXED
Alias: None
Product: z_Archived
Classification: Eclipse Foundation
Component: EDT (show other bugs)
Version: unspecified   Edit
Hardware: PC Windows 7
: P3 normal (vote)
Target Milestone: ---   Edit
Assignee: Ben Margolis CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-12-09 01:07 EST by Bob NIcholson CLA
Modified: 2017-02-23 14:17 EST (History)
2 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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.