105 pts.
 store data from report10g to database
how to use srw.get_page_num(...) and store the number in database

Software/Hardware used:
ASKED: May 13, 2009  1:17 PM
UPDATED: May 13, 2009  1:48 PM

Answer Wiki:
You can put the call to that procedure in a format trigger of some object in the main section of your layout model. Something similar to this: <pre>function M_G_some_frame_GRPFRFormatT return boolean is nPage number; begin srw.get_page_num(nPage); insert into tmp_reporte values (nPage); -- include other appropriate fields here. commit; return (TRUE); end;</pre>
Last Wiki Answer Submitted:  May 13, 2009  1:48 pm  by  carlosdl   63,580 pts.
All Answer Wiki Contributors:  carlosdl   63,580 pts.
To see all answers submitted to the Answer Wiki: View Answer History.


Discuss This Question:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _