Included Temp-Table & Buffer definitions

JamesBowen

19+ years progress programming and still learning.
INFO: 10.2A Studio.

Using the AppBuilder IDE how do I Included "Temp-Table & Buffer definitions". The reason I'm asking is that refreshing my GUI skill-set by looking a Progress Auto Edge sample code. I've noticed that in the sample source code the example wcustomer.w references a include-file called {ttcustomer.i}. For some unknown reason I can't see how it get the included file referenced to my new code using the AppBuilder.

I understand that I could just place {ttcustomer.i} include file in definitions section but I want browsers and field widgets to reference the fields within the temp-table and not the database buffers.

For the last few years I thought this was the point of the TEMP-DB maintenance screen, but my interpretations of this was wrong.

Hope I'm explaining my self OK.
 
He is the snippet from the example code from the wcustomer.w:

Code:
[COLOR=Blue]&ANALYZE-SUSPEND[/COLOR] _VERSION-NUMBER AB_v10r12 GUI
[COLOR=Blue]&ANALYZE-RESUME[/COLOR]
[COLOR=SeaGreen]/* Connected Databases 
          temp-db          PROGRESS
*/[/COLOR]
[COLOR=Blue]&Scoped-define[/COLOR] [COLOR=Blue]WINDOW-NAME[/COLOR] C-Win

[COLOR=Blue]&ANALYZE-SUSPEND[/COLOR] _UIB-CODE-BLOCK _CUSTOM _TEMP-TABLE 
[COLOR=SeaGreen]/* ***********Included Temp-Table & Buffer definitions **************** */[/COLOR]
{ttcustomer.i}

[COLOR=SeaGreen]/* _UIB-CODE-BLOCK-END */[/COLOR]
[COLOR=Blue]&ANALYZE-RESUME[/COLOR]
 
Found it!
From the AppBuidler. Tools --> Procedure Settings.

It's easy when you know how, but it's frustrating when you don't....
 
Back
Top