1Use cWebBusinessProcess.pkg 2Use DataDict.pkg 3Use Customer.DD 4 5Object oWapCustomerMaint is a cWebBusinessProcess 6 7 // This WBO, oWapCustomerMaint, is used to handle customer record display and 8 // editing for the WAP page, WapCustomerMaint.asp. 9 // Note that we could have used the same WBO, oCustomer to service both 10 // HTML and WML pages. If you look at these two WBOs you will see that they are 11 // the same. WML and HTML pages can always share the same WBOs (after all 12 // the business logic is the same for both). 13 // 14 // This WBO was created using the WAP Entry Wizard. 15 16 Set pbClearAfterSave to False 17 Set psDescription to "Wap Customer Entry and Maintenance" 18 19 Object Customer_DD is a Customer_DataDictionary 20 Send DefineAllExtendedFields 21 End_Object // Customer_DD 22 23 Set Main_DD to Customer_DD 24 25 // Register WBO interfaces 26 Send RegisterStandardInterface 27 // Send RegisterDebugInterface 28 // Send RegisterFullErrorInterface 29 // Send RegisterAutoEntryInterface 30 31End_Object // oWapCustomerMaint