[Stackoverflow] [Progress OpenEdge ABL] how to add and display specific records from code_mstr to temp-table in progress 4gl?

Status
Not open for further replies.
H

Hugh Jass

Guest
I want to create a temp-table for generalized code maintenance(code_mstr) this is what I have written for the temp-table creation

Code:
define temp-table tt_gcm no-undo
field tt_fldname like code_fldname
field tt_value like code_value
field tt_cmmt like code_cmmt
field tt_group like code_group   
field tt_domain like global_domain
index tt_idx
      tt_domain
      tt_fldname
      tt_value.

and after this I defined a form for the same

Code:
form
code_fldname
code_value
code_cmmt
code_group
with frame a side-labels

I also gave prompt-for for code_fldname and code_value because I want it to have user input

Code:
prompt-for code_fldname
editing:
/*wrote the mnfnp05.i logic here that enabled the input */
/*similarly for code_value as well */

now I only want to display the records that I enter via the input field, I don't want to display all the records that are present in the code_mstr, is there a way to display those specific recprds?

Continue reading...
 
Status
Not open for further replies.
Top