how to read from browser rows...

sfaiz

New Member
hi....i'm very new to progress development...i'm using 9.1D...
i have got a browser from where I would like to read all the row values of 1 particular column....
in the trigger display event of the browser, I'm populating it with the data from the temp-table as below...the browser is connected to freeform query...

Code:
/* Browse definitions                                                   */
DEFINE BROWSE br-record
&ANALYZE-SUSPEND _UIB-CODE-BLOCK _DISPLAY-FIELDS br-record C-Win _FREEFORM
  QUERY br-record DISPLAY
      ttt-tenant  
    ttt-account 
    ttt-desc    
    ttt-basis   
    ttt-chg-amt 
    ttt-tenant-portion
    ttt-variance
enable
    ttt-variance
there is another field in the temp-table called 'ttt-new-var'...as the value in the browser can change on the 'ttt-variance' column of the browser, so what I would like to do is get the updated row datas from the 'ttt-variance' field of the browser and assign them to corresponding'ttt-new-var' field...
so any help would be helpful...thanks...
 
The key here is your data query.
The query is populating your browse with the required database rows. Simply iterate this query on/for your tamp table requirements.
The query populates browse rows with the selected data, simply create a temp table row and populate the row attributes with the data.
 
Back
Top