About oracle Form. [message #537025] |
Mon, 26 December 2011 03:57 ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
|
Hi all, I want to a form 10g as image under. Now i want to when item pallet_serial has new information then automatic delivery that information to block under.Example, with this form, i want to
delivery information about FROM_LOC, TO_LOC, SEAL_NO, CAR_NO, PALLET_SERIAL... into under block, and after that clear field PALLET_SERIAL for next time input.
Detail you can see image under.
Now, how do i do?
-
Attachment: anh.JPG
(Size: 71.66KB, Downloaded 650 times)
|
|
|
Re: About oracle Form. [message #537097 is a reply to message #537025] |
Mon, 26 December 2011 12:58 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) |
![](/forum/images/custom_avatars/72104.gif) |
Littlefoot
Messages: 21823 Registered: June 2005 Location: Croatia, Europe
|
Senior Member Account Moderator |
|
|
If I understood what you said, create a "copy" button which would copy information from the 1st block into the 2nd one.
go_block('second_block');
last_record;
:second_block.item_1 := :first_block.item_1;
:second_block.item_2 := :first_block.item_2;
etc.
go_block('first_block');
clear_block;
|
|
|