Examples of ]AnyChart with apex

Hello
Do you know or have some examples which use the AnyChart tool with Apex?
The link of AnyChart tool is:
http://www.anychart.com/
Thanks in advance
Best regards

I am trying to create a asynchronous AnyChart 4.2 graph.. and I am starting with a basic graph that I already have working in PL/SQL
But I don't get any graph showing?
Any ideas?
thanks
Dean
<html>
<body>
<div id="chartDiv-6"></div>
    <script type="text/javascript" language="javascript">
    var chart6 = new AnyChart('/i/flashchart/swf/AnyChart.swf');
    chart6.width = "500";
    chart6.height = "300";
    var data6 = new htmldb_Get(null,&APP_ID.,
              'APPLICATION_PROCESS=BCM_DURATION',&APP_PAGE_ID.);
    gReturn = data6.get('XML');
    chart6.setData(gReturn);
    chart6.write("chartDiv-6");
    </script>
</body>
</html> I have this Application Process called BCM_DURATION
DECLARE
   y_min   NUMBER;
   y_max   NUMBER;
BEGIN
   OWA_UTIL.mime_header ('text/xml', FALSE);
   HTP.p ('Cache-Control: no-cache');
   HTP.p ('Pragma: no-cache');
   OWA_UTIL.http_header_close;
   HTP.prn ('<anychart>');
   HTP.prn ('<settings>');
   HTP.prn ('<animation enabled="FALSE" />');
   HTP.prn ('</settings>');
   HTP.prn ('<charts>');
   HTP.prn ('<chart plot_type="CategorizedVertical">');
   HTP.prn ('<chart_settings>');
   HTP.prn ('<title enabled="true">');
   HTP.prn ('<text>Machine RUN Time in last 24hrs</text>');
   HTP.prn ('</title>');
   HTP.prn ('<subtitle enabled="false">');
   HTP.prn ('<text>by Product</text>');
   HTP.prn ('</subtitle>');
   HTP.prn ('<axes>');
   HTP.prn ('<x_axis>');
   HTP.prn ('<title enabled="true">');
   HTP.prn ('<text>Machine</text>');
   HTP.prn ('</title>');
   HTP.prn ('</x_axis>');
   HTP.prn ('<y_axis>');
   HTP.prn ('<title enabled="TRUE">');
   HTP.prn ('<text>Rate</text>');
   HTP.prn ('</title>');
   SELECT (TRUNC (MIN (d.duration) / 5) - 1) * 5 minn,
          (TRUNC (MAX (d.duration) / 5) + 1) * 5 maxx
   INTO y_min, y_max
   FROM (SELECT d.machine_id,
                TRUNC (SUM (d.duration) / 60 / 60 / 24 * 100) duration
         FROM css.operation_duration_bcm@css d
         WHERE d.start_date > SYSDATE - 1 AND d.status = 2
         GROUP BY d.machine_id) d;
   HTP.prn ('<scale maximum="' || y_max || '" minimum="' || y_min || '" />');
   HTP.prn ('</y_axis>');
   HTP.prn ('</axes>');
   HTP.prn ('</chart_settings>');
   HTP.prn ('<data>');
   HTP.prn ('<series name="SL" type="Bar">');
   FOR d
   IN (SELECT d.machine_id,
              TRUNC (SUM (d.duration) / 60 / 60 / 24 * 100) duration
       FROM css.operation_duration_bcm@css d
       WHERE d.start_date > SYSDATE - 1 AND d.status = 2
       GROUP BY d.machine_id
       ORDER BY 1)
   LOOP
      HTP.prn(   '<point name = "'
              || d.machine_id
              || '" y="'
              || d.duration
              || '"/>');
   END LOOP;
   HTP.prn ('</series>');
   HTP.prn ('</data>');
   HTP.prn ('</chart>');
   HTP.prn ('</charts>');
   HTP.prn ('</anychart>');
