next steps
Sea!GullApr 27 2010 — edited Apr 29 2010Hello Every one,
We have Master Detail Data Model with 3 Record Groups.
We would like to get separated pages adding Section Number when the Start Date and End Date are unlike.
Our current situation can view at: http://nyapex.blogspot.com/2010/04/next-steps.html
We added following formula go get section number.
**************
function CF_Sec_PagesFormula return Number is
sec_num NUMBER;
es_num NUMBER;
begin
es_num := to_date( :end_date) - to_date(:start_date);
IF es_num > 0 then
return (es_num) ;
ELSE
return (sec_num);
END IF;
END;
***************************
Now, we got and display section numbers.
We have questions to separate according to the sections number.
For instance, section numbers is 3, we want 3 separated reports.
Section 1
Section 2
Section 3
We really need a guidance to end.
If you have any questions for us, please let us know.
Thanks in advance,
S!G