Display Interactive BI Publisher report on Oracle APEX

Hi Gurus,
I am struggling a log in order to display my current Interactive BI Publisher report along with LOVs to be displayed in APEX. I am getting an error.
The report cannot be rendered because of an error, please contact the administrator.
Error Detail
oracle.xdo.XDOException: oracle.xdo.servlet.CreateException: Report definition not found:%2F~weblogic%2FEnergy%20Balance%20Reports%2FEnergy%20Balance%20Global%20Monthly%20Analytics.xdo [username=weblogic]
I selected "share report link" => No header from BI Publisher Interactive report. It does have "Year" and "Month" as LOV which I choose the value from drop down list. I want same to be displayed under APEX for selection.
At the end of the link, I have tried providing username and password also like - &id=weblogic&passwd=password, but still receiving above error.
I am very much stuck at this point, so any help is very much appreciated.
I am using APEX ver 4.1, oracle database 11g R2 and Oracle Bi Publisher 11g Enterprise edition.
URL Which I tried in APEX, I tried running from browser and it works well along with LOV selection drop down list.
Please help gurus
thanks

I also have this same question.  The publisher report parameters are not modeled in the rpd, they are from a BIP jdbc conneciton to a transactional database.
Any response is appreciated - Thank you  Michelle

Similar Messages

  • Register BI Publisher report in Oracle Apps

    Hi,
    I wanted to know, if we can register a BI Publisher report in Oracle Apps. Please note that this is BI publisher Release 10.1.3.4...I am not using any rdf here.
    Thanks,
    As

    Hii Gareth,
    The steps you specified are basically used for former XML publisher but as i am developing the report in BI Publisher, when we create data definition in xml administrator responsibility, that time we need to upload a data template file that looks like following:
    <dataTemplate name="InvoiceTest" description="Invoice Test" Version="1.0">
         <parameters>
              <parameter name="P_ORG_ID" dataType="Integer"/>
         </parameters>
         <dataQuery>
              <sqlStatement name="Q1">
                   <![CDATA[select a.invoice_num AS "Invoice Number",
            a.invoice_currency_code AS "Invoice Currency code",
            a.payment_currency_code AS "Payment Currency Code",
            sum(a.invoice_amount) AS "Invoice Amount",
            a.payment_method_lookup_code AS "Payment Method",
            sum(a.approved_amount) AS "Approved Amount",
            b.vendor_name "Vendor Name",
               b.vendor_id AS Vendor_id
                   from ap_invoices_all a,
    po_vendors b
    where invoice_type_lookup_code = 'STANDARD'
    and a.vendor_id = b.vendor_id
    and a.org_id = NVL(:P_ORG_ID,a.ORG_ID)
    group by
            b.vendor_name,
            a.invoice_num,
            a.invoice_currency_code,
            a.payment_currency_code,
            a.invoice_date,
            a.payment_method_lookup_code,
               b.vendor_id]]>
              </sqlStatement>
         </dataQuery>
    </dataTemplate>
    but as Latest BI Publisher does not provide/generate such file automatically (I am not using rdfs but querying the database from BI Publisher itself) so there is no use of using this way registering the BI Publisher report in Oracle Apps as using this way to register a BI Publisher report will lead me to manually make a data definition file and then register it into Oracle Apps. Please suggest me if there is any other way that i can go for or if there is any way i can get the data definition file automatically created from Latest BI Publisher.
    Thanks for your help,
    Regards,
    AS

  • How to pass a value to a bind variable in a query report in oracle apex

    Hi Guys,
    I have requirement to send weekly reports via email to some users. The users should receive their own records in the report. The user details is stored in a table. What I am planning to do is to create a report query in oracle apex to generate the report and then run a function/procedure via a scheduler to email the report to respective users. Now my query is ............. is it possible to pass a value (user name) to the report query to pull records of only that user? I know we can have bind variables in the report query but I have no idea how to pass a value for bind variables from a function/procedure.
    Can anyone help me on this issue or suggest a better approach?
    Thanks,
    San

    You need to use dynamic sql
    But please keep in mind that since you're using Oracle you may be better off posting this in some Oracle forums
    This forum is specifically for SQL Server
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • How to set it up to use BI Publisher Report layout in APEX

    Hi all,
    I downloaded the xml file from APEX to create a BI Publisher report layout and uploaded it to APEX report layout in share component. When I click the test report button, nothing showed. Would you show me what else I need to do to make it work?
    Any suggestions are appreciated.
    Thanks much@

    You need to use the desktop layout editor that works under Word to develop report layouts..
    Thank you,
    Tony Miller
    Webster, TX
    On the road of life...There are 'windshields', and there are 'bugs'
    (splat!)
    "Squeegees Wanted"
    If this question is answered, please mark the thread as closed and assign points where earned..

  • BI Publisher report setting  in APEX

    Dear All,
    I have created an some rtf file and done some steps for report query and report layout . It is working in apex.oracle .com.
    When i tried the same into my local system , it is showing an error like below.
    Error:
    ====
    ORA-29273: HTTP request failed ORA-06512: at "SYS.UTL_HTTP", line 1186 ORA-12570: TNS:packet reader failure
    Please give me suggestion to resolve the issues.
    This report is based on bi publisher and xml.
    Regards
    Dhanush R

    Yeah. second that. Please help.
    In my case, I installed BI EE on a Solaris box.

  • How to print a BLOB (image) on a PDF report using Oracle APEX Listener as Print Server

    Hi,
    I use APEX 4.2.
    I have the following query as SQL text for a Report Queries in Shared Components:
    select
        customer_id,
        cust_first_name,
        cust_last_name,
        cust_street_address1,
        cust_street_address2,
        cust_city,
        cust_state,
        cust_postal_code,
        phone_number1,
        phone_number2,
        credit_limit,
        cust_email,
        filename,
        company_profile,
        -- customer_image,
        decode(nvl(dbms_lob.getlength(customer_image),0),0,null,
        '<img style="border: 4px solid #CCC; -moz-border-radius: 4px; -webkit-border-radius: 4px;" '||
        'src="' ||
        apex_util.get_blob_file_src('P22_CUSTOMER_IMAGE', customer_id) ||
        '" height="75" width="75" alt="Photo Customer" title="Photo Customer" />') customer_image,
        mimetype,
        image_last_update
    from
        demo_customers;
    I am unable to have the image printed on the PDF report. Even when the P22_CUSTOMER_IMAGE is defined as session state item.
    Does someone knows how to print such image/BLOB in a PDF report?
    Thanks by advance.
    Kind Regards.

    Hi,
    Indeed, I would need a custom layout.
    Unfortunately, it seems (according to this white paper) not possible with the APEX listener only. I would need a third pary tool. A pity...
    For me strange, that I cannot generate such a report having images or pictures in a pre-definied report layout... Maybe a future enahancement for Oracle.
    Kind Regards.

  • How Publish Reports in Oracle 10g Server Reports and Foms

    Hi All,
    i am new to Oracle Reports 10g.
    i know how to generate reports using report builder.
    But i dont know how to publish it in the Oracle App Server 10g Forms And Reports.
    Can somebody tell me.........
    how to run the app server forms and reports.
    how to publish a report in the App Server and make a request to that report.Also tell me where can i get complete info relating to reports 10g
    Kindly reply , asap....
    regards,
    John

    Start with the FAQ section:
    http://www.oracle.com/technology/products/reports/htdocs/faq/faq_deployment.htm

  • Column value & heading is not displaying in xml publisher report

    Hi All,
    All Inventories Value Report - Average Costing Standard report copied to cusoom report. Now in rdf I need to add few column like PO Number, Receipt Number, Supplier Number etc.. for this I need Inventory_item_id & organization_id so that I can create the new data modal. But not able to get the Inventory_item_id & organization_id column display in .xml file. Please look and let me koow the solution.
    SELECT cost_group,
           item,
           category,
           description,
           uom,
           SUM(STKQTY) STKQTY,
           SUM(INTQTY) INTQTY,
           SUM(RCVQTY) RCVQTY,
           SUM(STKVAL) STKVAL,
           SUM(INTVAL) INTVAL,
           SUM(RCVVAL) RCVVAL,
            inventory_item_id,
           organization_id
    FROM(        
    SELECT CCG.cost_group COST_GROUP,
           &P_ITEM_SEG ITEM,
           &P_CAT_SEG CATEGORY,
           MSI.description DESCRIPTION,
           MSI.primary_uom_code UOM,
           ROUND(SUM(CIQT.rollback_qty),:P_Qty_Precision) STKQTY,
           0 INTQTY,
           0 RCVQTY,
           ROUND(
             SUM(CIQT.rollback_qty) *
             DECODE(SUB.asset_inventory,1,CICT.item_cost,0) *
             :pv_exchange_rate/
             :pv_round_unit
           :pv_round_unit STKVAL,
           0 INTVAL,
           0 RCVVAL,
          CIQT.inventory_item_id,
           CIQT.organization_id
    FROM   cst_inv_qty_temp CIQT,
           cst_inv_cost_temp CICT,
           mtl_parameters MP,
           mtl_system_items_vl MSI,
           mtl_categories MC,
           mtl_secondary_inventories SUB,
           cst_cost_groups CCG
    WHERE  CIQT.qty_source in (3,4)
    AND    CICT.cost_source = 1
    AND    CICT.organization_id = CIQT.organization_id
    AND    CICT.inventory_item_id = CIQT.inventory_item_id
    AND    (   MP.primary_cost_method = 1
           OR  CICT.cost_group_id = CIQT.cost_group_id) -- should we split?
    AND    MP.organization_id = CIQT.organization_id
    AND    SUB.organization_id = CIQT.organization_id
    AND    SUB.secondary_inventory_name = CIQT.subinventory_code
    AND    MSI.organization_id = CIQT.organization_id
    AND    MSI.inventory_item_id = CIQT.inventory_item_id
    AND    MC.category_id  = CIQT.category_id
    AND    CCG.cost_group_id = NVL(CIQT.cost_group_id,MP.default_cost_group_id)
    GROUP
    BY     CCG.cost_group,
           &P_ITEM_SEG,
           &P_CAT_SEG,
           MSI.description,
           MSI.primary_uom_code,
           DECODE(SUB.asset_inventory,1,CICT.item_cost,0),
            CIQT.inventory_item_id,
           CIQT.organization_id
    UNION ALL
    SELECT CCG.cost_group COST_GROUP,
           &P_ITEM_SEG ITEM,
           &P_CAT_SEG CATEGORY,
           MSI.description DESCRIPTION,
           MSI.primary_uom_code UOM,
           0 STKQTY,
           ROUND(SUM(CIQT.rollback_qty),:P_Qty_Precision) INTQTY,
           0 RCVQTY,
           0 STKVAL,
           ROUND(
             SUM(CIQT.rollback_qty) *
             CICT.item_cost *
             :pv_exchange_rate/
             :pv_round_unit
           :pv_round_unit INTVAL,
           0 RCVVAL,
            CIQT.inventory_item_id,
           CIQT.organization_id
    FROM   cst_inv_qty_temp CIQT,
           cst_inv_cost_temp CICT,
           mtl_parameters MP,
           mtl_system_items_vl MSI,
           mtl_categories MC,
           cst_cost_groups CCG      
    WHERE  CIQT.qty_source in (6,7)
    AND    CIQT.organization_ID = :P_ORG_ID
    AND    CICT.cost_source = 1
    AND    CICT.organization_id = CIQT.organization_id
    AND    CICT.inventory_item_id = CIQT.inventory_item_id
    AND    (   MP.primary_cost_method = 1
           OR  CICT.cost_group_id = CIQT.cost_group_id) -- should we split?
    AND    MP.organization_id = CIQT.organization_id
    AND    MSI.organization_id = CIQT.organization_id
    AND    MSI.inventory_item_id = CIQT.inventory_item_id
    AND    MC.category_id  = CIQT.category_id
    AND    CCG.cost_group_id = NVL(CIQT.cost_group_id,MP.default_cost_group_id)
    GROUP
    BY     CCG.cost_group,
           &P_ITEM_SEG,
           &P_CAT_SEG,
           MSI.description,
           MSI.primary_uom_code,
           CICT.item_cost,
            CIQT.inventory_item_id,
           CIQT.organization_id
    UNION ALL
    SELECT CCG.cost_group COST_GROUP,
           &P_ITEM_SEG ITEM,
           &P_CAT_SEG CATEGORY,
           MSI.description DESCRIPTION,
           MSI.primary_uom_code UOM,
           0 STKQTY,
           0 INTQTY,
           ROUND(SUM(CIQT.rollback_qty),:P_Qty_Precision) RCVQTY,
           0 STKVAL,
           0 INTVAL,
           ROUND(
             SUM(CIQT.rollback_qty)*
             CICT.item_cost *
             :pv_exchange_rate /
             :pv_round_unit
           :pv_round_unit RCVVAL,
          CIQT.inventory_item_id,
           CIQT.organization_id
    FROM   cst_inv_qty_temp CIQT,
           cst_inv_cost_temp CICT,
           mtl_system_items_vl MSI,
           mtl_categories MC,
           mtl_parameters MP,
           cst_cost_groups CCG
    WHERE  CIQT.qty_source = 9
    AND    CICT.cost_source = 3
    AND    CICT.organization_id = CIQT.organization_id
    AND    CICT.inventory_item_id = CIQT.inventory_item_id
    AND    CICT.rcv_transaction_id = CIQT.rcv_transaction_id
    AND    MSI.organization_id = CIQT.organization_id
    AND    MSI.inventory_item_id = CIQT.inventory_item_id
    AND    MC.category_id  = CIQT.category_id
    AND    MP.organization_id = CIQT.organization_id
    AND    CCG.cost_group_id = NVL(CIQT.cost_group_id,MP.default_cost_group_id)
    GROUP
    BY     CCG.cost_group,
           &P_ITEM_SEG,
           &P_CAT_SEG,
           MSI.description,
           MSI.primary_uom_code,
           CICT.item_cost,
             CIQT.inventory_item_id,
           CIQT.organization_id
    ) TEMP
    GROUP BY cost_group,
           item,
           category,
           description,
           uom,
            inventory_item_id,
           organization_id
    - <CSTRAIVA> 
    - <LIST_G_COST_GROUP> 
    - <G_COST_GROUP> 
    <COST_GROUP>100191</COST_GROUP>  
    - <LIST_G_CATEGORY> 
    - <G_CATEGORY> 
    <CATEGORY>Not Assigned</CATEGORY>  
    - <LIST_G_ITEM> 
    - <G_ITEM> 
    <ITEM>82557653</ITEM>  
    <DESCRIPTION>BEARING LINING (GLACIER 100KSA075)</DESCRIPTION>  
    <UOM>EA</UOM>  
    <STKQTY>6</STKQTY>  
    <STKVAL>38934.7</STKVAL>  
    <RCVQTY>0</RCVQTY>  
    <RCVVAL>0</RCVVAL>  
    <INTQTY>0</INTQTY>  
    <INTVAL>0</INTVAL>  
    <CF_ITEM>82557653</CF_ITEM>  
    <TOTQTY>6</TOTQTY>  
    <TOTVAL>38934.7</TOTVAL>  
    <CF_STKVAL_DSP>38,934.70</CF_STKVAL_DSP>  
    <CF_INTVAL_DSP>0.00</CF_INTVAL_DSP>  
    <CF_RCVVAL_DSP>0.00</CF_RCVVAL_DSP>  
    <CF_TOTVAL_DSP>38,934.70</CF_TOTVAL_DSP>  
    </G_ITEM>
    </LIST_G_ITEM>
    <CF_ORDER />  
    <CF_CATEGORY>Not Assigned.</CF_CATEGORY>  
    <SUMSTKVALPERCATEGORY>38934.7</SUMSTKVALPERCATEGORY>  
    <SUMINTVALPERCATEGORY>0</SUMINTVALPERCATEGORY>  
    <SUMRCVVALPERCATEGORY>0</SUMRCVVALPERCATEGORY>  
    <SUMTOTVALPERCATEGORY>38934.7</SUMTOTVALPERCATEGORY>  
    <CF_SUM_STKVAL_CAT_DSP>38,934.70</CF_SUM_STKVAL_CAT_DSP>  
    <CF_SUM_INTVAL_CAT_DSP>0.00</CF_SUM_INTVAL_CAT_DSP>  
    <CF_SUM_RCVVAL_CAT_DSP>0.00</CF_SUM_RCVVAL_CAT_DSP>  
    <CF_SUM_TOTVAL_CAT_DSP>38,934.70</CF_SUM_TOTVAL_CAT_DSP>  
    </G_CATEGORY>
    </LIST_G_CATEGORY>
    <SUMSTKVALPERCOST_GROUP>38934.7</SUMSTKVALPERCOST_GROUP>  
    <SUMINTVALPERCOST_GROUP>0</SUMINTVALPERCOST_GROUP>  
    <SUMRCVVALPERCOST_GROUP>0</SUMRCVVALPERCOST_GROUP>  
    <SUMTOTVALPERCOST_GROUP>38934.7</SUMTOTVALPERCOST_GROUP>  
    <CF_SUM_STKVAL_CG_DSP>38,934.70</CF_SUM_STKVAL_CG_DSP>  
    <CF_SUM_INTVAL_CG_DSP>0.00</CF_SUM_INTVAL_CG_DSP>  
    <CF_SUM_RCVVAL_CG_DSP>0.00</CF_SUM_RCVVAL_CG_DSP>  
    <CF_SUM_TOTVAL_CG_DSP>38,934.70</CF_SUM_TOTVAL_CG_DSP>  
    </G_COST_GROUP>
    </LIST_G_COST_GROUP>
    <SUMSTKVALPERREPORT>38934.7</SUMSTKVALPERREPORT>  
    <SUMINTVALPERREPORT>0</SUMINTVALPERREPORT>  
    <SUMRCVVALPERREPORT>0</SUMRCVVALPERREPORT>  
    <CS_DUMMY>1</CS_DUMMY>  
    <SUMTOTVALPERREPORT>38934.7</SUMTOTVALPERREPORT>  
    <CF_SUM_STKVAL_REP_DSP>38,934.70</CF_SUM_STKVAL_REP_DSP>  
    <CF_SUM_INTVAL_REP_DSP>0.00</CF_SUM_INTVAL_REP_DSP>  
    <CF_SUM_RCVVAL_REP_DSP>0.00</CF_SUM_RCVVAL_REP_DSP>  
    <CF_SUM_TOTVAL_REP_DSP>38,934.70</CF_SUM_TOTVAL_REP_DSP>  
    </CSTRAIVA>

    Thanks for your reply.
    I did below changes in the CQWP but no luck. Please let me know if any further modification needed.
    Thank you!
            <property name="DataMappingViewFields" type="string">{b9e6f3ae-5632-4b13-b636-9d1a2bd67120},Computed;{543bc2cf-1f30-488e-8f25-6fe3b689d9ac},Image;{94f89715-e097-4e8b-ba79-ea02aa8b7adb},Lookup;{fa564e0f-0c70-4ab9-b863-0177e6ddd247},Text;{33f34208-1553-4361-b3ff-26f5da1ae591},Text;{b7ff04a4-a33a-429a-99bd-0ac5367bd189},User;{37cb0520-3169-4bca-9941-1886a5a73f92},DateTime;{6b2c772c-a130-4814-bfd0-d84efb061e3b},TaxonomyFieldType;{d31655d1-1d5b-4511-95a1-7a09e9b75bf2},User;{28cf69c5-fa48-462a-b5cd-27b6f9d2bd5f},DateTime;</property>
            <property name="DataMappings" type="string">Editor:{d31655d1-1d5b-4511-95a1-7a09e9b75bf2},Editor,User;|Actors:|Modified:{28cf69c5-fa48-462a-b5cd-27b6f9d2bd5f},Modified,DateTime;|Input:|Title:{fa564e0f-0c70-4ab9-b863-0177e6ddd247},Title,Text;|LinkUrl:{94f89715-e097-4e8b-ba79-ea02aa8b7adb},FileRef,Lookup;|ExpiryDate:{37cb0520-3169-4bca-9941-1886a5a73f92},ExpiryDate,DateTime;|Author:{d31655d1-1d5b-4511-95a1-7a09e9b75bf2},Editor,User;|Approver:{f30275e3-0638-451f-bb1f-b5c74ac432ef},Approver,User;|PreRequisites:|DocumentOwner:{b7ff04a4-a33a-429a-99bd-0ac5367bd189},DocumentOwner,User;|Trigger:|RelatedtoGeneralTopic:{6b2c772c-a130-4814-bfd0-d84efb061e3b},RelatedtoGeneralTopic,TaxonomyFieldType;|OpenInNewWindow:|Frequency:|Image:|Output:|Body:|Locallyvalidfor:{31a5c887-10a3-49ca-afa0-97c5679bbda9},Locallyvalidfor,TaxonomyFieldType;|ProcessOwner:|ShortDescription:{33f34208-1553-4361-b3ff-26f5da1ae591},ShortDescription,Text;|Description:{691b9a4b-512e-4341-b3f1-68914130d5b2},ShortComment,Text;|Created:|LinkToolTip:|Mandatory:|ProcessManager:|ImageUrl:{b9e6f3ae-5632-4b13-b636-9d1a2bd67120},EncodedAbsThumbnailUrl,Computed;{543bc2cf-1f30-488e-8f25-6fe3b689d9ac},PublishingRollupImage,Image;|</property>

  • Require assistance and suggestion on Report in Oracle APEX 3.2

    Hi all,
    Thanks in advance
    We have made Tabular report form based on table . Requirement is to have % in front of data
    View_cal
    =====
    2.0 %
    We tried to modified the query by concatenating but when we are trying to update the column name we are getting error . Is there any other way around So that we can implement
    Cheers
    Sachin

    hi,
    i think you want something like this:
    http://dbaforums.org/oracle/index.php?showtopic=8657
    regards,
    jR

  • Creating a Crosstab/Pivot report in Oracle Apex

    Hello,
    I want to create a matrix view of a report in the following format. tried a lot of ways llike data pivoting, etc. but most of the ways use aggregate functions.
    format in which i require data is:
    ID NAME LEVEL PROJECT LOCATION ORACLE FORMS ORACLE REPORTS JAVA C++
    AAA123 ABC 2 AB AC Expert Aware Expert
    AAA124 DEF 3 BC AD Expert Proficient Aware
    The data in the table/view is in the format:
    ID NAME LEVEL PROJECT LOCATION Description Proficiency_ID
    AAA123 ABC 2 AB AC ORACLE FORMS Expert
    AAA123 ABC 2 AB AC ORACLE REPORTS Aware
    AAA123 ABC 2 AB AC JAVA Expert
    and similarly for other ID's.
    Since i need character values, aggregate functions would not be of much use.
    Thanks
    Varun
    Can anyone help me with this????

    Hi Arnaud,
    Saw the documentation that you had added and thanks for that..........but it is using sum(decode(...................
    which is an aggregate function but when i want to print character values for a certain distinct column value, that is where i am facing a problem..
    Hope you understood what i am saying:
    the id, name, level, prject, location will remain uniques and then i want proficiency to be put against each technology in a single row with al the technologies being disitnct columns..
    Thanks
    Varun

  • BI Publisher Report in Oracle Apps 11i having multiple queries.

    Hi,
    I would like to know whether it is possible to have multiple queries in a data definition File.
    QUERY1 - To find the last run date of a particular concurrent program
      SELECT   max(fcr.request_date) last_run_date
       FROM     apps.fnd_concurrent_requests    fcr,
                apps.fnd_concurrent_programs fcp,
                apps.fnd_concurrent_programs_tl fcpt
       where    fcr.concurrent_program_id = fcp.concurrent_program_id
       and      fcp.concurrent_program_id = fcpt.concurrent_program_id
       and      fcpt.user_concurrent_program_name = 'Get Transfer Alert Details'Now based on the last run date value I will have my main query Query 2
    QUERY 2-------------------------
    select to_char(psah.creation_date,'DD-MON-YYYY HH24:MI:SS') appr_date,
           (select papf.full_name
              from per_all_people_f papf ,
                   fnd_user fu  
             where 1 = 1
               and fu.user_name = psah.user_name
               and papf.person_id = fu.employee_id
               and papf.current_employee_flag = 'Y'
               and trunc(sysdate) between effective_start_date and effective_end_date ) bu_hr_appr,
           papf.full_name emp_name,
           papf.employee_number emp_num,
           (select hoin.org_information3||'.'|| hoin.org_information5
              from hr_organization_information hoin
             where 1 = 1
               and hoin.organization_id = to_number(xxc_hr_ocsi_pkg.GET_TXN_VALUE(psah.approval_history_id,psth.transaction_history_id,'ASSIGN','P_ORGANIZATION_ID','NEW'))
               and hoin.org_information_context = 'Company Cost Center' ) nbucc,
           (select hoio.org_information3||'.'|| hoio.org_information5
              from hr_organization_information hoio         
             where 1 = 1
               and hoio.organization_id = to_number(xxc_hr_ocsi_pkg.GET_TXN_VALUE(psah.approval_history_id,psth.transaction_history_id,'ASSIGN','P_ORGANIZATION_ID','OLD'))
               and hoio.org_information_context = 'Company Cost Center') obucc,
           papf_hr.full_name hr_name,
           papf_hr.email_address hr_mail,
           papf_cre.first_name cre,
           papf_cre.email_address cre_email,
           DECODE(xxc_hr_ocsi_pkg.GET_TXN_VALUE(psah.approval_history_id,psth.transaction_history_id,'SAL','P_ATTRIBUTE_CATEGORY','NEW'),
                  'Commission Sales Plan',
           (select flv.meaning
              from fnd_lookup_values flv
             where 1 = 1
               and flv.lookup_type = 'XXHR_ANNUAL_COMMISSIO_PLAN_TYP'
               and flv.enabled_flag = 'Y'
               and flv.lookup_code = xxc_hr_ocsi_pkg.GET_TXN_VALUE(psah.approval_history_id,psth.transaction_history_id,'SAL','P_ATTRIBUTE1','NEW')),'NA') csp,
           to_char(trunc(sysdate),'DD-MON-YYYY HH24:MI:SS') current_date,
           fnd_global.conc_request_id request_id,
           psth.last_update_date
      from apps.pqh_ss_transaction_history psth ,
           apps.pqh_ss_approval_history psah,
           apps.per_all_people_f papf ,
           apps.per_all_assignments_f paaf,
           apps.per_all_people_f papf_cre,
           apps.per_all_people_f papf_hr        
    where 1 = 1
       and psth.process_name = 'HR_TRANSFER_JSP_PRC'
       and psth.transaction_history_id = psah.transaction_history_id
       and psah.action = 'APPROVED'
       and psah.creation_date = (select max(psah1.creation_date)
                                   from apps.pqh_ss_approval_history psah1
                                 where 1 = 1
                                    and psah1.transaction_history_id = psah.transaction_history_id
                                    and psah.action = psah1.action
                                    and psah.approval_history_id = psah1.approval_history_id
       and (select count (1)
              from apps.pqh_ss_approval_history psah
             where psah.transaction_history_id = psth.transaction_history_id
               and action = 'APPROVED'
           ) > 1
       and psah.approval_history_id = (select max(psah1.approval_history_id)
                                         from pqh_ss_approval_history psah1
                                        where 1= 1
                                          and psah1.transaction_history_id = psah.transaction_history_id
                                          and psah1.action = psah.action
       and psth.selected_person_id = papf.person_id
       and papf.current_employee_flag = 'Y'
       and trunc(sysdate) between papf.effective_start_date and papf.effective_end_date        
       and papf.person_id = paaf.person_id
       and paaf.primary_flag = 'Y'
       and paaf.assignment_type = 'E'
       and trunc(sysdate) between paaf.effective_start_date and paaf.effective_end_date  
       and to_number(paaf.ass_attribute7) = papf_hr.person_id
       and trunc(sysdate) between papf_hr.effective_start_date and papf_hr.effective_end_date
       and psth.creator_person_id = papf_cre.person_id
       and trunc(sysdate) between papf_cre.effective_start_date and papf_cre.effective_end_date
       and psth.last_update_date > :last_run_dateEdited by: 936671 on Jul 2, 2012 4:09 AM

    For examples and details please refer to the Guide: http://docs.oracle.com/cd/E10415_01/doc/bi.1013/e12187/T421739T434255.htm
    Specifically, look for the following chapters
    The Data Template Definition
    How to Define a Data Link Between Queries

  • Oracle APEX 4.0  -  Interactive Report - Table Column Filter Issue

    Environment: Oracle APEX 4.0  -  Interactive Report - Table Column header Filter Issue
    We have developed an interactive report using Oracle APEX 4.0, which contains a record count of around 3,000 Rows. All the rows values are unique in nature. When we try to filter the same with the help of column header filter option available in the interactive report,We get only 1000 records.
    Could some one help us, why this behaviour under APEX Table Column Header Filter as if it does not display beyond 1000 distinct values.
    Is there a way or workaround on how to get all the records in the column header filter?
    Thanks in advance.
    Krish

    Hi
    Thanks for the advice and this issue has been moved to the below URL
    Oracle APEX 4.0 - Interactive Report - Table Column Filter Issue Posted: No
    Krish

  • Oracle APEX 4.0 - Interactive Report - Table Column Filter Issue Posted: No

    Environment: Oracle APEX 4.0 - Interactive Report - Table Column header Filter Issue
    We have developed an interactive report using Oracle APEX 4.0, which contains a record count of around 3,000 Rows. All the rows values are unique in nature. When we try to filter the same with the help of column header filter option available in the interactive report,We get only 1000 records.
    Could some one help us, why this behaviour under APEX Table Column Header Filter as if it does not display beyond 1000 distinct values.
    Is there a way or workaround on how to get all the records in the column header filter?
    Thanks in advance.
    Krish

    Krish,
    Interactive report has hard coded limit to display 1000 rows of column filter LOV for performance. Unfortunately, the limit cannot be changed. The workaround is to define a Column Filter LOV for the column instead of using "Default Based on Column Type".
    Regards,
    Christina

  • Call BI Publisher Report in APEX, based on R.T.F Template Layout.

    Hi to all respected members of this forum.
    Since 18th May (Saturday), I am trying to connect BI Publisher Reports with Oracle Application Express 4.2.2.
    My APEX Version = APEX 4.2.2
    Oracle BI Publisher Enterprise Edition (Trial) = 11.1.1.6.0
    Oracle BI Publisher Desktop 32 Bit = 11.117.0.79
    For this purpose what I did?
    Firstly I downloaded Oracle BI Publisher Enterprise Edition 11.7 and when I started Installation I came to know that "R.C.U (Repository Creation Utility)" is required during installation and I don't have that so, left this idea.
    Than I downloaded Oracle BI Publisher Enterprise Edition (Trial) from www.oracle.com and BI Publisher Desktop Edition for Templates because there is no facility in BI Publisher Trial Edition to design Report Templates. I have installed both successfully and created a report as per my requirement.
    Now, I want to call that report in Oracle APEX but I am unable to do that.
    I followed http://dgielis.blogspot.de/2007/12/call-bi-publisher-report-from-apex.html but the link which is shown in picture no: 03, is not available, so this didn't help me.
    Then, I followed Oracle BI Publisher Blog https://blogs.oracle.com/xmlpublisher/entry/apex_users_why_not_integrate_w which discuss to call BI Publisher Report in APEX based on "Generic Report Layout". This done successfully but still I am unable to call BI Publisher Report .
    Then I found this type of script
    http://localhost/xmlpserver/Guest/Reporting_Channel.xdo&id=FGFC&password=****&xt=Reporting_Channel&xf=pdf
    to call BI Publisher Report in APEX but this also failed.
    Please help me to understand that how to call "BI Publisher Report in APEX, based on R.T.F Template Layout.
    Thanks in Advance.
    *Regards:*
    *Muhammad Uzair Awan*
    *ORACLE APEX Developer*
    PAKISTAN.
    Edited by: uzairmalik on May 20, 2013 1:32 PM

    Are you trying to have multiple sql queries and have multiple sections displaying different data sets ? Or with one single query but display it in different ways in a single report ?
    You can create one single query as Report Query in APEX and associate it with a BIP report layout. So you can achieve a Dashboard layout with the report query/layout.

  • Ora-06502 pl/sql numeric or value error in Report Query in oracle apex

    Hello all,
    I need your help...
    ORA-06502: PL/SQL: numeric or value error: character string buffer too small
    I am using bi publisher to generate PDF reports in oracle apex.
    We were using APEX 4.0 and migrated to 4.2 just a week ago.
    Now we have apex 4.2.
    When I try to Create report query,
    Shared Components >> Report Queries then create.
    and test a report in a create wizard I am getting a error "ORA-06502: PL/SQL: numeric or value error: character string buffer too small".
    I have also applied a patch "16760897".
    This issue is because of number of columns in a query is more then 26.
    If I run a report with 26 or less number of columns then the is working fine, otherwise getting this error.
    My before migration report queries working perfectly even now, but not new queries.
    This issue is also in apex.oracle.com.
    You can see
    Not working  - http://apex.oracle.com/pls/apex/f?p=619:4
    Working - http://apex.oracle.com/pls/apex/f?p=619:2:
    Please give a solution.
    Thanks you.

    check the DB version compatibility with apex 4 or your DB version to apex 4.0 support for upgrade!
    Oracle Application Express Installation Requirements for 4.0

Maybe you are looking for