END;Edited by: Postie on Nov 18, 2008 3:43 PM
Edited by: Postie on Dec 3, 2008 12:53 PM

Similar Messages

  • Need integration steps of Anychart with Oracle Apex

    Hi,
    We bought Anychart license. When I logged into AnyAchrt there are .zip, .exe and .swf file can be downloaded.
    Please let me know which file from any chart that I need use to integrate with Apex 4.x version.
    Also please let me know step by step process to see final effect of any chart in oracle apex.
    Regards.
    Meda

    Hi Meda,
    AnyChart has been integrated with Oracle Application Express since our 3.0 release. With our latest release, 4.2.1, we have integrated the latest AnyChart 6 release, version 6.0.11, which supports the creation of Flash and HTML5 charts in your APEX applications. Only chart types exposed via the Create wizards in Application Builder can be created using the version of AnyChart that is shipped with APEX. If you wish to create other chart types that aren't available in the Create wizards, then you would need to use your own AnyChart files. I assume the reason you have purchased a separate AnyChart license in is order to create other chart types that we don't license. How you choose to integrate those libraries into your release is up to you. You might find it useful to refer to AnyChart's online documentation for further information on installation: http://www.anychart.com/products/anychart/docs/users-guide/Installation.html?fromtree.
    What chart types does your license with AnyChart cover? There's no need to provide an exhaustive list, but I'm just trying to establish whether your license covers all the chart types that our license already covers. The AnyChart files that are shipped with APEX are used by the Create wizards, Interactive Report charts and internal application chart pages. The related files are contained in the +/images/flashchart/anychart_6+ folder of your APEX install. Your easiest option for integrating your AnyChart files is to overwrite the files that are shipped with the product. ** However, please be aware of the possible impacts of doing this. **
    *1)* As I've already mentioned, those files are used not only by the Create wizards, but also Interactive Report charts and chart pages within Application Builder, etc. So if your license does not cover the same chart types and options as those shipped with APEX, then you will experience issues using the Create Chart wizards, Interactive Report charts and chart pages in your instance.
    *2)* If you do choose to overwrite the files shipped with APEX, then you are essentially modifying the APEX install and will need to interact with AnyChart regarding any issues you experience with the chart files you have licensed.
    *3)* The Create wizards in APEX only expose the chart types covered by our license agreement with AnyChart, so even if your licensed files support additional chart types, they will not be exposed via the Create wizards, and those wizards could not be used to create additional chart types.
    You could, of course, choose to retain the chart files incorporated in your APEX instance, and simply add your own AnyChart files to the +/images+ folder of your APEX instance and then directly reference the files in your code to embed a chart on a page in your application. For an example, take a look at the AnyChart online User's Guide, specifically "Your First Chart" - http://www.anychart.com/products/anychart/docs/users-guide/SimpleChart.html?fromtree - NOTE: in the sample code on that page, the paths to the AnyChart files have not been fully qualified e.g. './swf/AnyChart.swf'. You would need to ensure that you fully qualify the path to your files.
    I hope this helps.
    Regards,
    Hilary

  • Anychart 5.1.2 Integration with APEX

    Hi,
    I bought Anychart 5.1.2 with Maps. Now, they have pointed me to a webpage where I can down load a Zip file that contains a bunch of png, swf, xml files. How do I integrate this with APEX? What are the steps..
    -Vatsa

    Hello,
    I assume you're talking about this page -
    http://anychart.apex-evangelists.com
    Take a look through those steps listed on that page, if you're still having problems, drop us a mail to [email protected] and we will help you out.
    Thanks,
    John.
    Blog: http://jes.blogs.shellprompt.net
    Work: http://www.apex-evangelists.com
    Author of Pro Application Express: http://tinyurl.com/3gu7cd
    REWARDS: Please remember to mark helpful or correct posts on the forum, not just for my answers but for everyone!

  • AnyChart Radar chart with APEX

    Hi all,
    I need to create Apex application that requires page to display radar chart, combined chart (bar & line). I understand that those charts are not come with APEX 4.1.0 (my APEX version). I look at AnyChart product since I see people talked in Oracle Forums. I would like to know if someone who has used AnyChart product creates radar / polar charts in APEX can give me any suggestion. My current environment is
    Apex 4.1.0, oracle 11g and a browser is IE 8.
    The company that I work for doesn’t have any plan to upgrade IE version. So I have limited tools to work with. On AnyChart web site, it shows radar chart in Flash, HTML5, and XML code. I can see the chart in Flash and XML code ok. I don’t know how radar chart will work in APEX and IE 8. Any helped explanation would be appreciated.

    Hi jessi,
    We can combine both line and bar chart in apex.
    Try by doing the following,
    1.Create the chart region with the chart type as 3D Column.
    2.Then parse the query that you want to show in chart(it will select the series type as bar by default).
    eg. select null link,ename, sal from emp; 3.Create the second series by editing the chart attributes.
    4.select the series type as line. Then parse the query that you want to combine with the above bar chart.
    eg. select null link,ename, avg(sal) over() avg_sal from emp; By this way we can combine the charts by adding the series,Check whether this is your requirement.
    Thanks,
    SreeNithi.

  • How to get PDF Printing working with APEX packed with 11g

    Hi ,
    Recently i installed 11g db on one of my systems (Windows XP) ,as it comes with APEX i thought to move my apex app(which were in 10g) to the same .........when i moved my apps , i got everything working but PDF PRINTING .
    I have configured Report Printing :
    Print server: Advanced
    Print server Protocol: HTTP
    Print server Host Address: localhost
    Print Server Port: 9704
    Print server script :/xmlpserver/convert
    Your help is appreciated.
    Thanks ,
    Ribhi

    Hi Jes,
    Thank you for your reply. BI Publisher is runing on the same server where Database 11g with APEX installed. I loged in to the database as SYS DBA and copied and paste Oracle script below to enable Network services. The script run successfully, still cant print. Pls Help me to solve this problem.
    Regards,
    Ribhi
    DECLARE
    ACL_PATH VARCHAR2(4000);
    ACL_ID RAW(16);
    BEGIN
    -- Look for the ACL currently assigned to '*' and give FLOWS_030100
    -- the "connect" privilege if FLOWS_030100 does not have the privilege yet.
    SELECT ACL INTO ACL_PATH FROM DBA_NETWORK_ACLS
    WHERE HOST = '*' AND LOWER_PORT IS NULL AND UPPER_PORT IS NULL;
    -- Before checking the privilege, make sure that the ACL is valid
    -- (for example, does not contain stale references to dropped users).
    -- If it does, the following exception will be raised:
    -- ORA-44416: Invalid ACL: Unresolved principal 'FLOWS_030100'
    -- ORA-06512: at "XDB.DBMS_XDBZ", line ...
    SELECT SYS_OP_R2O(extractValue(P.RES, '/Resource/XMLRef')) INTO ACL_ID
    FROM XDB.XDB$ACL A, PATH_VIEW P
    WHERE extractValue(P.RES, '/Resource/XMLRef') = REF(A) AND
    EQUALS_PATH(P.RES, ACL_PATH) = 1;
    DBMS_XDBZ.ValidateACL(ACL_ID);
    IF DBMS_NETWORK_ACL_ADMIN.CHECK_PRIVILEGE(ACL_PATH, 'FLOWS_030100',
    'connect') IS NULL THEN
    DBMS_NETWORK_ACL_ADMIN.ADD_PRIVILEGE(ACL_PATH,
    'FLOWS_030100', TRUE, 'connect');
    END IF;
    EXCEPTION
    -- When no ACL has been assigned to '*'.
    WHEN NO_DATA_FOUND THEN
    DBMS_NETWORK_ACL_ADMIN.CREATE_ACL('power_users.xml',
    'ACL that lets power users to connect to everywhere',
    'FLOWS_030100', TRUE, 'connect');
    DBMS_NETWORK_ACL_ADMIN.ASSIGN_ACL('power_users.xml','*');
    END;
    COMMIT;
    Edited by: Ribhi on Nov 13, 2008 1:18 PM

  • Resource Management with Apex

    I have seen examples of using dbms_resource_manager with Apex where Apex_public_user has its consumer group switched according to some rule. Trouble is many hundreds of apex users connect using this single username.
    What I wish to know is it possible to perform this at a finer level of granularity, ie at individual Apex user level.
    If so I control the resources available to Apex users individualy.
    Is this even a sensible thing to do? Criticisms are welcome.

    Hi Tony,
    I would be interesting to see any example.
    I posted my question before: Creating interactive gantt chart in apex 4
    but no one give any answer yet.

  • Help With apex.server.process

    Hello,
    I am trying to use the new apex.server.process function to and I seem to be having some issues with it. The call itself seems to be working fine as in firebug it returns what I expect. Its just that I am returning the json string into an object and that is what is causing the problem.
    Here is my on-demand process:
    DECLARE
      lv_json             VARCHAR2(4000 CHAR);
      lv_score            NUMBER(12);
    BEGIN
        --Will get the score from the database...
        lv_score := round(fm_apex.events_api.get_percent_complete(:P40_EVENT_ID,'TOTAL'));
        IF lv_score = 100 THEN
          lv_json := '{"success":true}';
        ELSE
          lv_json := '{"success":false}';
        END IF;
        htp.p(lv_json);
    END;
    And this is my javascript function:
    function checkScore(pThis)
        var getScore = apex.server.process(
            'IS_SCORE_COMPLETE_JSON',
                pageItems: "#P40_EVENT_ID"
        if ( eval(getScore.success) )  {
            alert('This is successful');
            //doSubmit(pThis.id);       
        } else {
            openModal('notScoredFully');
    What is happening is when the response is {"success":false} and in firebug it is still evaluating it to true? Can anybody see what I am doing wrong?
    Cheers,
    Paul.

    1/ apex.server.process is asynchronous. You are handling it as if it is not. You fire the call and it is gone, unlike htmldb_get which works synchronously (=makes the browser wait for the return). You need to use the success function.
    JavaScript APIs apex.server.process
    The return value of the server.process call is a jqXHR object, documentation on which you can find here: jQuery.ajax() | jQuery API Documentation
    I would just use success though, as demonstrated in the example of the documentation.
    apex.server.process ( "MY_PROCESS", {
      x01: "test",
      pageItems: "#P1_DEPTNO,#P1_EMPNO"
    success: function( pData ) { ... do something here ... }
    Thus something along these lines:
    apex.server.process(   'IS_SCORE_COMPLETE_JSON'
                         , { pageItems: "#P40_EVENT_ID" }
                         , { success: function( pData ) {
                                        if(pData.success){
                                          alert('This is successful');
                                        } else {
                                          alert('This is NOT successful');
    2/ apex.server.process by default handles the return value as a json datatype. You would not need to "eval" it.

  • Using Fingerprint reader with Apex 4.2

    I need help with integrating Fingerprint reader with Apex App 4.2. I want to store the fingerprint data in the database (blob column ) and be able to match the stored data with new scanned data.
    Thank you.

    This will be hard, you will not be able to do it purely through the web browser;
    Either make an Active X control to install on the client, or write a small client which shares a cookie or similar to upload the data from. Both ways require interfacing with the actual hardware device and sending the data to the back end process.
    Here is an open source matcher and analyser (with a list of supported hardware). APEX will not help you here, this will be hard work.
    http://www.sourceafis.org/blog/
    I would *seriously* consider something like QR codes instead to eliminate 'duplicates'.
    1. register name and password to 'vote'
    2. you are sent a unique QR code to your phone/email/normal mail (your vote)
    3. you present the QR code to the voting process via a camera and vote.
    4. The QR code cannot be reused.
    Web QR is a typical example of this, and works, right now. And wouldn't be too hard to integrate with APEX. There are many examples of generating QR codes on the web, including javascript and even APEX if you dig hard enough.
    Honestly, use QR codes. It will make your project more fun and with a *much higher* chance of success.
    regards,

  • Web based reporting engine integrated with APEX

    Hello,
    I would like to use some completely web-based reporting solution for my application. My idea is that I will create some datasource, prepare database query and publish some data columns to end users (datamodel). They will choose from many of prepared data areas, create their own report using some intuitive web-based report designer and save it. I do not need it for any analytic purposes, no dynamic filters, graphs and other widgets, no BI. It will be all only about building text based reports with few dynamic fields (customer address, actual date etc..).
    For example: User will prepare some document (template) with few paragraphs and add some of prepared dynamic fields into it (ie. company name, customer address, repeating table with list of employees, some image). Then he will be able to generate same document for many customers etc..
    I am looking for some simple, user friendly web based application. Some external report builder for example for Jasper reports is not what I am looking for.
    I will need to integrate it with  Oracle 11g XE with APEX 4.2 so some API or URL parameters is must.
    Used reporting engine does not be completely free, but I am able to pay max. $5000 for it
    Do you have some tips?
    Thank you

    This could be a solution for APEX reports (interactive reports). But I want to create more complex reports, not only table based reports.
    I need to create for example invoice report with some dynamic fields (customer, invoice items...), another report can be for example some contract about cooperation with some dynamic fields (contract number, personal information ...).
    These reports will be mostly only text based without any table. See example bellow. How would you generate this kind of letter?
    "Hello <CUSTOMER_NAME>, we would like to offer our new product <PRODUCT_NAME> to you..."
    Where CUSTOMER_NAME a PRODUCT_NAME are prepared fields (from some database tables). It will be something very similar to Microsoft Word automatic mailings. User can generate many text based reports and save them as PDF.
    I need to find some web based product, that will be simple for users and can be integrated with APEX.

  • Gantt Charts with APEX

    Hello
    Has anybody managed to integrate Gantt Charts with APEX and got them working. I'm required to provide some similar reports.
    I understand Gantt charts are available in AnyCharts 5 but I need the XML to convert or at least a How To Do document.
    Any any other ideas would be appreciated.
    Cheers
    Ade

    Hi Ade,
    We have built an Anychart Integration Kit for APEX, if you take a look at -
    http://anychart.apex-evangelists.com
    and specifically -
    http://anychart.apex-evangelists.com/pls/apex/f?p=454:14:0:
    You'll see that anything is possible ;)
    We've concentrated on the core Anychart Functionality in the Integration Kit and will be releasing more powerful versions shortly.
    Hope this helps,
    John.
    Blog: http://jes.blogs.shellprompt.net
    Work: http://www.apex-evangelists.com
    Author of Pro Application Express: http://tinyurl.com/3gu7cd
    REWARDS: Please remember to mark helpful or correct posts on the forum, not just for my answers but for everyone!

  • XMLDB with Apex

    Hi,
    Has anyone used XML DB features with Apex? Any good examples? Thanks.

    probably to do this is the way have done this or automatically shred it into an OR XMLType table and build an XMLType view on it or use some trigger code to pass it into the objects you need.

  • Problem with Apex hosted SQL Workspace

    Hi,
    I am having trouble with using currval on this site in SQL workshop. I have a demo table and have defined a sequence via sql. I successfully insert a sequence_name.nextval but when I try to add a related child record with current value of the sequence I keep getting this:
    ORA-08002: sequence ORDERS_ORDER#_SEQ.CURRVAL is not yet defined in this session
    I can check on nextval from dual and I can select the currval from dual also but when I try to use the currval in an insert, I get the same error above. Also, sometimes I get the same message even when selecting currval from dual. Seems like a problem with Apex at this hosted site. Or does Apex SQL workshop have issues with currval.
    PM

    Scott, Can you explain a little more about the difference between a hidden item that is set to display never & the other type of item which I am assuming is "display as text saves state" and display never?
    When I viewed the source for both of these I could not see the items in source code.
    Also for an item that is passed into a popup I am exposing hidden item's identity is there a different way to pass values... here is my example:
    <!-- Begin of popup for DNS_NAME -->
    <script language="JavaScript" type="text/javascript">
    <!--
    <!-- window size was 800*600 -->
    <!-- window size was 400*300 -->
    function popupPage(url) {w = open(url,"winDnsName","Scrollbars=1,resizable=1,width=500,height=450"); if (w.opener == null) w.opener = self; w.focus(); }
    //-->
    </script>
    <script language="JavaScript" type="text/javascript">
    function callDnsNamePopup (IPId) {
    var IPId = document.getElementById('P103_IP_ID').value;
    var url;
    url = 'f?p=110:106:2066309280674317::::P106_IP_ID:' + IPId;
    w = open(url,"winDnsName","Scrollbars=1,resizable=1,width=800,height=600");
    if (w.opener == null)
    w.opener = self;
    w.focus();
    </script>
    <!-- END of popup for DNS Name -->
    At the same time if I set an item as hidden and display never I cannot use it with a call to a popup...

  • Accessing Microsoft Office with APEX

    Hi,
    Is there a way to directly access the Microsoft Office Programms within APEX (e.g. Excel, Word, Outlook)
    For example:
    1. Create a custom Excel Sheet with Data from different querys.
    2. Fill an .oft Outlook E-Mail with different Data and paste a Tabel from an Excel file creaetet parallel.
    3. Create Appointments in a Public Outlook Calender.
    I currently do all these things within an Microsoft Access application which is quiet straight-forward to handel. But it seems impossible to do so with APEX.
    Any suggestions?
    Thanks

    Not impossible when google is your friend.
    1) Any OOXML file
    ORA-00001: Unique constraint violated: Working with Office 2007 (OOXML) files using PL/SQL
    Easy table export to XLS (based on HTML) - APEX-AT-WORK by Tobias Arnhold&lt;/title&gt;&lt;meta content='text/html; char…
    2) Required?
    when you have APEX_MAIL
    3) Dan McGhan's Oracle Blog: iCalendar event via email
    It's all in the API, agnositic to APEX.

  • APEX Listener with APEX 3.0 on 11gR2

    Yes, I am crazy.
    We have many many APEX applications in APEX 3.0 running on a 10.2.0.4 database that needs desperately to be upgraded. As a test, I've set up a clean 11gR2 database and copied the production APEX database into it via datapump. I set up APEX Listener, as I don't have any OAS sitting around and the EPG doesn't seem to be supported for APEX 3.0... the Listener doesn't say one way or the other.
    When trying to log in, I get the login page, but it tries to reference files such as apex_get_3_1.js while I only have files such as htmldb_get.js in my images directory in production. I noticed it is looking for what appears to be 3.1 files instead of 3.0 files... which concerns me.
    The APEX listener appears to be more than just a Java PL/SQL gateway.
    Is there a minimum version of APEX the APEX Listener supports?
    Interested in pointers!
    Rob

    Hi Rob,
    Yes, I am crazy.Why would that be? ;)
    We have many many APEX applications in APEX 3.0 running on a 10.2.0.4 database that needs desperately to be upgraded. As a test, I've set up a clean 11gR2 database and copied the production APEX database into it via datapump. I set up APEX Listener, as I don't have any OAS sitting around and the EPG doesn't seem to be supported for APEX 3.0... the Listener doesn't say one way or the other.APEX 3.0 is supprted by EPG. See the [url http://docs.oracle.com/cd/B32472_01/doc/install.300/b32468/post_inst.htm#CHDBEJDA]APEX 3.0 Installation Guide for details.
    APEX Listener is capable of hosting APEX 3.0 as well, though APEX 3.0 wasn't supported anymore when APEX Listener was initially released. The current APEX release at that time was 4.0, so this would be the first version to be known as really stable, whereas you won't get any support for older releases anymore. From personal experience I know that there are now issues with APEX 3.1 and APEX Listener, so it'll probably also work with 3.0.
    Concerning your database release, the minimum for APEX Listener is 10.2.0.3, so you're definetly safe on that part, though I'd recommend to upgrade as regular support for 10.2 databases ended.
    When trying to log in, I get the login page, but it tries to reference files such as apex_get_3_1.js while I only have files such as htmldb_get.js in my images directory in production. I noticed it is looking for what appears to be 3.1 files instead of 3.0 files... which concerns me.This indicates that your APEX would actually be a 3.1 and you should update you images directory.
    The APEX listener appears to be more than just a Java PL/SQL gateway.It is, but this has nothing to do with your 3.1 JS files, if this is why you stated this.
    Is there a minimum version of APEX the APEX Listener supports?As mentioned above, 4.0 would be a safe approach, but 3.1 will definetly work, 3.0 probably will as well. I'd recommend you find out which APEX version is actually installed on your database before you consider any upgrade operations. Run the following query as privileged user:
    SELECT comp_name, version, status
      FROM dba_registry
    WHERE comp_id = 'APEX';-Udo

  • Performance issues ..with apex in reports version 3.1

    Hello All,
    I am using apex 3.1 oracle 10g.
    I am facing with performance issues with apex . I am generating iteractive reports with apex and the number of records are huge - running in 30 to 40 thousands of records and the reports is taking almost 30 minutes.
    How I can improve the performance of this kind of report. I am using apex collections.
    How apex works in terms of retrieving the records -?
    Please let me know .
    Thanks/kumar
    Edited by: kumar73 on Jun 18, 2010 10:21 AM

    Hello Tony ,
    The following are the sequence of steps to run the test case.
    Note:- All the schemas , tables and variables are populated from database.
    From Schema and Relations tab choose the following:
    1)     Select P3I2008Q4 as schema.
    2)     Choose Relation as query path.
    3)     Select ECLA, ECLB, MTAB as relations.
    From Variables choose the following:
    4)     Choose the variables AGE_SEXA,CLODESCA,ALCNO from ECLA relation.
    5)     Choose the variables AGE_SEXB, ALCNO, CLODESCB from ECLB relation.
    6)     Choose the variables EXPNAME, ALCNO, COST_, COST from MTAB relation.
    From Conditions: Click the Run Report button this generated standard report ( Total no of records in report – 30150 )
    Click on Interactive report button –to generate an interactive report. ( Error occurred )
    We are using return sql statement in generationg the standard report and collections for interactive report.
    thanks/kumar

