how use replace all grid row with variable value [message #235254] |
Fri, 04 May 2007 09:31 |
mfa786
Messages: 210 Registered: February 2006 Location: karachi
|
Senior Member |
|
|
hi master
sir i have master detail form
in detail form i have 5 column grid thate have 25 row at time
one column name id
such as id have value 23
but i want replace all id row with 555
how i replace all id in grid with 555 befor commit_form
how i use loop for grid
or any other method
please give me idea
thank's
aamir
|
|
|
|
Re: how use replace all grid row with variable value [message #235318 is a reply to message #235299] |
Fri, 04 May 2007 23:30 |
mfa786
Messages: 210 Registered: February 2006 Location: karachi
|
Senior Member |
|
|
thank' for your reply
no your this code replace only last row change not change all grid row
but this code change all row one by one
Go_Block('Detail');
First_Record;
Loop
:detail.item := '...' ;
Exit when :system.last_Record = 'TRUE' ;
Next_record;
End loop;
First_Record ;
|
|
|
|