[Progress Communities] [Progress OpenEdge ABL] Forum Post: RE: KB Entry P133222

  • Thread starter Thread starter Piotr Ryszkiewicz
  • Start date Start date
Status
Not open for further replies.
P

Piotr Ryszkiewicz

Guest
Hi, I am pretty sure, this is the result of the question I had to tech support :) Look at the code below: DEFINE TEMP-TABLE w_paruj NO-UNDO FIELD payments_id AS INT FIELD turn_id AS INT FIELD rekon_id AS INT INDEX i-turn turn_id INDEX i-rekon rekon_id turn_id payments_id . DEF BUFFER b_paruj FOR w_paruj. CREATE w_paruj. ASSIGN w_paruj.turn_id = 1 /*w_paruj.rekon_id = 0 w_paruj.payments_id = 0*/. /*FIND FIRST b_paruj.*/ FOR EACH b_paruj WHERE b_paruj.turn_id GT 0 AND b_paruj.rekon_id EQ 0: DISP b_paruj. END. FOR EACH on the buffer does not show the newly created record. Regards, Piotr

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