Maybe you are looking for

  • Image processing

    Sir,    I am a beginner in LAB View am using labview 2013.i want to do image recognition using labview.can you please give me some basic programs on image processing and image recognition so that  i can understand atleast image acquisition and proces

  • Photoshop CS2 will not open to double click in Snow Lepard

    Since loading Snow Leopard I have been unable to open Photoshop files with a double click. Double clicking .psd file opens PS with the message "Could not complete your request because Photoshop does not recognize this type of file." Right click "open

  • I cant open files stored in iCloud in iWork

    I am using the latest version of iWork on my iMac and I can't open any files that are stored in iCloud any time I try to open a document stored in iCloud in an iWork app I get a dialog box that says 'The file "xxx.pages" couldn't be opened.' It does

  • Logging Query.

    Hi , I want to activate the logging option in query (sq01,sq02,sq03). I already define the infoset which i want to log in SPRO and create the BAdi. Between the commands method IF_EX_AQ_QUERY_PROT~QUERY_PROT and endmethod i insert breakpoint and when

  • Allow me to dismiss / kill "Signature requires validating" banner

    With monitors more squat than ever, why is Acrobat 9 using bigger icons and banners at the top?  Pretty soon there will be no space for the actual document. Well, here's one thing to fix.  When I open a document with a questionable digital signature,