Query.urgent. [message #86495] |
Tue, 05 October 2004 19:40 |
Sam
Messages: 255 Registered: April 2000
|
Senior Member |
|
|
hi all,
what i want to know is that can we navigate out of current block to another block during enter query.the problem is that after specifying a query criteria for master block , i want to specify a query criteria for detail block and then execute query based on them.
but the forms is prompting the message - cannot navigate out of current block in enter query mode.i know this is true. but can we achieve navigation out of current block....
thanks in advance and any quick replies are welcome.....
|
|
|
Re: Query.urgent. [message #86496 is a reply to message #86495] |
Tue, 05 October 2004 21:03 |
Ani
Messages: 56 Registered: November 2000
|
Member |
|
|
pls try using key-next-item trigger.
in key-next-item trigger of the item
enter;
if form_success then
go_block('block_name');
go_item('blk_name.text_name'); --optional
end if;
in the block make the navigation to another block where u want the query to be executed.
All the best
Ani
|
|
|