Advertisement

07.13.2007 at 06:29PM PDT, ID: 22695956
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

6.6

SQL to show Oracle Financial Statement Generator row set setup does not show rows without account assignments or calculations

Asked by janthonyn in PL / SQL, Oracle Database

Tags: , ,

An Oracle FSG row set has line items that show amounts in an FSG Report that are defined by account code assignment or by calculations. You cannot have both account assignment and calculation setup in the same line item.  Account assignment entries and calculation entries are stored in different database tables. The settings for each are entered into separate forms. A third way to define displayed line items is to enter nothing in either the account assignment or calculation setup subforms of the line item. This happens when the line item is used as a title description or a method of adding space between line items. I have a sql that is designed to show settings made for each line item in a named FSG report. However, it isn't outputing anything for the description only or empty rows. Here's the sql so far.

select rr.name report_name
    ,rras.name row_set_name
    ,rra.axis_seq
    ,rra.axis_name
    ,rra.description row_desc
    ,rra.display_flag display
    ,rra.display_zero_amount_flag dpl_zero_amt
    ,0 calc_seq
    ,'A' opr
    ,rrac.axis_seq line#
    ,rrac.sign
    ,to_char(rrac.segment3_low) low
    ,to_char(rrac.segment3_high) high
    ,rrac.segment3_type s_type
    ,rrac.segment3_low||' - '||rrac.segment3_high low_high
    ,'1' row#  
from rg_reports rr
    ,rg_report_axis_sets rras
    ,rg_report_axes rra
    ,rg_report_axis_contents rrac
where rr.row_set_id = rras.axis_set_id
and rr.row_set_id = rra.axis_set_id
and rras.axis_set_id = rra.axis_set_id
and rr.row_set_id = rrac.axis_set_id
and rra.axis_set_id = rrac.axis_set_id
and rras.axis_set_id = rrac.axis_set_id
and rrac.axis_seq = rra.axis_seq
and rras.axis_set_type = 'R'
and rras.name like '%Oper Inc Row (13 mo)%'
and rr.name like '%Oper Income (13 mo)-Bdgt 2007%'
union
select rr.name report_name
    ,rras.name row_set_name
    ,rra.axis_seq
    ,rra.axis_name
    ,rra.description row_desc
    ,rra.display_flag display
    ,rra.display_zero_amount_flag dpl_zero_amt
    ,rrc.calculation_seq calc_seq
    ,rrc.operator opr
    ,0 line#
    ,'C' sign
    ,to_char(rrc.axis_seq_low) low
    ,to_char(rrc.axis_seq_high) high
    ,'C' s_type
    ,rrc.axis_seq_low||' - '||rrc.axis_seq_high low_high
    ,'1' row#
from rg_reports rr
    ,rg_report_axis_sets rras
    ,rg_report_axes rra
    ,rg_report_axis_contents rrac
    ,rg_report_calculations rrc
where rr.row_set_id = rras.axis_set_id
and rr.row_set_id = rra.axis_set_id
and rras.axis_set_id = rra.axis_set_id
and rr.row_set_id = rrc.axis_set_id
and rra.axis_set_id = rrc.axis_set_id
and rras.axis_set_id = rrc.axis_set_id
and rra.axis_seq = rrc.axis_seq
and rras.axis_set_type = 'R'
and rras.name like '%Oper Inc Row (13 mo)%'
and rr.name like '%Oper Income (13 mo)-Bdgt 2007%'

I need help figuring out how to also include the missing line items. Start Free Trial
 
Loading Advertisement...
 
[+][-]07.14.2007 at 09:17AM PDT, ID: 19487307

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07.14.2007 at 12:58PM PDT, ID: 19488008

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]07.14.2007 at 01:20PM PDT, ID: 19488057

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07.21.2007 at 11:05AM PDT, ID: 19540108

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: PL / SQL, Oracle Database
Tags: oracle, statement, financial
Sign Up Now!
Solution Provided By: janthonyn
Participating Experts: 2
Solution Grade: B
 
 
[+][-]07.21.2007 at 12:16PM PDT, ID: 19540291

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]02.27.2008 at 12:26PM PST, ID: 20997975

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]02.27.2008 at 01:37PM PST, ID: 20998681

Experts Exchange has a courteous staff of administrators who help members get the most out of the website by means of administrative comments like this one.

Start your 7-day free trial to view this Administrative Comment or ask the Experts your question.

 
[+][-]03.01.2008 at 05:04AM PST, ID: 21021379

Experts Exchange has a courteous staff of administrators who help members get the most out of the website by means of administrative comments like this one.

Start your 7-day free trial to view this Administrative Comment or ask the Experts your question.

 
[+][-]03.01.2008 at 05:04AM PST, ID: 21021382

Experts Exchange has a courteous staff of administrators who help members get the most out of the website by means of administrative comments like this one.

Start your 7-day free trial to view this Administrative Comment or ask the Experts your question.

 
 
Loading Advertisement...
20080716-EE-VQP-32