GL REPORTS IN DISCOVERER

hI Group,
i am new to discoverer ,i have a client requirement here,
requirement is:
they have a report in gl called 'general ledger detail % horizantal'( it is develop with reports 6i)
i have to translate this into oracle discoverer
query-->
SELECT A.NAME NAME,
A.JHI JHI,
A.account_num account_num,
A.DESCRIPTION DESCRIPTION,
A.category category,
a.seq_num1 seq_num1,
a.lseq lseq,
a.cat_name cat_name,
A.location location,
A.division division,
A.acc_desc acc_desc,
A.source source,
A.je_line_num je_line_num,
A.Accounted_Date Accounted_Date,
A.entry entry,
A.batch batch,
A.naration naration,
A.LSequence LSequence,
A.Document_num Document_num,
A.LLine LLine,
A.debit debit,
A.credit credit,
A.ent_dr ent_dr,
A.ent_cr ent_cr,
A.reference reference,
A.ref2 ref2,
A.ref3 ref3,
A.reference_1 reference_1,
A.reference_2 reference_2,
A.reference_3 reference_3,
A.transaction_no transaction_no,
A.reference_5 reference_5,
A.reference_6 reference_6,
A.reference_7 reference_7,
A.reference_8 reference_8,
A.reference_9 reference_9,
A.reference_10 reference_10,
A.seq_id seq_id,
A.seq_NUM seq_NUM,
A.h_seq_id h_seq_id,
A.gl_sl_link_id gl_sl_link_id,
A.ae_line_id ae_line_id,
A.gl_code_id gl_code_id,
A.org_id org_id,
A.org_name org_name
FROM (select
jh.NAME,
JH.JE_HEADER_ID JHI ,
nvl(gcc.SEGMENT4,0) account_num,
nvl(ffv.DESCRIPTION,0) DESCRIPTION,
decode(jc.je_category_name,'7','JV','8','JV','9','JV','10','JV','11','JV','12','JV','13','JV',jc.je_category_name)category,
decode(jc.je_category_name,'7',jh.doc_sequence_value,'8',jh.doc_sequence_value,'9',jh.doc_sequence_value,'10',jh.doc_sequence_value,'11',jh.doc_sequence_value,'12',jh.doc_sequence_value,'13',jh.doc_sequence_value,ir.subledger_doc_sequence_value)seq_num1,
decode(jc.je_category_name,'7',jc.USER_JE_CATEGORY_NAME ,'8',jc.USER_JE_CATEGORY_NAME,'9',jc.USER_JE_CATEGORY_NAME,'10',jc.USER_JE_CATEGORY_NAME,'11',jc.USER_JE_CATEGORY_NAME,'12',jc.USER_JE_CATEGORY_NAME,'13',jc.USER_JE_CATEGORY_NAME, ds.name)lseq,
jc.USER_JE_CATEGORY_NAME cat_name,
nvl(gcc.SEGMENT1 ,0) location,
nvl(gcc.SEGMENT2,0) division,
ffv.DESCRIPTION acc_desc,
jh.je_source source,
ir.je_header_id je_header_id,
ir.je_line_num je_line_num,
jl.effective_date Accounted_Date,
jh.name entry,
jh.je_batch_id batch,
substr(jl.description,1,250)naration,
ds.name LSequence,
jh.doc_sequence_value Document_num,
jl.je_line_num LLine,
nvl(jl.accounted_dr,0) debit,
nvl(jl.accounted_cr ,0) credit,
jl.ACCOUNTED_DR ent_dr,
jl.ACCOUNTED_CR ent_cr,
jh.external_reference reference,
jl.reference_2 ref2,
jl.reference_3 ref3,
nvl(jl.period_name,0) per_name,
nvl(ir.reference_1,' ') reference_1,
ir.reference_2 reference_2,
ir.reference_3 reference_3,
ir.reference_4 transaction_no,
nvl(ir.reference_5,' ') reference_5,
ir.reference_6 reference_6,
ir.reference_7 reference_7,
ir.reference_8 reference_8,
ir.reference_9 reference_9,
ir.reference_10 reference_10,
ir.subledger_doc_sequence_id seq_id,
ir.subledger_doc_sequence_value seq_num,
jh.doc_sequence_id h_seq_id,
nvl(ir.gl_sl_link_id,0) gl_sl_link_id,
null ae_line_id,
jl.code_combination_id gl_code_id,
hou.ORGANIZATION_ID org_id,
hou.name org_name
from GL_JE_LINES jl,
GL_JE_HEADERS jh,
GL_JE_BATCHES jb,
GL_JE_SOURCES js,
GL_JE_CATEGORIES jc,
GL_IMPORT_REFERENCES ir,
--ap_ae_lines_all            ael,
FND_DOCUMENT_SEQUENCES ds,
gl_code_combinations gcc,
fnd_flex_values_vl ffv,
hr_operating_units hou
where
jl.status||'' = 'P'
--- and jl.code_combination_id = :ccid
---and jl.set_of_books_id = :P_SET_OF_BKS_ID
and jh.status = 'P'
and jh.actual_flag = 'A'
and jh.je_header_id = jl.je_header_id + 0
---jh.je_source||'' like
--decode(:P_SOURCE,'','%', :P_SOURCE)
-- and jh.je_category||'' like decode(:P_CATEGORY,'','%',:P_CATEGORY)
and jb.je_batch_id = jh.je_batch_id + 0
and jb.average_journal_flag = 'N'
and js.je_source_name = jh.je_source
and jc.je_category_name = jh.je_category
and ir.je_header_id (+) = jl.je_header_id
and ir.je_line_num (+) = jl.je_line_num
and ( ir.rowid IS NULL
--or jh.je_source                   IN  ('Inventory','Payables', 'Receivables','Purchasing')
or ir.rowid IN ( SELECT max(ir2.rowid)
FROM gl_import_references ir2
WHERE ir2.je_header_id = jl.je_header_id
AND ir2.je_line_num = jl.je_line_num))
--and ael.gl_sl_link_id(+)       =  ir.gl_sl_link_id
and ds.doc_sequence_id (+) = ir.subledger_doc_sequence_id
and gcc.CODE_COMBINATION_ID = jl.CODE_COMBINATION_ID
and ffv.FLEX_VALUE_SET_ID='1009979'
and gcc.SEGMENT4=ffv.FLEX_VALUE
and gcc.SEGMENT1 =:location -11
and gcc.SEGMENT4 between nvl(:From_acc,gcc.SEGMENT4) and nvl(:To_acc,gcc.SEGMENT4)
--AND GCC.SEGMENT2 =NVL(:DIV,GCC.SEGMENT2)
and gcc.segment2 BETWEEN nvl(:FROM_Div,gcc.segment2) AND NVL(:TO_DIV,GCC.SEGMENT2)
and jl.effective_date between nvl(:from_date,jl.effective_date) and nvl(:to_date,jl.effective_date)
and gcc.SEGMENT1 between nvl(:from_loc,gcc.SEGMENT1) and nvl(:to_loc,gcc.SEGMENT1)
and hou.ORGANIZATION_ID=:Operating_Unit
AND JH.JE_SOURCE <>'Purchase Invoices'
AND nvl(JL.GL_SL_LINK_ID,0) <> 85508
--order by jl.EFFECTIVE_DATE,gcc.SEGMENT4
UNION ALL
select distinct
null NAME,
null JHI ,
gcc.SEGMENT4 account_num,
ffv.description DESCRIPTION,
xai.user_je_category_name category,
xai.doc_sequence_value seq_num1,
xai.doc_sequence_name lseq,
null cat_name,
gcc.segment1 location,
gcc.segment2 division,
null acc_desc,
null source,
null je_header_id,
null je_line_num,
xai.accounting_date Accounted_Date,
null entry,
null batch,
xai.comments naration,
null LSequence,
null Document_num,
null LLine,
xai.accounted_dr debit,
xai.accounted_cr credit,
xai.accounted_dr ent_dr,
xai.accounted_cr ent_cr,
null reference,
null ref2,
null ref3,
null per_name,
xai.third_party_name reference_1,
null reference_2,
null reference_3,
null transaction_no,
null reference_5,
null reference_6,
null reference_7,
null reference_8,
null reference_9,
null reference_10,
null seq_id,
null seq_num,
null h_seq_id,
null gl_sl_link_id,
null ae_line_id,
null gl_code_id,
hou.ORGANIZATION_ID org_id,
hou.name org_name
from GL_JE_LINES jl,
GL_JE_HEADERS jh,
GL_JE_BATCHES jb,
GL_JE_SOURCES js,
GL_JE_CATEGORIES jc,
GL_IMPORT_REFERENCES ir,
--ap_ae_lines_all            ael,
FND_DOCUMENT_SEQUENCES ds,
gl_code_combinations gcc,
fnd_flex_values_vl ffv,
hr_operating_units hou,
xla_ap_inv_ael_gl_v xai
where
jl.status||'' = 'P'
--- and jl.code_combination_id = :ccid
---and jl.set_of_books_id = :P_SET_OF_BKS_ID
and jh.status = 'P'
and jh.actual_flag = 'A'
and jh.je_header_id = jl.je_header_id + 0
---jh.je_source||'' like
--decode(:P_SOURCE,'','%', :P_SOURCE)
-- and jh.je_category||'' like decode(:P_CATEGORY,'','%',:P_CATEGORY)
and jb.je_batch_id = jh.je_batch_id + 0
and jb.average_journal_flag = 'N'
and js.je_source_name = jh.je_source
and jc.je_category_name = jh.je_category
and ir.je_header_id (+) = jl.je_header_id
and ir.je_line_num (+) = jl.je_line_num
and ( ir.rowid IS NULL
--or jh.je_source                   IN  ('Inventory','Payables', 'Receivables','Purchasing')
or ir.rowid IN ( SELECT max(ir2.rowid)
FROM gl_import_references ir2
WHERE ir2.je_header_id = jl.je_header_id
AND ir2.je_line_num = jl.je_line_num))
--and ael.gl_sl_link_id(+)       =  ir.gl_sl_link_id
and ds.doc_sequence_id (+) = ir.subledger_doc_sequence_id
and gcc.CODE_COMBINATION_ID = jl.CODE_COMBINATION_ID
and ffv.FLEX_VALUE_SET_ID='1009979'
and gcc.SEGMENT4=ffv.FLEX_VALUE
and gcc.SEGMENT1 =:location -11
and gcc.SEGMENT4 between nvl(:From_acc,gcc.SEGMENT4) and nvl(:To_acc,gcc.SEGMENT4)
--AND GCC.SEGMENT2 =NVL(:DIV,GCC.SEGMENT2)
and gcc.segment2 BETWEEN nvl(:FROM_Div,gcc.segment2) AND NVL(:TO_DIV,GCC.SEGMENT2)
and jl.effective_date between nvl(:from_date,jl.effective_date) and nvl(:to_date,jl.effective_date)
and gcc.SEGMENT1 between nvl(:from_loc,gcc.SEGMENT1) and nvl(:to_loc,gcc.SEGMENT1)
and hou.ORGANIZATION_ID=:Operating_Unit
AND JH.JE_SOURCE <>'Purchase Invoices'
AND JL.GL_SL_LINK_ID ='85508'
and xai.application_id = 200
AND xai.je_header_id = 4268
AND xai.je_line_num = 3
union
select
jh.NAME,JH.
JE_HEADER_ID ,
nvl(gcc.SEGMENT4,0) account_num,
nvl(ffv.DESCRIPTION,0) DESCRIPTION,
decode(jc.je_category_name,'7','JV','8','JV','9','JV',jc.je_category_name)category,
null seq_num1,
null lseq,
jc.USER_JE_CATEGORY_NAME cat_name,
nvl(gcc.SEGMENT1 ,0) location,
nvl(gcc.SEGMENT2,0) division,
ffv.DESCRIPTION acc_desc,
jh.je_source source,
ir.je_header_id je_header_id,
ir.je_line_num je_line_num,
jl.effective_date Accounted_Date,
jh.name entry,
jh.je_batch_id batch,
substr(AID.DESCRIPTION,1,250) naration,
ds.name LSequence,
jh.doc_sequence_value Document_num,
jl.je_line_num LLine,
nvl(jl.accounted_dr,0) debit,
nvl(jl.accounted_cr ,0) credit,
jl.ACCOUNTED_DR ent_dr,
jl.ACCOUNTED_CR ent_cr,
jh.external_reference reference,
jl.reference_2 ref2,
jl.reference_3 ref3,
nvl(jl.period_name,0) per_name,
nvl(ir.reference_1,' ') reference_1,
ir.reference_2 reference_2,
ir.reference_3 reference_3,
ir.reference_4 transaction_no,
nvl(ir.reference_5,' ') reference_5,
ir.reference_6 reference_6,
ir.reference_7 reference_7,
ir.reference_8 reference_8,
ir.reference_9 reference_9,
ir.reference_10 reference_10,
ir.subledger_doc_sequence_id seq_id,
ir.subledger_doc_sequence_value seq_num,
jh.doc_sequence_id h_seq_id,
ir.gl_sl_link_id gl_sl_link_id,
ael.ae_line_id ae_line_id,
jl.code_combination_id gl_code_id,
hou.ORGANIZATION_ID org_id,
hou.name org_name
from GL_JE_LINES jl,
GL_JE_HEADERS jh,
GL_JE_BATCHES jb,
GL_JE_SOURCES js,
GL_JE_CATEGORIES jc,
GL_IMPORT_REFERENCES ir,
ap_ae_lines_all ael,
FND_DOCUMENT_SEQUENCES ds,
gl_code_combinations gcc,
fnd_flex_values_vl ffv,
hr_operating_units hou,
AP_INVOICEs_ALL AID
where
jl.status||'' = 'P'
--- and jl.code_combination_id = :ccid
---and jl.set_of_books_id = :P_SET_OF_BKS_ID
and jh.status = 'P'
and jh.actual_flag = 'A'
and jh.je_header_id = jl.je_header_id + 0
---jh.je_source||'' like
--decode(:P_SOURCE,'','%', :P_SOURCE)
-- and jh.je_category||'' like decode(:P_CATEGORY,'','%',:P_CATEGORY)
and jb.je_batch_id = jh.je_batch_id + 0
and jb.average_journal_flag = 'N'
and js.je_source_name = jh.je_source
and jc.je_category_name = jh.je_category
and ir.je_header_id (+) = jl.je_header_id
and ir.je_line_num (+) = jl.je_line_num
and ( ir.rowid IS NULL
--or jh.je_source                   IN  ('Inventory','Payables', 'Receivables','Purchasing')
or ir.rowid IN ( SELECT max(ir2.rowid)
FROM gl_import_references ir2
WHERE ir2.je_header_id = jl.je_header_id
AND ir2.je_line_num = jl.je_line_num))
and ael.gl_sl_link_id(+) = ir.gl_sl_link_id
and ds.doc_sequence_id (+) = ir.subledger_doc_sequence_id
and gcc.CODE_COMBINATION_ID = jl.CODE_COMBINATION_ID
and ffv.FLEX_VALUE_SET_ID='1009979'
and gcc.SEGMENT4=ffv.FLEX_VALUE
and gcc.SEGMENT1 =:location -11
and gcc.SEGMENT4 between nvl(:From_acc,gcc.SEGMENT4) and nvl(:To_acc,gcc.SEGMENT4)
--AND GCC.SEGMENT2 =NVL(:DIV,GCC.SEGMENT2)
and gcc.segment2 BETWEEN nvl(:FROM_Div,gcc.segment2) AND NVL(:TO_DIV,GCC.SEGMENT2)
and jl.effective_date between nvl(:from_date,jl.effective_date) and nvl(:to_date,jl.effective_date)
and gcc.SEGMENT1 between nvl(:from_loc,gcc.SEGMENT1) and nvl(:to_loc,gcc.SEGMENT1)
and hou.ORGANIZATION_ID=:Operating_Unit
AND JH.JE_SOURCE LIKE 'Purchase Invoices'
AND IR.REFERENCE_2 = AID.INVOICE_ID
union all
select
distinct
null NAME,
null JHI ,
nvl(gcc.SEGMENT4,0) account_num,
nvl(ffv.DESCRIPTION,0) DESCRIPTION,
null category,
null seq_num1,
null lseq,
null cat_name,
nvl(gcc.SEGMENT1 ,0) location,
nvl(gcc.SEGMENT2,0) division ,
null acc_desc,
null source,
null je_header_id,
null je_line_num,
null Accounted_Date,
null entry,
null batch,
null naration,
null LSequence,
null Document_num,
null LLine,
null debit,
null credit,
null ent_dr,
null ent_cr,
null reference,
null ref2,
null ref3,
null per_name,
null reference_1,
null reference_2,
null reference_3,
null transaction_no,
null reference_5,
null reference_6,
null reference_7,
null reference_8,
null reference_9,
null reference_10,
null seq_id,
null seq_num,
null h_seq_id,
null gl_sl_link_id,
null ae_line_id,
null gl_code_id,
null org_id,
null org_name
from gl_code_combinations gcc ,fnd_flex_values_vl ffv
where gcc.SEGMENT4 between nvl(:From_acc,gcc.SEGMENT4) and nvl(:To_acc,gcc.SEGMENT4)
and gcc.segment2 BETWEEN nvl(:FROM_Div,gcc.segment2) AND NVL(:TO_DIV,GCC.SEGMENT2)
and gcc.SEGMENT1 between nvl(:from_loc,gcc.SEGMENT1) and nvl(:to_loc,gcc.SEGMENT1)
and ffv.FLEX_VALUE_SET_ID='1009979'
and gcc.SEGMENT4=ffv.FLEX_VALUE
and gcc.CODE_COMBINATION_ID not in (
select distinct
jl.code_combination_id gl_code_id
from GL_JE_LINES jl,
GL_JE_HEADERS jh,
GL_JE_BATCHES jb,
GL_JE_SOURCES js,
GL_JE_CATEGORIES jc,
GL_IMPORT_REFERENCES ir,
ap_ae_lines_all ael,
FND_DOCUMENT_SEQUENCES ds,
gl_code_combinations gcc,
fnd_flex_values_vl ffv,
hr_operating_units hou
where
jl.status||'' = 'P'
--- and jl.code_combination_id = :ccid
---and jl.set_of_books_id = :P_SET_OF_BKS_ID
and jh.status = 'P'
and jh.actual_flag = 'A'
and jh.je_header_id = jl.je_header_id + 0
---jh.je_source||'' like
--decode(:P_SOURCE,'','%', :P_SOURCE)
-- and jh.je_category||'' like decode(:P_CATEGORY,'','%',:P_CATEGORY)
and jb.je_batch_id = jh.je_batch_id + 0
and jb.average_journal_flag = 'N'
and js.je_source_name = jh.je_source
and jc.je_category_name = jh.je_category
and ir.je_header_id (+) = jl.je_header_id
and ir.je_line_num (+) = jl.je_line_num
and ( ir.rowid IS NULL
--or jh.je_source                   IN  ('Inventory','Payables', 'Receivables','Purchasing')
or ir.rowid IN ( SELECT max(ir2.rowid)
FROM gl_import_references ir2
WHERE ir2.je_header_id = jl.je_header_id
AND ir2.je_line_num = jl.je_line_num))
and ael.gl_sl_link_id(+) = ir.gl_sl_link_id
and ds.doc_sequence_id (+) = ir.subledger_doc_sequence_id
and gcc.CODE_COMBINATION_ID = jl.CODE_COMBINATION_ID(+)
and ffv.FLEX_VALUE_SET_ID='1009979'
and gcc.SEGMENT4=ffv.FLEX_VALUE(+)
and gcc.SEGMENT1 =:location -11
and gcc.SEGMENT4 between nvl(:From_acc,gcc.SEGMENT4) and nvl(:To_acc,gcc.SEGMENT4)
--AND GCC.SEGMENT2 =NVL(:DIV,GCC.SEGMENT2)
and gcc.segment2 BETWEEN nvl(:FROM_Div,gcc.segment2) AND NVL(:TO_DIV,GCC.SEGMENT2)
and jl.effective_date between nvl(:from_date,jl.effective_date) and nvl(:to_date,jl.effective_date)
and gcc.SEGMENT1 between nvl(:from_loc,gcc.SEGMENT1) and nvl(:to_loc,gcc.SEGMENT1)
and hou.ORGANIZATION_ID=:Operating_Unit
AND JH.JE_SOURCE <>'Purchase Invoices' ))A
order by A.Accounted_Date,A.account_num,A.seq_NUM
can any body give the steps how to implement its business area and work book i(step by step) ?
**i am using discoverer 10g**
Thanks & Regards,
azamtulla khan

