REPORT FUNCTION

IN THE CFREPORT report builder there isa Report
function...when i return a query with 2 field....it cannot be done?
is it for the report function only can return 1 value
?

While it's true that there is nothing built in to ApEx that would allow you to create a report writer per-se, there is nothing stopping you from doing this yourself.
You can start out with something really basic, like a SQL editor text area and a report region that uses that SQL to generate the report. You can see an example of how that would look here:
http://htmldb.oracle.com/pls/otn/f?p=18800:15
This was pretty straight forward to create. If you want any help with doing something like this let me know.
Earl

Similar Messages

  • Report generation Toolkit: Excel report functions error -2146827284

    Hi,
    I'm trying to create an automated report using excel functions from the report generation toolkit in labVIEW. When I run the program that generates the report first time round (the report consists of several worksheets, each worksheet is added onto the report at a diffferent state in a state machine) it always works fine and no error is generated. However, when I run the program again it will infrequently (sometimes it does, other times it will not) generate the undefined error -2146827284, this is coming from one of the excel report functions and it cannot find it on highlight execution mode.
    Does anyone know anything about this error, why it occurs, how to prevent it?
    I would appreciate any help.
    Thanks,
    Rowan

    mebels_cti wrote:
    Found something that helped; https://forums.ni.com/t5/LabVIEW/Error-code-quot-2146827284-quot-when-trying-to-open-an-Excel/m-p/20...
    Excel still open
    So I added this;
    You should use the Application Quit method instead of killing the task. I doubt this is the cause of your issue.
    Ben64

  • MS office report function does not work after building the appication

    I use the MS office report function  with a custom excel template my application.
    It works properly in de developstate, but after building the application it does not work .
    I use office 2000  and Windows XP

    jmq wrote:
    I use the MS office report function  with a custom excel template my application.
    It works properly in de developstate, but after building the application it does not work .
    What error message if any did you get? It could be a couple things:
    1. Did you include the Report Toolkit's dynamic vis in the app's build process?
    Ref: Error 7 when Running an .EXE Using VIs from Report Generation Toolkit for MS Office
    2. How are you giving the path to you custom template, as a relative or an absolute path? The path will be different for the .exe. You have to strip twice.
    Ref: Why Can't My Executable Load My Included File When I Use Relative Path Encoding?
    =====================================================
    Fading out. " ... J. Arthur Rank on gong."

  • Is there any OOTB audit report functionality in OAM?

    I configure audit policy and audits log to files.
    I'm wondering is there any built-in audit report functionality in oam without crystal report or any other outside report tools?

    OAM has very limited Audit functionality when it comes to comply the industry standards. It all depends on what exactly you are trying to Audit.
    - If you are looking for OAM Components Diagnostics - Refer to Access System - System Management - Diagnostics
    - If you are looking to track the access reports of users - Refer to Access System - System Management - Manage Reports. You can create custom reports in this section to track who accessed what and when?
    - If you are looking to track the system statistics like number of AU/AZ, LDAP calls, SLA's, Health Monitoring - You can use Oracle Enterprise Manager - Identity Management Pack
    http://www.oracle.com/technology/products/oem/prod_focus/idm_mgmt.html
    - If you need to track down the changes of what users changed on their profiles and password failures, Group History, Identity/User History, you can go for BI Publisher Reports for OAM. Oracle provides OOTB report templates for most of the reports in OAM. Refer to the Zip file on OAM Home Page
    http://www.oracle.com/technology/products/id_mgmt/coreid_acc/index.html
    Again, it all depends on your requirement to judge what will be feasible to achieve the desired audit.
    Hope this helps !

  • I'd use Safari's bug report function instead of posting here, but...

    ...it crashes Safari. lol.
    So here are my reports:
    - If Google is set as the default search engine, setting the home page to www.google.com crashes the program.
    - Bookmarks... seems like this topic has been covered well enough. I actually had no problems importing them from Firefox, but adding new ones crashes the program.
    - And as mentioned, the bug report function crashes the program.
    Bugs aside, I love it. Looking forward to future releases.
    Homegrown PC, P4 1.8GHz.   Windows XP Pro  

    ...it crashes Safari. lol.
    Haha! It's so Windows-alike!

  • [Solved] Forum pm or Forum report function

    Hello,
    I have been looking for a way to use a forum pm function but can' t seem to find one.  Do these forums not have this feature, or is it possibly post-count dependent?
    Per forum rules, certain issues must be handled privately, which of course I understand.  We are advised of the correct procedure:
    "If you feel that an egregious oversight has been made, use the forum report function or pm the moderator group. Please do not post complaints on the forum."
    However I cannot find either function. 
    Could somebody point me in the right direction?
    Last edited by shariebeth (2010-07-17 15:31:09)

    We don't use pm - e-mail is enough.
    Try searching with the "search-on-page" function in your browser. ('/' in firefox by default). 'Report ' is in the bottom right-hand corner of the box w/ your (and my) post - it's silver so it may a bit hard to see against a gray background - it's right next to 'Quote'.
    Last edited by karol (2010-07-17 15:10:40)

  • Changing custom report function

    Post Author: BerlinOlaf
    CA Forum: .NET
    Dear all,
    is there a way to chang/insert a custum report function by using .Net? There is no Repository in my scenario...
    thanx
    Olaf

    thanks Sharad,
    i could able to create role in the system but how do i add authorization to it, i tried with PRGN_1250_SAVE_AUTH_DATA but unsucceed , if you any exposer to this function module please let me know how do i add authorization to newly created role.
    thanks,
    John

  • Before Report Function

    Hello,
    I have the following function witch I need to run before report I mean when ever I press on the submit button (GO). The value returned from the function should be stored in an item i.e P2_Begining_Balance.
    function BeforeReport return boolean is
    var_pos     number(15,3) ;
    var_neg     number(15,3) ;
    beg_bal     number(15,3) ;
    Begin
    begin
    select sum (nvl(amount,0)) into beg_bal
         from EMPLOYEE_TRANSACTI
         where ( type = 92 )
         and to_char(from_date,'YYYY')=to_char(date0,'YYYY')
         and FK_EMPLOYEENUMBER0=emp_code;
    EXCEPTION
         WHEN NO_DATA_FOUND THEN
         beg_bal := 0;
    end;
    begin
         select      sum(nvl(amount,0)) into var_pos
         from      EMPLOYEE_TRANSACTI
         where      
    TYPE=72
         and      fk_vouchervalue_da<from_date
         and      fk_vouchervalue_da>= trunc(from_date,'year')
         and      FK_EMPLOYEENUMBER0=emp_code;
    EXCEPTION
         WHEN NO_DATA_FOUND THEN
         var_pos := 0;
    end;
    Begin     
         var_neg :=0;
         balance :=nvl(beg_bal,0) + nvl(var_pos,0) - nvl(var_neg,0);
         return(true);
    EXCEPTION
         WHEN NO_DATA_FOUND THEN
         balance :=nvl(beg_bal,0) + nvl(var_pos,0) - nvl(var_neg,0);
              RETURN (TRUE);
    end;
    RETURN NULL; end;
    Thanks,
    Ribhi

    Hi Ashif,
    I'm trying to create an employee transaction report. This report looks like the following:
    Date From: DD/MM/YYYY Date To: DD/MM/YYYY Employee Number: Go
    Beginning Balance: 2025
    Voucher No Voucher Date Description Debit Credit Total Balance
    123 01/01/2008 xxxxxxxxx 1154.961 870.039
    124 02/01/2008 bbbbbbbbb 870.039 000
    125 05/03/2008 cccccccccc 3350 3350
    The before report function suppose to run when ever I press the submit the report to calculate my beginning balance i.e 2025 witch is gonna be used im my report body calculation Total Balance.
    Hope that explains what I'm trying to do.
    Thanks for your help
    Ribhi

  • Would you please some one can provide me Reporting function and Techn specs

    Hi BI guru's
    Would you please some one can provide me Reporting function and Techn specs.I have got new requirement for the reports.
    Hence i need to prepare Functiona and technical spec for them.
    I don't have any documents related to it.
    Please some one can help me  and mail it to [email protected]
    Edited by: krish aryan on Jul 30, 2008 3:00 AM

    Hi,
    You need the template for techical specs? Your question is not clear. If you are asking for templates, I don't think they can be shared in a common forum like this.
    We can give you an idea as to how it can be prepared, but I guess you will already have templates for your documentation in your company portal.
    Regards
    Sudeepti

  • Timing of Report (function body returning sql) w/ pagination

    Hey -
    Wondered if someone can provide some insight here...
    I have a report that is dynamically created by calling a function that returns sql. Since it may return a few hundred results I have pagination turned on allowing the user to choose rows per page, and am showing X-Y with next/prev links.
    Before displaying the report the user has to choose some criteria to narrow down the result set - I'm finding something that I think is a bit strange in that it takes more time for the page to render when zero results are found vs. 100's of results. If I run the function and take the sql it creates, I can return 0 rows in .2 seconds and 508 rows in .5 seconds so I think the sql itself is fine. Other than debugging timings, how can I find out what is taking so long?
    Debug for 0 results:
    0.07: Region: Program Forecast (viewing SAVED values)
    5.14: show report
    5.15: determine column headings
    5.15: parse query as: ####
    5.15: print column headings
    5.15: rows loop: 15 row(s)
    10.32: Computation point: AFTER_BOX_BODY
    Debug for 508 results (in chunks of 15):
    0.07: Region: Program Forecast (viewing SAVED values)
    2.76: show report
    2.76: determine column headings
    2.77: parse query as: ####
    2.94: print column headings
    2.94: rows loop: 15 row(s)
    6.52: Computation point: AFTER_BOX_BODY
    So it took only 6.5 seconds to pull 508 rows, look at my pagination and pull the first x rows, but 10.32 seconds to pull 0 rows and show me the no data found message. Even stranger is that in the 0 rows result it looped and took 5 seconds before it hit the next point (5 seconds doing what??)
    Any ideas? I'm a little baffled here...I guess the next step is to trace it but I wanted to see if anyone had any ideas in the interim.

    Where is the embarrassed icon?
    After painstakingly copying over each item to a new page to test, I figured out performance starting sucking big time once I put a button out there that apparently had a less than optimal exists clause in it.
    D'oh!

  • Oracle report function error..........

    Dear
    i am using oracle report 6i and database 10g. my function is below---
    function CF_ITEMFormula return VARCHAR2 is
    v_item varchar2(30);
    V_1 VARCHAR2(20);
    begin
              SELECT      DISTINCT B.ITEM_CODE,(SELECT WE.WIP_ENTITY_NAME FROM APPS.WIP_ENTITIES WE WHERE WE.WIP_ENTITY_ID=B.CHILD_WIP_ID)
              INTO           V_ITEM ,v_1
              FROM           WEBSUPP.ELE_WIP_EXPLOED_DTL A,
                                  WEBSUPP.ELE_WIP_EXPLOED_DTL B
              WHERE      B.AUTO_NUMBER = 1
              AND           B.CHILD_WIP_ID IS NOT NULL
              AND           B.CHILD_WIP_ID = A.PRIMARY_WIP_ID
              AND           A.ITEM_CODE = :ITEM_CODE_1;
    IF :ITEM_CODE1 IS NULL THEN
         RETURN V_ITEM;
    ELSE
         RETURN :ITEM_CODE1;
    END IF;
    EXCEPTION
         WHEN OTHERS THEN RETURN :ITEM_CODE1;      
    end;
    but it gives following error...
    Encounter the symbol SELECT when expecting....
    pls solve...
    PS

    Try this also:
    FUNCTION cf_itemformula RETURN VARCHAR2 IS
       v_item varchar2(30);
       v_1 VARCHAR2(20);
    begin
       SELECT DISTINCT B.ITEM_CODE,WE.WIP_ENTITY_NAME
       INTO v_item ,v_1
       FROM WEBSUPP.ELE_WIP_EXPLOED_DTL A,
       WEBSUPP.ELE_WIP_EXPLOED_DTL B,
       APPS.WIP_ENTITIES WE
       WHERE B.AUTO_NUMBER = 1
       AND B.CHILD_WIP_ID IS NOT NULL
       AND B.CHILD_WIP_ID = A.PRIMARY_WIP_ID
       AND NVL(A.ITEM_CODE,'*') = NVL(:ITEM_CODE_1,'*')
       AND WE.WIP_ENTITY_ID=B.CHILD_WIP_ID
       AND ROWNUM = 1;
       IF :ITEM_CODE1 IS NULL
       THEN
          RETURN v_item;
       ELSE
          RETURN :ITEM_CODE1;
       END IF;
    EXCEPTION
       WHEN OTHERS THEN
          RETURN :ITEM_CODE1;
    END;Also I notice your "v_1" variable is not used at all except to receive the entity_name, but other than that is not being used, if it is not used then remove it as follows:
    FUNCTION cf_itemformula RETURN VARCHAR2 IS
       v_item varchar2(30);
    begin
       SELECT DISTINCT B.ITEM_CODE
       INTO v_item
       FROM WEBSUPP.ELE_WIP_EXPLOED_DTL A,
       WEBSUPP.ELE_WIP_EXPLOED_DTL B
       WHERE B.AUTO_NUMBER = 1
       AND B.CHILD_WIP_ID IS NOT NULL
       AND B.CHILD_WIP_ID = A.PRIMARY_WIP_ID
       AND NVL(A.ITEM_CODE,'*') = NVL(:ITEM_CODE_1,'*')
       AND ROWNUM = 1;
       IF :ITEM_CODE1 IS NULL
       THEN
          RETURN v_item;
       ELSE
          RETURN :ITEM_CODE1;
       END IF;
    EXCEPTION
       WHEN OTHERS THEN
          RETURN :ITEM_CODE1;
    END;Let me know if this helps.
    Thanks!

  • Urgent: need weekly, monthly report function in 6i for 10g

    Hi, we are trying to move some reports built in 6i to 10g. Need some help urgently.
    The y-axis is values, x-axis is date, if there is a value between 2 dates, , a line will connect them. If there is no value, it will skip it and try next date. I have two problems here to create same graph in 10g.
    1. The report built in 6i has a function you can specify a graphic x-axis for a time period, i.e., from date1 to date2, then choose, weekly, monthly or quarterly.... dates will be put into those period accordingly by the report builder automatically. Do we still have this kind of function in 10g?
    2. How can graph builder in 10g skip a date and jump to next date if there is no value for it? Now, if there is no value for a date, it will treat it as 0, so the line will go back to 0 in stead of move forward to next date.
    Thanks!

    Validate the parameter for null and then go for something like
    Col LIKE (CASE WHEN Parameter='' THEN '%%' ELSE Parameter END)

  • OBIA out-of-the-box reports functionality documentation?

    Hi,
    I am in search of the documents/functionality guide for the OBIA out-of-box reports.
    Version: Oracle Business Intelligence Applications 7.9.6.1
    Please let me know where we can find the Document explaining the list of the Out-of-box reports and the functionality of the reports.
    Thanks in advance,
    Timothy
    Edited by: user9951293 on Apr 27, 2010 4:07 PM

    Search following document id's on metalink :
    Content Guide:
    https://support.oracle.com/oip/faces/secure/km/DocumentDisplay.jspx?id=832690.1
    Oracle® Business Intelligence Applications Metrics Reference Guide Release 7.9.6
    https://metalink3.oracle.com/od/faces/secure/km/DocumentDisplay.jspx?id=846917.1
    Oracle® Business Intelligence Applications ETL Data Lineage Guide Release 7.9.6,7.9.6.1 (Doc ID 829385.1)
    https://support.oracle.com/oip/faces/secure/km/DocumentDisplay.jspx?id=829385.1

  • Backup report function returns: ORA-00942: table or view does not exist

    Hello All,
    I recently switched over from control file RMAN to recovery catalog. I logged into the 11g database control, executed a full backup and all went well. However, I just noticed that after I click on 'Backup Report' in database control (enterprise manager) I get the following error message: " java.sql.SQLException: ORA-00942: table or view does not exist"
    I was able to view backup reports prior to switching over to recover catalog. What am I missing or what is missing, sort to speak?
    Thanks all !
    -Ron

    Thanks for the reply Werner. I did try it as 'SYS' but no luck. Strange...This was a new enterprise manager - DB control and the backup reprt function was working prior to using the recover catalog. Anthing in the recovery catalog database that may be missing?
    Rob..

  • Crystal Reports functionality from Save The Cat

    Sorry if I've missed this in the presentation video since I've only watched half of it, so I have no idea if this has been considered for development.
    I use "Save The Cat" from Blake Snyder to storyboard my scenes with Crystal Reports - minus his structure.. and I create my own story templates and then drop the whole thing into "Final Draft".
    If I had the flexibility to setup and re-use "structure" templates that would contain my scene cards with an overview of my scene cards as the structure under my script and the ability to toggle between the two...then where do I sign on the dotted line?
    If you could integrate this functionality into this software - and as I say, I'm not sure if you've done this - then I'm sold. In other words, you build with the cards, and worry about the script later.
    Cheers,
    C.

    I need more info from you. I have looked for info re. Powerbuilder 11.5 here:
    http://www.sybase.com/products/modelingdevelopment/powerbuilder
    but I can not find any mention of Crystal Reports as it would apply to Crystal Reports being part of Powerbuilder 11.5. So, I need more explanation of this:
    I'm trying to use the Crystal Reports ocx from Powerbuilder 11.5
    Also, in the title of this post, you mention:
    Crystal Reports RDC from Powerbuilder.
    RDC and OCX are quite different technologies. It's one or the other. Thus please provide the following info:
    1) Is the CR component you are using (be it an OCX or RDC) part of Powerbuilder? Or have you purchased a stand-alone version of CR and are using the component in Powerbuilder?
    2) What component are you actually referencing?
    3) What is the version of the Crystal Reports you are using?
    Ludek

Maybe you are looking for