How to run reports directly from R/3 tables

We are about to implement BW but the client wants to run temporary reports directly off R/3 tables. How can this be accomplished? Do we just use business content or r there other ways?
Thanks

I created a join of 3 tables using SQVI in BI 7.0.  Nobody else but me can see this query join.  Is there a way to save this to somwhere public, so others can access this view?  Maybe "Save As"??
If possible, please provide steps to do this. 
Thank in advance!

Similar Messages

  • Running Report Directly from SAP Menu

    Hi ,
    I have to know that , I have created a report and given it a transaction code . There is also a standard report which output almost the same result .
    Now I want that standard report not to be shoen in the SAP menu on the left hand side and instead of it I want My reports transaction code to be visible so that the enduser is at an ease not to remember the Transaction code to run that report .
    So how can I go for it ?
    PLease advice .
    Thanx & Regards

    Hi,
    Have you looked transaction and screen variants (SHD0) or GuiXT solution?
    For more information, please check this links.
    http://help.sap.com/saphelp_nw04/helpdata/en/7d/f639fb015111d396480000e82de14a/content.htm
    http://www.synactive.com
    http://help.sap.com/saphelp_erp2004/helpdata/en/89/91b9d8194f11d5b3a30050dae02d7c/content.htm
    http://service.sap.com/guixt
    Hope this will help.
    Regards,
    Ferry Lianto
    Please reward points if helpful.

  • How to run VI directly from GUI?

    Hi. Is there a way to add a button to the GUI that runs the program instead of clicking on the run white arrow on the toolbar?

    No. If the VI isn't rnning there's no way LV can read the front panel--or perform any actions on the swithch condition.
    You can however create a screen that starts executing as soon as it loads into memory and contains buttons for opening and running other VIs.
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • How to run report from form in DS9I

    Hi,
    Can anybody guide me how to run the webreport from the form by passing some parameter from form to report
    by using Oracle developer 9i
    thanks

    Try
    http://otn.oracle.com/products/forms/pdf/frm9isrw9i.pdf
    You'll find there all what you need

  • How to run report from java code

    I am a begginner in Oracle Reports. We have no AS installed, so we run reports either from Reports Builder or by calling rwrun. I would like to know how to embed report calling into java code , let's say into simple swing application. Some example code would be welcomed. Thanks.

    Hello,
    You can find examples in :
    http://download-uk.oracle.com/docs/cd/B14099_17/bi.1012/b14048/pbr_webservice.htm
    Oracle® Application Server Reports Services Publishing Reports to the Web
    10g Release 2 (10.1.2)
    B14048-02
    14 Using the Oracle Reports Web Service
    Regards

  • How to run report from context menu using XML Extensions?

    I have found an example how to run SQL command from context menu:
    <items>
    <folder type="TABLE">
    <name>UserDefined ContextMenus</name>
    <item TYPE="TABLE" reloadparent="true">
    <title>Create SYNONYM</title>
    <prompt type="check">
    <label>PUBLIC</label>
    <value>PUBLIC</value>
    </prompt>
    <prompt>
    <label>NEW SYNONYM NAME</label>
    </prompt>
    <sql>
    <![CDATA[CREATE #0# SYNONYM  #1# for "#OBJECT_OWNER#"."#OBJECT_NAME#"]]>
    </sql>
    <help>
    This action create a SYNONYM (optionally public) for the selected table.</help>
    <confirmation>
    <title>Confirmation</title>
    <prompt>SYNONYM "#1#" for "#OBJECT_NAME#" has been created.</prompt>
    </confirmation>
    </item>
    </folder>
    </items>
    </prompt>
    But instead of executing SQL command I need to show result page of report based on SELECT statement.

    Hi dz_r-
    Not sure exactly what you mean by "result page of report", but extensive documentation on the xml schema defining context menu actions is available at the schema location.
    &lt;items xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:schemaLocation="http://xmlns.oracle.com/sqldeveloper/3_1/dialogs"
      xmlns="http://xmlns.oracle.com/sqldeveloper/3_1/dialogs">
        &lt;!-- your declarations here -->
    &lt;/items>
    Brian Jeffries
    SQL Developer Team

  • How to run report from form using run_object_report

    I AM USNING FORMS9I/REPORTS 9I , HOW TO RUN REPORT FROM FROM USING RUN_REPORT_OBJECT AND HOW
    TO PASS PARAMETER AS WE DID IN RUN_REPORTS PLEASE HELP ME

    here an example !
    I hope this example you can use it
    PROCEDURE pr_reporte IS
    BEGIN
    DECLARE
         repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    rep_status Varchar2(20);
    d1 DATE;
    d2 DATE;
    BEGIN
         d1 := :GLOBAL.DIA_INI;
         d2 := :GLOBAL.DIA_FIN;
         repid := find_report_object('rep_lab02');
         SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER,'p_fec_uno='||to_char((add_months(last_day(d1),-1) +1),'DD/MM/YYYY')||' '||
         'p_fec_dos='||to_char(d2,'DD/MM/YYYY'));
         SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'pdf');
         v_rep := RUN_REPORT_OBJECT(repid);
         rep_status := report_object_status(v_rep);
         WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED') LOOP
              rep_status := report_object_status(v_rep);
         END LOOP;
         IF rep_status = 'FINISHED' then
              WEB.SHOW_DOCUMENT('/reports/rwservlet/getjobid'||substr(v_rep,instr(v_rep,'_',-1)+1)||'?'||'server=repserver','_blank');
         ELSE
              ventana('E','error reporte no encontrado','S');
         END IF;
    END;
    END;
    The 'rep_lab02' is the name of the report that you give in the node reports
    p_fec_uno and p_fec_dos they are the parameters in the report
    repserver is the name of server created with rwserver
    Greetings

  • Printing Reports directly from to a printer via 10g forms (Linux)

    Hi all,
    I need to be able to print Reports directly from a form to a printer (bypassing the form output) on Linux (RHEL 5). The trick here is this is Linux, not windows so, wasn't sure how to deal with printers in this case.
    I have the option working where I can run a report and set the options to "Cache" and PDF and it displays my outputted report directly in a new browser window w.
    I use the SET_REPORT_OBJECT_PROPERTY, RUN_REPORT_OBJECT, and WEB.SHOW_DOCUMENT properly for the PDF in a window.
    a.) I want to send them directly to a printer, preferably to a user's default printer on their PC, bypassing the output screen. How can I accomplish this?
    b.) I also would like the ability to generate a PDF (bypassing the output on a browser window) and put the form in a specified directory on a client's PC (which is what I used in 6i Client/Server). I believe I need to utilitize the WebUtil to allow this to happen. Otherwise, I'm thinking I just build a queue for the user on the Linux server and build a screen that shows all the reports they've generated for the past X amount of days and let them open them up and print from there.
    Any help (particulary for Part A) would be very beneficial.
    Chris

    1)
    if your app server is on a Linux server, for direct printing to work, the printer must be setup and accessible under Linux server using system-config-printer command, for PDF printout you probably want a postscript option checked
    if you print to screen (PDF) and then use print option then your windows client machine must have access to the printer
    2)
    you must pass this printer name as part of the report parameters.
    set_report_object_property(oRptObj, report_destype, Printer);
    and
    hidden_action := hidden_action ||'&report='|| cRptSrcFile; -- source of report program to call
    hidden_action := hidden_action ||'&destype='|| cDesType;
    hope this helps

  • How to run Reports demos?

    I finally got everything installed and I'm trying to run the Reports demos off of the mid-tier web site. when I click on the jsp report demo it brings up the parameter page. I just use the defaults and click the run button. when I do that it asks me for a SSO login/password. what do I use here? I've looked over all the docs I can think of without finding anything.
    Thanks,
    Jason

    Hi Thivan,
    See the links here:
    http://www.oracle.com/technology/products/reports/htdocs/search.html?cat=INT&col=WIP&submit=Search
    Look for "Integrating Oracle9iAS Reports Services in Oracle9iAS Forms Services"
    Another link on the above page will give you info on how to run Reports from Forms 10g.
    Navneet.

  • How to run report server in oracle 9i DS

    hi..
    can any 1 tell me how to run report server in oracle 9i DS
    i've installed oracle 9i DS, but don't know how to run
    report server.
    actually i want to run a report from my form
    on button press trigger.. some of the experts r tellin
    that 1st u check whether report server is running or not..
    so pls tell me how to install report server.
    while installing oracle 9i DS, i've given Mail server
    as mysmtp.com
    Thanks
    amit

    hi ..
    i've to go in this directory n run
    rwserver -install repservername
    where repserver name is my mailserver..
    this will install reports server
    Amit

  • Run reports direct to printer

    Hello all:
    In developer 6i i created a form with two buttons , one to run reports on the screen (P_RunReport('report_name','SCREEN'); )the other is to run reports directly to the printer (P_RunReport('report_name','printer');),
    Now when i convert this form in developer 10g both buttons run reports on the screen,So how can i direct reports to printer within the same form?.
    Thanks alot.

    I believe you'll be using Set_report_object somewhere in your code.
    Shall you check exactly which value is going into that?
    If you are sure that the value is going in is "SCREEN' or 'PRINTER', could you debug into the reports trace file?
    That might help you.
    Warm Regards,
    Raja.

  • How can I print directly from my ipad 3rd on AirPrint Printer HP Photosmart 5510?

    how can I print directly from my ipad on AirPrint Printer HP Photosmart 5510 and All-in-One?

    1. Run the CD provided to set the printer for network printing. The software will set the SSID and Password on the printer.
    http://i1224.photobucket.com/albums/ee374/Diavonex/fcca1bf0.jpg
    2. Use the apps to print.
    http://i1224.photobucket.com/albums/ee374/Diavonex/96a0b6ff.jpg
    3. Install the Print Control App if you want to Copy, Scan and Capture on a 3-in-1 printer
    http://i1224.photobucket.com/albums/ee374/Diavonex/62d500ec.jpg

  • How can I print directly from my iPad to my new Primax 3260 printer when I have no computer. Do I need a portable single unit Router?

    How can I print directly from my iPad to my new Primax 3260 printer when I have no computer? Do I need a portable one to one Router for the wiFi connection. My Internet is through Telstra 3G system.

    Is your printer a wifi printer or hard wired only? If it's a wifi printer then you might want to look into third party apps like Print n Share or Print Central which allow a version of air printing to non-air print printers.
    You may also want to look on the manufacturer's site. Maybe they have a fix for you.
    If your printer isn't wifi, then you will need a router to get it on a wifi network to print to it. As far as I know, there is no support for the iPad to do wired printing.

  • How do I go directly from one frame to another particular frame which is far away in the time line? (e.g the two frames are separated by 100 frames)

    How do I go directly from one frame to another particular frame which is far away in the time line? (e.g the two frames are separated by 100 frames). I mean, is it possible to take the playhead from one frame to another frame directly which is 100 frames away in the time line? Thanks for any reply.

    In the Timeline, go to the first frame and press M to put a marker on it. Go to the other frame you want to jump to and put a marker on that one too.
    Now press Ctrl+Semicolon to go to the previous marker - or Ctrl+Comma to go to the next marker.
    Andy

  • HT1515 i want to know that how can i print direct from my pc, and i also want to knw that can i directly print from my ios device.

    i want to know that how can i print direct from my pc, and i also want to knw that can i directly print from my ios device.

    To print from your PC, please check out the following iFelix article.
    To print from an iOS device (iPhone, iPod Touch, or iPad), the printer must be AirPrint-ready. If the printer is not, another option would be to use something like.
    Also you can check out this Apple Support article.

Maybe you are looking for

  • Custom WebHelp skin

    I want to disappear the SearchInput Textbox and add My LOGO on the right of the toolbar in RoboHelp HTML 8.0. But do not find a way to solve it, any suggestions?

  • R/3 Query in BI

    Dear all, Can anyone tell me how to adopt the R/3 query created in SQ01 be adopted in BI as datasource and for further modelling. Regards, M.M

  • Hava error in weblogic8.1

    my code with jspsmart to show picture in ie running in tomcat 4.0 is no           problem.but now have error when code           moving to weblogic8.1. erorr fellow:           <Error> <HTTP> <BEA-101019>           <[ServletContext(id=30587807,name=ma

  • Flash Player in MSFT Sharepoint Page Viewer

    Hi, I'm having an issue with the updated Flash Player 10.1.53.64 on a Windows XP system running IE7. The issue is specifically with loading a SWF from a Microsoft Sharepoint site that has a Web Part Page Viewer component which references a file://sha

  • Installing Windows Media Player

    I can see Windows media Player in the Applications folder but when I try and play a video I get a message "NO MEDIA PLAYER DETECTED." Can anyone help??