In its simplest form - you want to create a custom folder (Insert -> Folder -> Custom) in Disco Admin using the SQL from the report.
You cannot have bind parameters in your SQL, so you will have to use a trick detailed in Note 304192.1 on metalink.
This allows you to restrict your query within the SQL of the custom folder.
If you don't do it this way you could hit performance issues as any parameters defined in the workbook will be applied after the SQL in the custom folder has been run.
Hope this gets you on the way.

Similar Messages

  • How can I uninstall a damaged installation of Fusion - PFRD 11.1.1.6.0 - Oracle Portal, Forms, Reports and Discoverer

    Hello,
    I am upgrading EBS 11i to 12i, Discoverer 4 to 11. After completing ebs installation and upgrade successfully, I am now working on the Oracle Fusion piece of the upgrade.
    I have installed
    1. JDK
    2. Repository Creation Utility - RCU (schema)
    3. Weblogic - WLS 10.3.6
    4. Oracle Fusion - Discoverer 11g Release 1 Patchset 1 11.1.1.2.0 PFRD
    5. Oracle Portal, Forms, Reports and Discoverer 11g Patchset 11.1.1.6.0 - Patchset 13517084
    6. Executed config.sh and it failed with but continued.
         During the Configuration of Oracle Fusion with config.sh there was failure at with "fails at creating data sources" and accidentally proceeded and all seem to go well until after shutting down the servers when Weblogic Managed Server is unable to start.
    The start log indicated: "weblogic.store.PersistentStoreFatalException: [Store:280105]The persistent file store "_WLS_WLS_DISCO" cannot open file _WLS_WLS_DISCO000000.DAT." and I have been unable to find a solution for this error?
    See log file error at https://dl.dropboxusercontent.com/u/15497130/oracle/ebs11/startManagedWebLogic.sh_nohup.out
    If re-installation is my only option, then what are the steps to uninstall, and which components do I have to uninstall given that I had upgraded all the schemas involved?
    Mathias

    Hey,
    You can always change the JDBC datasources in the Weblogic admin console . but have you recorded what is the specific error you got during the datasources creation .
    I prefer...create a new user , give him sysdba privillages . Start RCU and create the DEV_DISCOVERER , DEV_DISCOVERER_PS schemas (prefix is your choice)
    The Admin server will start . so go to admin console .
    click services -> Data Sources
    Check the data sources you have . edit each datasource and update the connection pool information .
    after this you can start the Managed server WLS_DISCO
    i believe this will solve this .........
    if you still get issue again . you can try the link Using the WebLogic Persistent Store
    Thanks
    Naga

  • Error when running a report in Discoverer Desktop

    All -
    I run a report in discoverer desktop and got the following warning message: This sheet currently contains no data.
    I generated the query by using the sql inspector tool and run the query in the database and, to my surprise, it showed the correct records.
    I don't know what is causing this error.
    I checked all items (in discoverer administrator) that are used in by report and everything seems to be ok.
    Any idea?
    Thanks,
    Daniel.

    Hi,
    There could be many reasons for this, what is in the query you are running?. It could be a bug in your version, what version are you using? Does it happen with one workbook or all workbooks? It could be an NLS Language problem, check that the calculation USERENV('LANG') returns the language you are expecting in Discoverer desktop. It could be a problem with the context for your session, are you using an apps mode or database mode EUL?
    Rod West

  • Install and config issues with Oracle Portal, Forms, Reports and Discoverer

    For a while now I've been struggling with migrating a testing database to a newer version.
    And right now I'm pretty much stuck at trying to configure Oracle Portal, Forms Reports and Discoverer
    What I've got:
    Windows server 2008 R2 64bit
    Oracle 11g database
    Java 6u27 64bit
    JDK 1.6 64bit (using this after 1.7 ended up throwing out bugs while trying to start a weblogic server)
    JDK 1.7 64bit
    Weblogic 10.3.5 (or so i think - I've installed from the wls1035_generic.jar from the oracle website)
    PFRD 11.1.1.2 with 11.1.1.3 installed over it, installed without config
    and a hanging up configuration
    Basically I've been trying to install PFRD (only forms, reports and enterprise manager from it actually) but it kept failing once it got to the configuration stage, so I installed without config, applied 11.1.1.3 and now trying to run the config manually with the good old \bin\config.bat
    Result - the config froze for approx.18 hours then failed
    There isn't much useful info I could deduct from the logs, mostly just says one or more configuration parts failed. At one place it mentions trying to set up a domain and starting up an adminserver for it - and apparently that's where it hangs up and finally times out and fails.
    I'm a little clueless what to do about it as the logs don't say anything else of use I could understand. Any ideas there?

    Trying the step by step, the only difference between that and what i do seems to be the file copying (which I can't do - there is no windows\extra\ directory anywhere, the files mentionned seem to already be on their places and either only there, or exactly the same) and clistering
    So far the news ain't good - the config process hangs on creating domain ->Step Creating Domain started
    It isn't frozen per se - the process doesn't use up any processor time, memory consumption within bounds, it reacts to button clicks and all..it just doesn't do anything concerning the said domain
    the last thing the .out file shows:
    Creating a new AdminServer Object ...
    AdminServer port is 7002
    Starting the domain ...
    LOADING DLL : E:\OracleDb\Middleware\develtools\install\config\\StartUtil64.dlland in the log:
    [2011-09-08T11:57:03.456+02:00] [as] [NOTIFICATION] [] [oracle.as.install.engine] [tid: 14] [ecid: 0000J98U0KsFS8XLxuDCiW1EQ92r000005,0] Setting >valueOf(DOMAIN_PORT) to:7002. Value obtained from:USERit's the same it did last time, when after 18hours it woke up with .out saying:
    oracle.as.provisioning.util.ConfigException:
    Error while starting the domain.
    Cause:
    An error occurred while starting the domain.
    Action:
    See logs for more details.
         at oracle.as.provisioning.util.ConfigException.createConfigException(ConfigException.java:123)
         at oracle.as.provisioning.weblogic.ASDomain.startDomain(ASDomain.java:3173)
         at oracle.as.provisioning.weblogic.ASDomain.startDomain(ASDomain.java:3033)
         at oracle.as.provisioning.engine.WorkFlowExecutor._startAdminServer(WorkFlowExecutor.java:1644)
         at oracle.as.provisioning.engine.WorkFlowExecutor._createDomain(WorkFlowExecutor.java:634)
         at oracle.as.provisioning.engine.WorkFlowExecutor.executeWLSWorkFlow(WorkFlowExecutor.java:390)
         at oracle.as.provisioning.engine.Config.executeConfigWorkflow_WLS(Config.java:866)
         at oracle.as.install.classic.ca.standard.StandardWorkFlowExecutor.execute(StandardWorkFlowExecutor.java:65)
         at oracle.as.install.classic.ca.standard.AbstractProvisioningTask.execute(AbstractProvisioningTask.java:26)
         at oracle.as.install.classic.ca.standard.StandardProvisionTaskList.execute(StandardProvisionTaskList.java:61)
         at oracle.as.install.classic.ca.ClassicConfigMain.doExecute(ClassicConfigMain.java:124)
         at oracle.as.install.engine.modules.configuration.client.ConfigAction.execute(ConfigAction.java:335)
         at oracle.as.install.engine.modules.configuration.action.TaskPerformer.run(TaskPerformer.java:87)
         at oracle.as.install.engine.modules.configuration.action.TaskPerformer.startConfigAction(TaskPerformer.java:104)
         at oracle.as.install.engine.modules.configuration.action.ActionRequest.perform(ActionRequest.java:15)
         at oracle.as.install.engine.modules.configuration.action.RequestQueue.perform(RequestQueue.java:63)
         at oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager.start(StandardConfigActionManager.java:158)
         at oracle.as.install.engine.modules.configuration.boot.ConfigurationExtension.kickstart(ConfigurationExtension.java:81)
         at oracle.as.install.engine.modules.configuration.ConfigurationModule.run(ConfigurationModule.java:83)
         at java.lang.Thread.run(Thread.java:619)
    Caused by: oracle.as.provisioning.util.ConfigException:
    Error while starting the domain.
    Cause:
    Starting the Admin_Server timed out.
    Action:
    See logs for more details.
         at oracle.as.provisioning.util.ConfigException.createConfigException(ConfigException.java:123)
         at oracle.as.provisioning.weblogic.ASDomain.startDomain(ASDomain.java:3143)
         ... 18 more
    oracle.as.provisioning.exception.ASProvisioningException
         at oracle.as.provisioning.engine.Config.executeConfigWorkflow_WLS(Config.java:872)
         at oracle.as.install.classic.ca.standard.StandardWorkFlowExecutor.execute(StandardWorkFlowExecutor.java:65)
         at oracle.as.install.classic.ca.standard.AbstractProvisioningTask.execute(AbstractProvisioningTask.java:26)
         at oracle.as.install.classic.ca.standard.StandardProvisionTaskList.execute(StandardProvisionTaskList.java:61)
         at oracle.as.install.classic.ca.ClassicConfigMain.doExecute(ClassicConfigMain.java:124)
         at oracle.as.install.engine.modules.configuration.client.ConfigAction.execute(ConfigAction.java:335)
         at oracle.as.install.engine.modules.configuration.action.TaskPerformer.run(TaskPerformer.java:87)
         at oracle.as.install.engine.modules.configuration.action.TaskPerformer.startConfigAction(TaskPerformer.java:104)
         at oracle.as.install.engine.modules.configuration.action.ActionRequest.perform(ActionRequest.java:15)
         at oracle.as.install.engine.modules.configuration.action.RequestQueue.perform(RequestQueue.java:63)
         at oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager.start(StandardConfigActionManager.java:158)
         at oracle.as.install.engine.modules.configuration.boot.ConfigurationExtension.kickstart(ConfigurationExtension.java:81)
         at oracle.as.install.engine.modules.configuration.ConfigurationModule.run(ConfigurationModule.java:83)
         at java.lang.Thread.run(Thread.java:619)
    Caused by: oracle.as.provisioning.exception.ASProvWorkflowException: Error Executing workflow.
         at oracle.as.provisioning.engine.WorkFlowExecutor._createDomain(WorkFlowExecutor.java:685)
         at oracle.as.provisioning.engine.WorkFlowExecutor.executeWLSWorkFlow(WorkFlowExecutor.java:390)
         at oracle.as.provisioning.engine.Config.executeConfigWorkflow_WLS(Config.java:866)
         ... 13 more
    progress in calculate progress4
    progress in calculate progress4
    oracle.as.provisioning.exception.ASProvisioningException
         at oracle.as.provisioning.engine.Config.executeConfigWorkflow_WLS(Config.java:872)
         at oracle.as.install.classic.ca.standard.StandardWorkFlowExecutor.execute(StandardWorkFlowExecutor.java:65)
         at oracle.as.install.classic.ca.standard.AbstractProvisioningTask.execute(AbstractProvisioningTask.java:26)
         at oracle.as.install.classic.ca.standard.StandardProvisionTaskList.execute(StandardProvisionTaskList.java:61)
         at oracle.as.install.classic.ca.ClassicConfigMain.doExecute(ClassicConfigMain.java:124)
         at oracle.as.install.engine.modules.configuration.client.ConfigAction.execute(ConfigAction.java:335)
         at oracle.as.install.engine.modules.configuration.action.TaskPerformer.run(TaskPerformer.java:87)
         at oracle.as.install.engine.modules.configuration.action.TaskPerformer.startConfigAction(TaskPerformer.java:104)
         at oracle.as.install.engine.modules.configuration.action.ActionRequest.perform(ActionRequest.java:15)
         at oracle.as.install.engine.modules.configuration.action.RequestQueue.perform(RequestQueue.java:63)
         at oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager.start(StandardConfigActionManager.java:158)
         at oracle.as.install.engine.modules.configuration.boot.ConfigurationExtension.kickstart(ConfigurationExtension.java:81)
         at oracle.as.install.engine.modules.configuration.ConfigurationModule.run(ConfigurationModule.java:83)
         at java.lang.Thread.run(Thread.java:619)
    Caused by: oracle.as.provisioning.exception.ASProvWorkflowException: Error Executing workflow.
         at oracle.as.provisioning.engine.WorkFlowExecutor._createDomain(WorkFlowExecutor.java:685)
         at oracle.as.provisioning.engine.WorkFlowExecutor.executeWLSWorkFlow(WorkFlowExecutor.java:390)
         at oracle.as.provisioning.engine.Config.executeConfigWorkflow_WLS(Config.java:866)
         ... 13 more
    Going to execute executeAfterConfig
    java.lang.IllegalStateException: Action:Application Configuration failed with error:Configure Classic Failed.
         at oracle.as.install.engine.modules.configuration.client.ConfigAction.fail(ConfigAction.java:227)
         at oracle.as.install.classic.ca.ClassicConfigMain.doExecute(ClassicConfigMain.java:129)
         at oracle.as.install.engine.modules.configuration.client.ConfigAction.execute(ConfigAction.java:335)
         at oracle.as.install.engine.modules.configuration.action.TaskPerformer.run(TaskPerformer.java:87)
         at oracle.as.install.engine.modules.configuration.action.TaskPerformer.startConfigAction(TaskPerformer.java:104)
         at oracle.as.install.engine.modules.configuration.action.ActionRequest.perform(ActionRequest.java:15)
         at oracle.as.install.engine.modules.configuration.action.RequestQueue.perform(RequestQueue.java:63)
         at oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager.start(StandardConfigActionManager.java:158)
         at oracle.as.install.engine.modules.configuration.boot.ConfigurationExtension.kickstart(ConfigurationExtension.java:81)
         at oracle.as.install.engine.modules.configuration.ConfigurationModule.run(ConfigurationModule.java:83)
         at java.lang.Thread.run(Thread.java:619)
    In Config Module Finish Event...and the log continuing with some variable setting notifications and this:
    [2011-09-08T08:27:45.272+02:00] [as] [ERROR] [] [oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager] [tid: 14] [ecid: >0000J93lRQOFS8XLxuDCiW1EPpn_000005,0] One or More configurations failed. Exitingthen again more traces and notifications until the end marking config as failed
    I'm kinda paranoid about the double backslash in the dll path, but other than that no clue as to why the domain doesn't set up
    the other link you mentionned seems to have no relevance yet
    does that clear up anything for you though?
    ..can the lack of SOA suite have anything to do with the problem?

  • REPORT LAYOUT Discoverer Viewer AS-10g

    I have a problem about report layout on Discoverer viewer AS10g.
    If I have a crosstab layout and Year is my left axis and Sales and Products are my top axis, I see the label on report (Year), not only values (2003, …). I also see the label “Data point(s)”, but I don’t want to see it.
    How can I reduce or delete the white space around cells of data?
    a)How can I hide the label “Data points”?
    b)How can I hide the label “Year”?
    c)How can I reduce the white space?
    Version : Oracle Discoverer AS10g

    Anna,
    this forum is about Oracle Forms. Please submit thsi question to the Reports or Discoverer forum on OTN.
    Frank

  • Errors:Installing Oracle Portal, Forms, Reports and Discoverer on Win7

    Someone can help me?
    I installed Oracle Portal, Forms, Reports and Discoverer on Win7.
    I have install:
    jdk 64bit
    Oracle db 11g (64bit)
    Oracle Weblogic 1033 (wls1033_generic.jar)
    Oracle Portal, Forms, Reports and Discoverer (ofm_pfrd_win_11.1.1.2.0_64/ofm_pfrd_win_11.1.1.3.0_64)
    Configure Components Screen:I just choose the Oracle Forms/reports Oracle Forms/reports builder Enterprise Manager Oracle Web Cache .
    Configure Ports Screen:Auto Port Configuration.
    Specify Proxy Details Screen:No
    Specify Application OID Screen:NO
    But when I configure the "Configuring the Classic Instance" under the "Oracle Classic 11g-Home1". It's always pending in "Creating the domain". No any Error information.
    the related log information:
    Creating a new AdminServer Object ...
    AdminServer port is 7001
    Starting the domain ...
    LOADING DLL : C:\Oracle\Middleware\as_2\install\config\\StartUtil64.dll

    Since your weblogic is on version 10.3.3, you can only succesfully configure your fusion middleware when you are on version 11.1.1.3.
    So (1) restart the install of fusion middleware 11.1.1.2, (2) choose install type INSTALL ONLY, (3) start installation of fusion middleware 11.1.1.3 and finally (4) configure fusion middleware using AS_ORACLE_HOME\bin\config.bat

  • Help in Installing Oracle Portal,Forms,Reports and Discoverer(11.1.1.2.0)

    Hi,
    I am trying to install Oracle Portal, Forms, Reports and Discoverer 11g (11.1.1.2.0) for Linux x86-64.
    I have installed weblogic 10.3.5 generic jar file.
    When i try to install forms and reports server the configuration step fails while creating weblogic domain.
    Please help me installing portal and reports.
    Is there any patch i am missing or the weblogic version is incorrect?
    Thanks.

    You cannot configure Fmw 11.1.1.2 against WLS 10.3.5. They are not supported nor compatible.
    If you want to use WLS 10.3.5, you need to "install" 11.1.1.2, but do not configure. That is an installation option. After you have successfully installed 11.1.1.2 you will need to patch it to 11.1.1.6. After patching, you then can run the configuration (config.bat).
    http://docs.oracle.com/cd/E23943_01/install.1111/e10421/install.htm#CLINS256
    Version 11 is far more complex than previous versions. I strongly encourage everyone to review the product documentation before trying to install. You can also refer to the following MyOracleSupport note:
    Steps to Maintain Oracle Fusion Middleware 11g Release 1 (11.1.1) (Doc ID 1073776.1)

  • Having problem to install Oracle Portal Forms Reports and Discoverer 11g on Windows Server 2008 64 bit

    Dear All Precious Friends,
    I am having problem while installing Oracle Portal Forms Reports and Discoverer 11g on Windows Server 2008 64 bit,
    I have already installed Oracle Database 11g Release 2 -------
    ----Then i configured JAVA Access bridge
    --------then installed and configured Required Schema using Repository Creation Utility of same version of Database 11g,
    -----------then installed Oracle Business Intelligence 11g version 11.1.1.6.0 which includes Web logic..............I am feeling that i did right at this point...........
    ..............also feeling comfortable after install Oracle Identity and Access Management 11g ..................
    -----------------but don't know how to configure OID to install Oracle Portal Forms Reports and Discoverer 11g...............
    Please help my Oracle Friends
    Your early help will be highly appreciated.
    thanks and regards
    Hassan

    You said, "...+I would like to install Release 2(11.1.1.2.0)+ ...". Be careful. 11.1.1.2.0 is not Release 2. The version for Rel 2 is 11.1.2.0, notice that there is one less "1". Also, there is no way to patch from Release 1 to Release 2.
    In EDelivery, this is what you should find if you search on "Oracle Fusion Middleware" for "Microsoft Windows x64 (64-bit)":
    First look for this link then drill into it:
    Oracle Fusion Middleware 11g Media Pack for Microsoft Windows x64 (64-bit)
    In this section you will find the following:
    This is the full product installation of FMw 11 Release 2 (Forms & Reports)
    Oracle Forms and Reports 11g R2 (11.1.2.0.0) for Microsoft Windows x64 (64-bit) V28761-01
    This is the full product installation of FMw 11 Release 1 (includes Portal, Forms, Reports, and Disco)
    Oracle Portal, Forms, Reports and Discoverer 11g (11.1.1.2.0) for Microsoft Windows x86 (64-bit) (Part 1 of 4) V18785-01
    Oracle Portal, Forms, Reports and Discoverer 11g (11.1.1.2.0) for Microsoft Windows x86 (64-bit) (Part 2 of 4)
    Oracle Portal, Forms, Reports and Discoverer 11g (11.1.1.2.0) for Microsoft Windows x86 (64-bit) (Part 3 of 4)
    Oracle Portal, Forms, Reports and Discoverer 11g (11.1.1.2.0) for Microsoft Windows x86 (64-bit) (Part 4 of 4)
    This is the FMw 11 Release 1 patch set that will bring the above 11.1.1.2.0 installation to 11.1.1.6.  This is NOT a full product installation - just a patch
    Oracle Portal, Forms, Reports and Discoverer 11g Patch Set 5 (11.1.1.6.0) for Microsoft Windows x86 (64-bit) V29850-01
    There are no patch sets for Release 2 as of yet.

  • How to call Report 6i/9i Oracle Standard Report into Discoverer 10g

    How to call Report 6i Standared report into Duscoverer 10g as there is a requirement to create or transfer Oracle Standard report into Discoverer.
    1) Account Analysis Subledger Details(180 Char) - Standard Report 6i as i want the same report in Discoverer 10g.
    2) Aging Report -- 7 bucket --Standard report in 6i,how to transfer in Discoverer 10g.
    Is is possible to Transfer from Report 6i to Discoverer or How to Create this report in Discoverer 10g.
    Please advice,
    Sushant

    Well, if I had to do it, here's how I'd start.
    1. Get the SQL from the Oracle Report and then create a database view that's more generic based on the SQL but still gets the answers.
    For example, you'd not code many conditions, etc. but the database view would be pointing to the correct Oracle Apps tables / views.
    Once you've got the view, bring it in to Disco Admin, etc. and create a report from it that now adds the extra conditions needed. That way you can use the underlying concept without hard coding things like dates, etc. which you would ask the user at run time.
    However ... as you may well know ... Oracle Reports can do some 'strange and/or powerful things' on the fly and, for example, it may be something like a temporary table generated for the report, etc. so may become a much bigger issue.
    2. If you have NoetixViews views then they'll most likely already have the views for these queries already created as they're reasonable for what's needed in an Oracle environment.
    3. I'd see if there is already a pre-defined BIS view that covers this as well. Again, you're in an area that's pretty popular so if a BIS view already covers much of the same info then you've got a create view 'head start' already. Check views owned by Apps starting with the application plus FV or FG (the one you'd really want) such as: GLFG_Budgets_To_Actuals to see what I mean.
    Russ

  • Drill Down report in Discoverer

    Hi All,
    i have to create a Drill Down report in Discoverer and i am not aware of it at all.
    If anyone can please provide me with some pointers on how to create a Drill Down report it would be of great help.
    Regards,
    SK

    Hi sk,
    Go through this link,you would learn how to drill down and the concepts
    [http://www.comp.hkbu.edu.hk/docs/o/dl/bi/B10272_01/4pivdrl.htm#1012030]
    Hope it answers your question.Award points.
    Best Wishes,
    Kranthi.

  • Portal, Forms, Reports and Discoverer - Error in Final Setup

    I have followed multiple setup instructions now to try and get Forms working on my local machine.
    Including the following:
    Forms 11g - Installation steps for a developer machine
    I have done the following on a Windows 7 64bit Setup:
    Installed Oracle 11g Database
    Installed Weblogic 64 bit using the wls1033_generic.jar with a 64 bit JDK
    Installed Portal, Forms, Reports and Discoverer, but when I get to the last stage where it goes through steps they all end up as failed and I can get no further, what would cause this?

    Check this thread when installing forms 11.1.1.3: Re: Install Forms & Rpts 11.1.1.3 with WebLogic Server 10.3.3 on Win32

  • How to crate cross tab reports in discoverer

    Hi,
    i am learning discover, can any body give clear explanation on
    cross tab reports in discoverer.how to create it . it with example ?

    Hi,
    The easiest way I use is to create the worksheet as regular table and then when i verify the data I get (non aggregate) I duplicate it as a cross tab.
    In the duplication wizard I just need to define the axis (using drag and drop).
    if you want to create a cross tab from the beginning you need to define that in the new workbook wizard (check the "cross tab" rather then "table"), chose your fields and define the place you want them.
    The data point (the center of the cross tab) is aggregated as to your machine definition and will happen automatically.
    for example: to find the amount of receipt by months:
    On the left put the "Buyer Name", on top put the "Months" and in the data point put the amount.
    What you'll get is something like:
    months: jan feb mar apr ......
    buyer_name
    jhon_smith 100 50 30 250 ......
    jhon_doe 80 45 90 453 ........
    and so on.....

  • AS 10g SE now includes Reports and Discoverer?

    I've read some articles about the "new" AS that it has been "re-packaged" (licensewise) and that the BI stuff like Reports and Discoverer are included in the Std Ed. Also (in the FAQ I think) that some EE stuff has been moved "down" to SE - sounds promising! But I have not been able to verify this... Anyone out there?

    I urge Oracle do the same for Discoverer.
    We have been using Discoverer since 3i. This year, we had some people on 3i still and some on 4i. We went through the conversion to 4i and no one is using 3i at all now. These people are very used to how Discoverer works. They are used to using database authentication and security to workbooks.
    The Infrastructure can store connection information for each user. By default, it stores connection information in cookies on the user's machine but you can configure the Infrastructure to store this data for you. The Infrastructure also stores metadata for Discoverer Portlets (Portal required).
    So that is it. If you are not using Portal nor care about storing connection information in a database, then why even have the Infrastructure for Discoverer? Just like Reports and Forms, if you aren't using SSO or Portal, there is no need for the Infrastructure and Oracle should provide an installer to let you install Discoverer without having the Infrastructure sitting there.
    Here is the doc on Metalink that explains what the Infrastructure does with Discoverer 9i.
    http://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=224871.1
    I also spoke with John Entenmann at ODTUG in Miami this year and asked him if Discoverer works and is supported in an install without the Infrastructure. He agreed that if you are not using Portal or SSO, you don't need the Infrastructure with Discoverer 9i.
    Now Oracle needs to support Discoverer customers in the same way they are going to support Forms and Reports customers by providing a more reasonable installer that doesn't require the Infrastructure to be installed first.

  • Oracle Portal,Forms,Reports and Discoverer 11G

    Good evening
    I installed the following products
    * Oracle Database(to the 1st computer)
    * Repository Creation Utility
    * WebLogic Server(to the 2nd computer)
    * Oracle Portal,Forms,Reports and Discoverer 11G(to the 2nd computer) – during installation I chose forms and reports
    Identity Management and SSO are not installed, why they are used for?
    While connecting to the base with the help of Visard I open Oracle Forms Builder by and create a primitive form. Everything is good. All are shown. I press Run Form which is written as Oracle Forms in browser and suggests keeping a clear file. Particularly in applied file!
    Print screen of my monitor yo can see: http://www.sql.ru/forum/actualthread.aspx?tid=678852
    Thanks for attention.

    Identity Management and SSO are not installed, why they are used for?IDM and SSO is used for user authentication.
    You can search for details about that.
    >
    While connecting to the base with the help of Visard I open Oracle Forms Builder by and create a primitive form. Everything is good. All are shown. I press Run Form which is written as Oracle Forms in browser and suggests keeping a clear file. Particularly in applied file!
    Print screen of my monitor yo can see: http://www.sql.ru/forum/actualthread.aspx?tid=678852
    Thanks for attention.the port which you have mentioned is it WLS_FORMS_PORT or any other.
    Try running default Forms port WLS_FORMS_PORT that will be 9001
    or check for the WLS_FORMS_PORT in the portlist.ini file.
    Also are you getting any exception in the Java console.?

  • FSG Report in Discoverer

    I am generating an FSG report in Discoverer. I need to Display the annual budget amount as a data point in crosstab, where as I have grouping on Account number and its sub accounts on left axis and period name as page item. When I create a calculation for Annual budget, to sum up all the periods' budget amounts for each year, I get the amount grouped by account numbers. Can somebody let me know if you came across something similar?

    Hi Lance,
    I am using the same calculation for YTD Budget, but I need the annual Budget which is same for all the periods of each year, SQL for it would be,
    select gb.period_YEAR, SUM(NVL(GB.PERIOD_NET_CR,0)- NVL(GB.PERIOD_NET_DR,0)) x
    from gl_balances gb
         ,GL_CODE_COMBINATIONS GCC
    where gb.ACTUAL_FLAG = 'B'
    and gcc.segment5 = 301010 -- THIS IS FOR EXAMPLE OF ONE ACCOUNT
    and GB.CODE_COMBINATION_ID = GCC.CODE_COMBINATION_ID
    group by gb.PERIOD_YEAR
              ,gb.ACTUAL_FLAG
    To be more precise,
    select gcc.segment5
    , gb.period_year
    , sum(gb.period_net_cr - Gb.period_net_dr)
    , gbd.status
    from gl_balances gb
                   ,gl_budget_versions gbv
                   ,gl_budgets gbd
                   ,gl_code_combinations gcc
    where gb.period_year = '2006'
    and gb.BUDGET_VERSION_ID = gbv.BUDGET_VERSION_ID
    and gbd.BUDGET_NAME = gbv.BUDGET_NAME
    and gbd.BUDGET_TYPE = gbv.BUDGET_TYPE
    and GB.CODE_COMBINATION_ID = GCC.CODE_COMBINATION_ID
    and gb.ACTUAL_FLAG = 'B'
    and gcc.segment5 = 301010
    and gbd.status in ('F', 'O')
    --and gbd.status = 'C'
    group by gcc.segment5
              , gb.period_year
              , gbd.status
    This column should have same value for each account in every page when the page item in changed for example from JAN-06 to DEC-06.
    Here is the sample:
    Period Name - FEB-06
    /YTD Budget /Annual Budget
    Expense
    101025-ABC /6,341,574 /7,556,174
    1001-ab
    1002-cd
    101026-DEF /807,419 /966,419
    1001-ab
    101030-GHI /5,756,141 /6,865,601
    Revenue
    201035-XYZ /1,795 /1,795
    Period Name - JAN-06
    YTD Budget Annual Budget
    Expense
    101025-ABC /5,691,774 /7,556,174
    1001-ab
    1002-cd
    101026-DEF /727,919 /966,419
    1001-ab
    101030-GHI /5,167,111 /6,865,601
    Revenue
    201035-XYZ /1,795 /1,795
    How can I implement this with a calculated item????

  • Running Reports Through Discoverer

    Discoverer is a new product to me, I understand it is a ad hoc reporting tool but how does it intergrate with Oracle Reports? Can I run an Oracle Report through discoverer or does the user always have to build their own? I want to be able to make some basic reports available to users and allow them to run thier own as well. Any comments or suggestions would be a great help.
    Thanks
    Laura

    Hey Chris,
    currently we are not using any version of discover. We are implementing the banner Finance product from SCT and were hoping that their product Web For finance would solve our need for running reports across the web but it looks like it may not. Currently we don't have an adhoc reporting tool, so I am trying to find out as much info as possible about the product. Right now for us to run oracle Reports we need to use Citrix Server or Terminal server, however with the Reports server and this Discover tool i was hoping to move away from all this and run all of them over the web. I was hoping that I would be able to use some of my prepared Oracle reports inside discover either as templates or have them as options with the discover reports.
    Any help would be great! I guess I need someone to point me in the right direction so I can ask more pointed questions =)
    Thanks!
    laura

Maybe you are looking for

  • Adobe ELEMENTS 9 deaktivieren, nicht löschen

    Ich habe 2 Macs und auf denen vorgenanntes Adobe aufgespielt und den Schlüssel eingeben. Rufe ich mein Laptop auf, auf das ich als zweites den Schlüssel eingegeben habe, dann erhalte ich den Hinweis, das ich iaf dem anderen  Computer die Software dea

  • How to track the cursor in the MODULE POOL?

    Hello everyone, I have developed one module pool program. I am facing a problem in tracking the cursor position. Let me tell you in detail. I have display/change button on the screen. If I come in change mode and gives a invalid value to any of the f

  • Dynamic creation of context nodes and ui elements

    Hi, I have created context nodes dynamically. And i also want to create UI elements dynamically wherein i want to bind the attribute from the context node to it. For example i want to create a drop down by index and bind one of the attributes in the

  • Recording a DVD with LG DVD Recorder and FIOS Standard Set Top Box

    I have FIOS Standard Set Top Box, a Sony TV, and an LG DVD Recorder. I cannot figure out how to record a TV program on my LG DVD Recorder. I have 3 remotes: a FIOS Remote, an LG DVD Recorder Remote and a Sony TV Remote. What remote/s should I use, an

  • Migrating Legacy Applications to Solaris 10 Containers

    Hi, Good Day, We have some customers who are keen to migrate their legacy banking systems to run on Solaris 10 containers. We intend to assess the feasibility of the project. Kindly advice the considerations/potential pitfalls(if any) of running lega