How do you use a created table in a data block? [message #583549] |
Wed, 01 May 2013 14:44 |
|
Grime
Messages: 3 Registered: May 2013
|
Junior Member |
|
|
Hello all, I apologize if this has been brought up before but I certainly couldn't find it on google and I didn't find it here either. I have data that the user is modifying on the form and a data block that is supposed to reflect those change (summaries) So I created
TYPE VehicleInfo IS RECORD (Vehicle_Desc ctl_fleet_vehicles.Vehicle_Desc%Type,
Miles timecapture.miles%Type,
Hours TimeCapture.Equipment_hours%Type);
TYPE VehicleTab IS TABLE OF VehicleInfo
INDEX BY BINARY_INTEGER;
VehicleObj VehicleTab;
I fill this up with the correct data, but I would like to be able to use this as a table in the data block (called Vehicle_Summary) In the past I have piped tables into data blocks from the server, but I'm unsure how to use a table I created in forms in the Query Data Source Name of the data block.
Thank you for any help you may be able to provide, and I apologize if I missed a previous answer to this on the board.
|
|
|
|
|
|
|
|