Is it possible to create reports in 1 month without any experience?

I'm on a project where we need to make some custom reports in the span of about a month. I'm trying to figure out what is feasible for a person, with no reporting background but plenty of SQL experience,to handle in that time frame.
The format of all of the reports would be basically the same. We want a histogram next to a window where we can enter in some information, and the histogram would change dynamically. In another frame, we would have access to detailed data (ability to view the actual records).
Thanks,
Samir Patodia

Hi Samir,
You can look at the Building Reports manual for basic information on how to build reports:
http://otn.oracle.com/documentation/reports.html
For your particular case, output to portal may be appropriate. You may want to look at the Reports : Portal integration viewlets:
http://otn.oracle.com/products/reports/htdocs/getstart/demonstrations/index.html
At the same time, since you want end-user reporting and dynamic charts, you may want to look at the functionality offered by another Oracle product - Discoverer
http://otn.oracle.com/products/discoverer/index.html
Navneet.

Similar Messages

  • Is it possible to create and save a .PDF without any compression to the resulting .PDF?

    I need an uncompressed file so I can use the resulting PDF to do a find/replace. Can't do it with compression.
    Thanks
    JDRHC1115

    Dave,
    Thanks for the reply. Of all the suggestions I've received this seemed to
    be most promising. I gave it a try and the problem is that when I attempt
    to save as optimized a message box pops up and says I have to save my
    document first. Low and behold when I save it, compression occurs. Even
    when I select the options you suggest I'm left with a compressed document.
    I'm using Acrobat Pro X
    Jeff
    From:   Dave Merchant <[email protected]>
    To:     Jeff Ross <[email protected]>
    Date:   01/06/2011 09:35 AM
    Subject:        Is it possible to create and save a .PDF
    without any compression to the resulting .PDF?
    You don't want the UncompressPDF plugin - that's designed to split out the
    COS objects but doesn't remove the Flate encoding (plus if you've never
    compiled a plugin before, it's not really the time to learn).
    Instead, simply save your PDF file using the PDF (Optimized) file type,
    click the Settings button and under "Clean Up" - "Object compression
    options", choose "Remove compression". Turn everything else off if you
    want to retain the PDF content exactly as it was before.
    Your document-level scripts will then be in the file as plain text.

  • Is it possible to create report with two databases in Web Analysis Studio

    Hi,
    I am new to Hyperion Web Analysis, Could anyone help me out, whether its possible to create report with two databases for eg: OLAP(ESSBASE) and relational.
    Thanks & Regards,
    Prashanthi.

    Hi Mohit,
    Thanks for the reply, could you throw out some scenario so that i can try it out.As I am just trying my hands wet on this would like to know in detail & even i have gone through WA user guide but dint get any clue. Please throw some light.
    thanks
    prasanthi

  • Is it possible to create a DVD in iDVD without using the themes they provide?

    Is it possible to create a DVD in iDVD without using the themes they provide?

    Hi
    No Menu DVD
    from. Mishmunken
    How to create a DVD in iDVD6 without menu (there are several options)
    1. Easy. Drop your iMovie in the auto-play box in iDVD's Map View, then set your auto-play item (your movie) to loop continuously.
    Disadvantage. The DVD plays until you hit stop on the remote
    2. Still easy. If you don't want your (auto-play) movie to loop, you can create a black theme by replacing the background of a static theme with a black background and no content in the drop-zone (text needs to be black as well).
    Disadvantage. The menu is still there and will play after the movie. You don't see it, but your disc keeps spinning in the player.
    3. Still quite easy but takes more time. Export the iMovie to DV tape, and then re-import using One-Step DVD.
    Disadvantage. One-Step DVD creation has been known to be not 100% reliable.
    4. (My preferred method) Easy enough but needs 3rd party software. Toast lets you burn your iMovie to DVD without menu - just drag the iMovie project to the Toast Window and click burn.
    Disadvantage. you'll need to spend some extra $$ for the software. In Toast, you just drop the iMovie project on the Window and click Burn.
    5. The "hard way". Post-production with myDVDedit (free-ware)
    Tools necessary. myDVDedit ( www.mydvdedit.com )
    • create a disc image of your iDVD project, then double-click to mount it.
    • Extract the VIDEO_TS and AUDIO_TS folders to a location of your choice. select the VIDEO_TS folder and hit Cmd + I to open the Inspector window
    • Set permissions to "read & write" and include all enclosed items; Ignore the warning.
    • Open the VIDEO_TS folder with myDVDedit. You'll find all items enclosed in your DVD in the left hand panel.
    • Select the menu (usually named VTS Menu) and delete it
    • Choose from the menu File > Test with DVD Player to see if your DVD behaves as planned. If it works save and close myDVDedit.
    • Before burning the folders to Video DVD, set permissions back to "read only", then create a disc image burnable with Disc Utility from a VIDEO_TS folder using Laine D. Lee's DVD Imager.
    //lonestar.utsa.edu/llee/applescript/dvdimager.html
    hope this helps!
    From LynnLU USA
    www.mediasoftmac.com/dvd-creator-articles/convert-mov-video-to-dvd-on-mac.html#1 29
    Yours Bengt W

  • Apex 3.0: export a report as .csv file without any Enclosed By character?

    In Apex "Report Attributes page/Report Export" is possible to define the Enclosed By field.
    The default Enclosed By by characters are a double quotation marks (" ").
    Is there a way to export the report as .csv file without any Enclosed By character?
    Example line format:
    a) using default Enclosed By
    "value1";"value2";"value3"
    b) using ('') as Enclosed By
    'value1';'value2';'value3'
    c) using blank space as Enclosed By
    value1 ; value2 ; value
    d) without any Enclosed By character
    value1;value2;value3
    What can we do in Apex to export a report as .csv file with the line format example d)?
    Thanks for your help.

    Hi,
    There is no Out of the box feature in Apex to achieve this functionality. But what you can do is write a page process to generate the CSV that you want.
    For this what I will do is on the first page where you press the Button it will call a PL/SQL page process which actually generates the csv. You can keep the existing report only for display purposes. Find the below process which generate the csv that you require.
    begin
    -- Set the MIME type
    owa_util.mime_header( 'application/octet', FALSE );
    -- Set the name of the file
    htp.p('Content-Disposition: attachment; filename="filename.csv"');
    -- Close the HTTP Header
    owa_util.http_header_close;
    htp.prn('columnHeader1,ColumnHeader2,ColumnHeader3'||chr(13));
    -- Loop through all rows
    for x in (
    Select column1,column2,column3 from table;
    loop
    -- Print out a portion of a row,
    -- separated by commas and ended by a CR
    htp.prn(x."column1"||','||x."column2"||','||x."column3"||chr(13));
    end loop;
    -- Send an error code so that the
    -- rest of the HTML does not render
    htmldb_application.g_unrecoverable_error := true; --You can leave out this line if you still want to display the existing HTML report.
    end;
    This will show a download box, so you can download the csv file. The page process should be called before header and the condition should be the button press.

  • Transfer ABAP report to external database without any middleware

    Dear All
    We have a requirement wherein we have to transfer ABAP report to external database without any middle-ware,our database is DB6 and the target/external database is ORACLE,kindly let us know how to go about??
    Thanks in Advance
    Arun

    Hi,
    What do you mean by "transfer ABAP report to external database " ?
    Regards,
    Olivier

  • Hi, I' ll be San Antonio from 8-10th of Oct and want to buy an iphone 5. According to forums there is no unlucked yet. Thus, can i get simlocked but not contracted phone from any store? and is that possible to use that phone in Turkey without any prob.

    Hi, I' ll be San Antonio from 8-10th of Oct and want to buy an iphone 5. According to forums there is no unlucked yet. Thus, can i get simlocked but not contracted phone from any store? and is that possible to use that phone in Turkey without any prob.

    If you purchase the phone at the full contract price and have no term left on your carrier contract, the carrier will unlock it for you. That's what I am doing with AT&T. I'll pay the full purchase price for the phone and since I don't have a contract with them, they will unlock it for you. It can be difficult to get it done since most of their customer service is very ill informed but I have had many discussions with them on their chat that I have records of them stating they will unlock any phone if you do not have an existing contract. It's the law.

  • Creating photo slideshow in imovie without any effects

    Hi, When I am trying to make a photo slide-show video in imovie, every photo comes with zoom-in and out effect. I dont like that one. I just want to show photos one after another without any effect. But I couldnt find any option in imovie. Is it possible to make one?
    Please give me suggestions. Thanks in advance!
    Jay

    Click on the small icon at the top center of any photo in iMovie. You will see the options Fit, Crop, Ken burns, Done. I think you will like the Ken Burns effect after you experiment with it a bit. If you want just plain photos, click Fit and Done.
    Good luck.

  • How is it possible to create a subcontracting P.O. without components?

    I have seen in our systema a P.O with item category = L and account assingnement category = P and no component in components button. How is that possible? I´m not able to do it myself. Where are the PO positions´components stored in the database? I would like to look at the table in order to see whether it has happened more than once.
    Thank in advance.

    There could be one of the following possibilities that might have happened.
    1. The BOM itself did not have any components
    2. The user deleted the components after creating the PO
    3. At the time of creating PO the BOM was not valid like date and/or status/usage.
    4. Item requirement date in PO was earlier than item valid from date in BOM.
    4. Material Provision indicator was set as L for the components in the BOM.

  • Is it possible to create a role with PERM_READER_EXTENSIONS_WEB_APPLICATIONS without Service Invoke?

    I need to restrict user access to Workspace processes.  Using the adminui, service management, I gave my test group INVOKE_PERM permissions to this service.  This works good.  The users of the test group can only see this process.  However, for these users the SOAP calls do not work.  I am using a reader extended form and I am getting the error below.  If I add the Reader Extension Web Application role, the SOAP call work, but the user of the test group can see all other processes.  I created a role and gave it PERM_READER_EXTENSIONS_WEB_APPLICATIONS, Service Read, INVOKE_PERM and other combinations.  This role only works if I add Service Invoke and this give users access to all processes.  How can I get a role to provide the Reader Extension without using Service Invoke?
    An error has occurred. See error log for more details.
    User TORRES, ALEJANDRO G does not have the Service Invoke Permission on Service ReaderExtensionsService.

    I found the answer to my question.  I had to give INVOKE permission to all the services used by the process.

  • HT2731 is not possible to create apple id in iphone without credit card ?

    plz answer my question

    You can, but it must be a new AppleID. Here is an article on how to do that:
    http://support.apple.com/kb/ht2534

  • BAPI_ROUTING_CREATE creates routing but no operations, without any errormsg

    Hi Seniors,
    I have following problem. I have to create a new routing from an existing routing.
    So far it sounds easy, and it even works for the routing itself.
    But whaever i export to the BAPI it wont create any Operations.
    What i do is:
    Reading the headdata of the existing routing.
    Mapping the headdata to the BAPI-structure which i export to the function.
    Reading the positiondata (operations) of the routing.
    Mapping the positiondata to the BAPI-structure which i export to the function.
    The real problem is that in the return table for the error-messages of the BAPI is only one record. This record is of the type state and tells me that the routing has been created sucessfully.
    I have been searching this forum for quite some time to get an answer to this question, but failed.
    It seems there are quite a LOT of people not knowing exactly how to use this function, since this question is widely spread throughout the forums.
    BUT in most of the cases there is NO answer or well something not too useful.
    Here comes my code example for those who want to have a closer look:
    DATA:        c_matnr          TYPE mara_matnr,
                      wa_plpo          TYPE plpo,
                      lt_plpo          TYPE TABLE OF plpo,
                      wa_plko          TYPE plko,
                      wa_mapl          TYPE mapl,
                      lt_mapl          TYPE TABLE OF mapl,
                      wa_cukn          TYPE cukn,
                      wa_modify        TYPE yic_gs_mod,
                      lt_modify        TYPE yic_gs_mod,
                      wa_bapiplko      TYPE bapi1012_tsk_c,
                      lt_bapiplko      TYPE TABLE OF bapi1012_tsk_c,
                      wa_bapiplpo      TYPE bapi1012_opr_c,
                      lt_bapiplpo      TYPE TABLE OF bapi1012_opr_c,
                      wa_bapireturn    TYPE bapiret2,
                      lt_bapireturn    TYPE yic_tt_return,
                      wa_bapiplfl      TYPE bapi1012_seq_c,
                      lt_bapiplfl      TYPE TABLE OF bapi1012_seq_c,
                      wa_plfl          TYPE plfl,
                      lt_plfl          TYPE TABLE OF plfl.
      DATA:       lv_swap(60)      TYPE c,
                      lv_ix(6)         TYPE n,
                      lv_sttag         TYPE char10,
                      lv_flag          TYPE xfeld,
                      lv_mflag         TYPE xfeld,
                      lv_plnty         TYPE plko-plnty,
                      lv_plnnr         TYPE plko-plnnr,
                      lv_knnum         TYPE cukc-knnum,
                      lv_group         TYPE plko-plnnr,
                      lv_groupcounter  TYPE plko-plnal,
                      lv_subrc         TYPE syst-subrc.
      FIELD-SYMBOLS:        TYPE ANY.
      PERFORM get_headdata                "just a simple select hiding behind this
                      USING     i_plnty
                                i_plnnr
                      CHANGING  wa_plko
                                lv_subrc.
      PERFORM get_posdata                  "just a simple select hiding behind this
                      TABLES    lt_plpo
                      USING     i_plnty
                                i_plnnr
                      CHANGING  lv_subrc.
      SELECT *
      FROM   mapl
      INTO   TABLE   lt_mapl
      WHERE  plnty = i_plnty
      AND    plnnr = i_plnnr.
        Mappen der Arbeitsplankopfdaten in die BAPI-Struktur.
          wa_bapiplko-change_no                     = wa_plko-aennr.
          wa_bapiplko-valid_from                    = wa_plko-datuv.
          wa_bapiplko-del_ind                       = wa_plko-loekz.
          wa_bapiplko-task_list_usage               = wa_plko-verwe.
          wa_bapiplko-plant                         = wa_plko-werks.
          wa_bapiplko-task_list_status              = wa_plko-statu.
          wa_bapiplko-task_measure_unit             = wa_plko-plnme.
          wa_bapiplko-lot_size_from                 = wa_plko-losvn.
          wa_bapiplko-lot_size_to                   = wa_plko-losbs.
          wa_bapiplko-resp_planner_group            = wa_plko-vagrp.
          wa_bapiplko-description                   = wa_plko-ktext.
          wa_bapiplko-old_number_of_task_list       = wa_plko-plnnr_alt.
          wa_bapiplko-recalc_std_values             = wa_plko-flg_capo.
          wa_bapiplko-dyn_modif_level               = wa_plko-qdynhead.
          wa_bapiplko-dyn_modif_rule                = wa_plko-qdynregel.
          wa_bapiplko-sample_drawing_procedure      = wa_plko-qprziehver.
          wa_bapiplko-ind_units_ext_numbering       = wa_plko-extnum.
          wa_bapiplko-ident_key                     = wa_plko-slwbez.
          wa_bapiplko-insppoint_partiallot_assgnmt  = wa_plko-ppkztlzu.
          wa_bapiplko-change_rule                   = wa_plko-chrule.
          wa_bapiplko-object_change_type            = wa_plko-ccoaa.
          APPEND wa_bapiplko TO lt_bapiplko.
        Mappen der Vorgänge (Arbeitsplanpositionsdaten) in die BAPI-Struktur
          LOOP AT lt_plpo INTO wa_plpo.
            lv_ix = sy-tabix.
            CALL FUNCTION 'MAP2E_PLPO_TO_BAPI1012_OPR_C'
              EXPORTING
                plpo                         = wa_plpo
              CHANGING
                bapi1012_opr_c               = wa_bapiplpo
              EXCEPTIONS
                error_converting_curr_amount = 1
                OTHERS                       = 2.
            IF sy-subrc <> 0.
              e_subrc = sy-subrc.
              rfc_exception lc_cant_map_to_bapi_structure.
            ENDIF.
            wa_bapiplpo-sequence_no = 0.
            wa_bapiplpo-work_cntr = ''.
            CONCATENATE 'VG' lv_ix INTO lv_swap.
            wa_bapiplpo-operation_id = lv_swap.
            APPEND wa_bapiplpo TO lt_bapiplpo.
          ENDLOOP.
        BAPI-Aufruf: lege Arbeitsplan an, mit untergeordneten Objekten
          CALL FUNCTION 'BAPI_ROUTING_CREATE'
            IMPORTING
              group             = lv_group
              groupcounter  = lv_groupcounter
            TABLES
              task               = lt_bapiplko
              operation        = lt_bapiplpo
              return             = lt_bapireturn.

    When you are sending the operation details, the sequence no should be masked to the length of the field.
    for example: Sequence no = 0.
    it should be masked as '000000'.

  • A method to create halos on multiple lines without any visible overlap of the halos?

    I'm struggling to find an easier way to create a uniform halos on overlapping line. It needs to be reversible. Meaning I can change it whenever I can.
    Header 1
    Header 2
    Currently I am using a method that is time consuming, requires a lot of planning and it non reversible. I always select all the lines (hopefully I got them all), Use "expand", and then "shape mode" (Unite). Use an "offset" and the paint it black.
    This works really good, however, the major drawback once I do the expand. I can't modify anything on the drawing, let say if I want to change it to a to a smaller/larger page or move a line... then I am screwed.
    The second method I do is the fastest but also the ugliest. I use the appearance tab to add another larger "stroke" with a white color. Easy and fast to apply and change. But the end result is no good. The halos are not outside all the lines....Is there another method to do this and it is still reversible, or at least to a stage that is much later than the above?
    //Vincent

    if you group the black lines - without first applying the white stroke - you can apply the stroke at the group level in the appearance panel, then move it so it is below the group contents. then it will appear below all of the black lines, not individually.

  • Possible to sell on copy of FCS2 without any problems for new user?

    Hi guys
    I have a copy of Final Cut Studio 2 and I never use it so I want to sell it on.
    I did register it when I bought it so is this going to affect the resale? I don't want to sell it if the new owner cant treat it as theirs.
    Thanks

    Best thing to do is call AppleCare 1-800-myapple, and arrange the transfer I think. Report back on result of this too... been a while since someone did this and posted about the experience here. Would like to know how it goes these days.
    Jerry

  • Is it possible to obtain OCA/OCP without any experience i Oracle?

    Hi all,
    I have little or none experience using Oracle or any other database systems, but my boss at work has generously offered me a chance to take a OAC/OCP certification (Oracle Database). I work as a sysadmin you might say, on a system that relies on Oracle for datastorage. My duties at work do not include any "tampering" with the database, but I sometimes use SQL (Select queries) or Business Objects to obtain data from the database that i cannot reach in other ways.
    I have been looking at the courses Oracle Database 10g: Administration Workshop I Release 2 (and Workshop II), and wonder if this is really enough to be qualified for a job as a DBA or equivalent job.
    I do not have the need for any of this knowlege of Oracle databases in the current position i have in the company I work for, but perhaps I could, when the time is right, get another job in this company (or somewhere else).
    Is it recommended to have worked with databases before taking any of these certifications, and will I be able to fulfill my duties as a DBA with just the two courses I have mentioned above? Are there any other jobs I could do if i take the courses above?
    Thanks in advance for any answers
    Ola Jordal
    Message was edited by:
    user575624
    Message was edited by:
    user575624

    Good Morning,
    In regards to your question regarding the two courses the answer is absolutely not! In this profession staying up on technology is paramount so that means read, read read! You are presently one step ahead of most others because you got access to a real database where others do not. Take advantage of that but just be careful of the statements you issue. Get really familiar with the data dictionary tables then concentrate on the front end tools. If you know the mechanics you won't be so afraid to push a button when called apon. As for me I never took a course, I just studied the appropriate manuals to pass the test for ocp currently I am 8, 9 and 10g certified. What you can do to accomplish this is get a syllabus of the required areas and check it out on the database. Keep taking the test until you pass, then move onto the next one. Once this momentum builds you will not want to stop. Obviously there will be some things you can't do here. In that case use your home computer, crash it etc. Get to know the procedures cold. Now oracle requires you to take courses to get the cert issued. Back in my days that wasn't required. Consider it an investment in your future. Someday someone out there will want to talk with you because you are currently associated with a business that has an oracle db and that is all that matters. At the interview if you answer their questions professionally and competently, you in all likely hood get the position, regardless of the cert you have or not.
    Take the man up on it!
    regards,
    al

Maybe you are looking for

  • Windows 8.1 Pro WMC, Radeon R290X and ASUS VG248qe, cable advisor fails

    I ran cable adviser and for my graphics section it fails. The result is: Memory:     Pass Processor:   Pass Graphics:    Fail  Your graphics card or driver doesn't support content protection It used to work under windows 7 but what I changed since th

  • Local vs. Remote Response Why such a delay?

    I'm trying to find out why there is such a difference in query finish times and how to improve the time. ftp is fast between the machines. The network folks say everthing is ok there though the sniffer sees many Parses. Changing the arraysize in SQL*

  • Acrobat 9 Professional-scanning multiple documents needed

    I need to scan multiple documents and the "hide scanners interface" is grayed out. I recently upgraded from Acrobat 8 professional, which occassionally would allow me to scan multiple docs. Called Adobe and they suggested I upgrade to 9. Still can't

  • Creating a collection from a list and joining the list to a database table

    I would like to have opinions on good ways to process rows, based on a provided list of key values, joining the collected list against a source table to retrieve additional information related to the key. In this simple example, the procedure accepts

  • SRM user settings not populated

    Hello, We are using SAP SRM 7.02 with NWBC and  we are testing this in sandbox.user id has been assigned to sap_all and new and SAPSRM/employee_ehp1 role. NWBC Launched --> Click on SRM user settings---> not populating the details/page navigation to