hi dear frends,
i've two blocks named STYLES and SDETAILS both in the different canvases. where STYLES is a master block and
SDETAILS is detailed block.
now i want while entering the data or querying block
that on double clicking the STYLE_NO from styles the form
should move to the SDETAILS block to show the relative information in the SDETAILS block.
or
to enter the data relative to the clicked STYLE_NO.
i've written this code in the When-mouse-doubleclick trigger for the :STYLES.STYLE_NO
declare
a varchar2(20);
begin
a := :STYLES.STYLE_NO;
go_block('SDETAILS');
enter_query;
:SDETAILS.STYLE_NO := a; //copy STYLE_NO from STYLES to
// SDETAILS block.
execute_query;
end;
i think it will work only for querying the block if it does. so plz suggest some other solution or refine it this way both for querying and entering data.