Skip to Main Content

DevOps, CI/CD and Automation

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

next steps

Sea!GullApr 27 2010 — edited Apr 29 2010
Hello 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
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on May 26 2010
Added on Apr 27 2010
3 comments
1,119 views