How to take out a report from WEB

Hi,
I have to take out a report from web. It needs to be passed two parameters from WEB. Which is the URL that i have to put in the Explorer, to get the report (made with Reports 9i). If it it with VALUE0=PARAMETER1&VALUE1=PARAMETER2 why doesn't it work?
What i need is this part: http://.............&desformat=pdf&destype=cache&report=lgv_solicitud_viaje.rdf&valor0=200700000301

Sounds like you need to use the rwservlet. Look here for more details but an example URL for the rwservlet looks like:
http://myias.mycomp.com:7779/reports/rwservlet?server=myrepserv+report=test.rdf+userid=scott/tiger@mydb+desformat=pdf+destype=file+desname=test.pdf

Similar Messages

  • How to print out multilingual reports from the main report using Xliff temp

    Hi all,
    How to print out multilingual reports from the main report using Xliff temp?
    When I want main report call subtemplate and finish xliff tranlation
    <?for-each@section:INVOICE?><?end for-each?>
    <?import:xdo://XXIH.XXNR_XXINVPRINT_SUB.en.FI/?>
    <?start:body?><?call:Header?><?call:Line?><?call:Weights?><?call:Banks?><?end body?><?call:Footer?>
    Prints out fine with Finnish translation
    But if I want in main program to check what language is used e.g.
    if trx_number = 142 call Finnish translation and if trx_number =144,
    call English translation.
    <?for-each@section:INVOICE?><?end for-each?>
    <?if:TRX_NUMBER=’142’?>
    <?import:xdo://XXIH.XXNR_XXINVPRINT_SUB.en.FI/?>
    <?start:body?><?call:Header?><?call:Line?><?call:Weights?><?call:Banks?><?end body?><?call:Footer?>
    <?end if?>
    <?if: TRX_NUMBER=’144’?>
    <?import:xdo://XXIH.XXNR_XXINVPRINT_SUB.en.US/?>
    <?start:body?><?call:Header?><?call:Line?><?call:Weights?><?call:Banks?><?end body?><?call:Footer?>
    <?end if?>
    Prints out always in English and never the Finnish translation.
    Program goes fine to if branch but does not print out Finnish
    Does anybody know what could be wrong?
    BR
    Kari

    Thanks Amit,
    I have two layout, main-layout and sub-layout
    Main layout call subtemplate
    I have registered layout and xliff-file
    Main template
    Localized Templates
    File Name           Language Territory
    XXNS_INVOICE_MAIN.rtf      English
    SUB template
    Localized Templates
    File Name           Language Territory
    XXNS_INVOICE_SUB.rtf      English
    Translatable Template
    File Name           Language      Territory
    XXNS_INVOICE_SUB.rtf      English      United States
    Available Translations
    Language Territory Progress
    English Finland Complete
    If main report call subtemplate and finish xliff tranlation
    <?import:xdo://XXIH.XXNR_XXINVPRINT_SUB.en.FI/?>
    Prints out fine with Finnish translation
    But if I want in main program to check what language is used e.g.
    if....
    <?import:xdo://XXIH.XXNR_XXINVPRINT_SUB.en.FI/?>
    .....end if;
    if....
    <?import:xdo://XXIH.XXNR_XXINVPRINT_SUB.en.US/?>
    .....end if;
    Prints out always in English and never the Finnish translation.
    Program goes fine to if branch but does not print out Finnish
    Do you it's set up problem or program problem
    BR
    Kari

  • How to cancel a report from web?

    i want to cancel some reports i have made from web.
    i have made two kinds of reports,one from web using /cgi-
    bin/rwcgi60.exe?runrep... and another from DOS command line
    using rwcli60.exe.Then i use /cgi-bin/rwcgi60.exe/showjobs?
    server=myreportserver and the web shows all the report jobs.
    i can kill report jobs from the web while clicking on the
    coloum 'job status',but i can't cancel all the jobs.that is to
    say i can cancel the jobs made from rwcgi60.exe?runrep... and
    cant cancel the jobs made from Dos because i have no privileges
    and the two kinds of reports belong to different owners.
    i can cancel them all from report queue manager using
    ADMINISTRATOR,but i must made the two kinds of report from web
    and dos and must cancel them all from web.
    anybody can help me how to solve the problem?
    another question:can i assign the report's owner to a special
    personal while using rwcgi.exe and rwcli60.exe?
    thanks in advance!

    Hi,
    The below link will be very useful for one who need idea on calling Oracle Report from Java Application,
    http://www.oracle.com/technology/products/reports/htdocs/getstart/examples/reportswebservice/index.html
    Thanks & Rgds,
    M T

  • How to stop the report from Web!

    hi,all!
    Now I can start a report from Web with schedule parameter!Can you tell me how to stop the report via the Web server?Or tell me with which patameter.Thank a lot.

    hello,
    there is a CGI/Servlet command called killjob which you pass the job-id of the job you want to kill.
    regards,
    the oracle reports team --pw                                                                                                                                                                                                                                                                                                           

  • How to download data in excel from web report in sap ?

    how to download data in excel from web report made  in sap abap?
    through tcode smw0.

    for exemple using
    MS_EXCEL_OLE_STANDARD_DAT

  • How to take unreconcilled transactions report for a date range ?

    hi all,
    How to take unreconcilled transactions report for a
    data range ?
    we have taken unreconcilled transactons from
    external reconcillation using filter option mentioning
    range of dates,But when we take print out using PLD,
    it showing unreconcilled transactions for all dates.
    But our client requires it as a standard report from SAP ?
    Our client is using SAP B1 2005B PL39.
    Jeyakanthan

    Hi
    Financials -> Financial Reports -> Accounting -> General Ledger.
    In the 'Display' dropdown select, 'Unreconciled' .
    Hope this should help you.

  • Take out multiple values from a db and handle them in an applet.

    I have a db with tables. I want to take out several values from them and make them visible in a JFrame (or applet).
    I dont know how to do. I have an app that connects to the db and selects the values and puts the Strings in a Vector. But now then?
    I have looked at examples that retrieve Strings but not vectors, isn't that possible?

    Hi,
    On initialization of your frame you can loop over your vector and display them.
    Now the problem is in what type of component do you want to put your data.
    I can give you an example.
    What you can do is create a String which will contain all the data from
    your vector and set that string to the component.
    Example:
    Vector data;
    String result;
    for(int i=0; i < data.size(); i++) {
    result += (String)data.elementAt(i) + "\n";
    Now you need to put the string into a component which is easy done.
    Let take a textarea component.
    JTextArea txaTest = new JTextArea();
    txtTest.setText(result);
    Now all the data will be shown in the textarea component on your frame.

  • How to Call a jasper report from Oracle Forms 6i.

    Hi
    Can anybody tel me how to Call a jasper report from ORacle Forms 6i.
    Thanks & Regards
    Bango

    Forms 6i client/server? Use the HOST command to call the report. Since a Jasper report is just a call to a url, it will be something like:
    v_url := '<your url to the report>';
    host ('cmd /c start '||v_url);If it's web Forms 6i it even easier. Just use web.show_document(<url>).

  • My ipad will not come on.  i tried to restore and get error message 1603, dont know how to take out itsw

    my ipad will not come on.  i tried to restore and get error message 1603, dont know how to take out itsw which it tells me to do.

    Error 1603
    Follow the steps listed below for Error 1604. Also, discard the .ipsw file, open iTunes and attempt to download the update again. See the steps under Advanced Steps > Rename, move, or delete the iOS software file (.ipsw) below for file locations. If you do not want to remove the IPSW  in the original user, try restoring in a new administrator user. If the issue remains, Eliminate third-party security software conflicts.
    Error 1604
    This error is often related to USB timing. Try changing USB ports, using a different dock connector to USB cable, and other available USB troubleshooting steps (troubleshooting USB connections. If you are using a dock, bypass it and connect directly to the white Apple USB dock connector cable. If the issue persists on a known-good computer, the device may need service.
    If the issue is not resolved by USB isolation troubleshooting, and another computer is not available, try these steps to resolve the issue:
    Connect the device to iTunes, confirm that the device is in Recovery Mode. If it's not in Recovery Mode, put it into Recovery Mode.
    Restore and wait for the error.
    When prompted, click OK.
    Close and reopen iTunes while the device remains connected.
    The device should now be recognized in Recovery Mode again.
    Try to restore again.
    If the steps above do not resolve the issue, try restoring using a known-good USB cable, computer, and network connection.
    The above is from the 2nd link below.
    Update and restore alert messages on iPhone, iPad, and iPod touch
    http://www.buybuyla.com/tech/view/012953a0d412000e.shtml
    iOS: Resolving update and restore alert messages
    http://support.apple.com/kb/TS1275
    iPad: Unable to update or restore
    http://support.apple.com/kb/ht4097
     Cheers, Tom

  • How to find out BW reports

    Moderator nessage - welcome to SCN
    But before posting, please take the time to read the rules of engagement - please do not ask vague, basic questions. And please make sure that you post to the correct forum.
    Hello All,
    Pleas any body can help me how to find out BW reports & what are the steps ?
    Thanks & Regards
    Tejaswi Gupta
    Edited by: Rob Burbank on Apr 6, 2009 5:16 PM

    hi,
    goto SE81 and click on the corresponding application like fi
    You will get the standard packages for FI with the programs available
    Please check out this link
    http://www.sap-img.com/financial/useful-reports-tcode-in-sap-financial-accounting.htm
    or
    Check this Transaction: SAP1
    U will have reports based on the area.
    or
    Look at the table TADIR --> see only the programs, even you can look at based on the Development class wise
    If you find it useful mark the points
    Regards,
    GNK

  • How can i run a reports from forms

    Oracle forms 9i
    Hai All
    I am using oracle forms 9i.
    From the forms i need to generate a reports how can i generate a reports from there
    Regards
    Srikkanth.M

    there are hundreds of examples in this forum. Do a search

  • How to call a detail report from a master report in 11g?

    How to call a detail report from a amster report in 11g?
    We have a requirement to call a detail report based on the invoice id that will parsed from the master report in OBIEE 11g. Any ideas sugegstions will be greatly appreciated.
    Thanks,
    Edited by: user8957415 on Jul 31, 2012 9:04 AM

    Check these links
    http://gerardnico.com/wiki/dat/obiee/master_detail
    http://prasadmadhasi.com/2011/11/13/master-detail-event-in-obiee-11g-and-pass-multiple-events-to-one-detail-report/
    Hope these helps

  • My iTouch is being recognized as a digital camera and cant take out my music from it.

    i have an iphone and an ITouch and also a Ipod nano and and i just got a brand new computer cause my old 1 died. i still have music in my ipod iTouch and iPhone. i want to fill my new laptop with music. but since my iTouch and iPhone are both being read as a digital camera i can only take out photos from both. witch right now i dont care about the photos. my iPod nano on the other hand is being read as a storage device meaning i can take out the music out of the nano. i want to make it so i can also take out my misic from my iTouch and iPhone. in need of assistance. tried a bunch of methods but im tired of it. im im going to need professional help.

    - It is normal and expected for the iPod to be seen as a camera
    - What do you mean " when I put it in hard disk mode"?  iPod touches do not have a disk mode.
    - Does the iPod show in iTunes?  If not try:
    iPhone, iPad, or iPod touch: Device not recognized in iTunes for Windows

  • HOW TO  FIND OUT TABLE DESCRIPTION FROM JDBC?

    HOW WILL FIND OUT TABLE DESCRIPTION FROM JDBC?

    Have a look at ResultSetMetaData
    getColumnCount()
    getColumnName(int)
    getColumnTypeName(int)
    getColumnDisplaySize(int)
    ***Annie***

  • How to find out company code from a plant ?

    Hello friends,
    I have to modify a program that uses FM "BAPI_COMPANYCODE_GET_PERIOD".   For that, we have to export company code ID.  Currently it is hard coded with one company code.  Now we want to make this program usable by all company codes.  So instead of hard coding, I would like to dynamically find out company code based on the plant.   So I want to know - how to find out company code from a plant ?  Is there any table that has plant to company-code assignment data, or any other FM/BAPI to get this info ?
    Thanks,
    - Chetan

    hi
    u can find this from table T001K
    or just goto EC01
    here click on STRUCTURE>NAVIGATION
    double click on co code u will get the list
    u can slo try this in EC02
    regards
    kunal

Maybe you are looking for

  • Lenovo 3000 N200 ( 0769- A63) 0769 BAG processor upgrade limit and type

    i have folloing system properties TYPE 0769-A63 07/12 Name Lenovo 3000 N200 Notebook (0769-A63) Specs Based on 0769-BAG: T2330(1.6GHz), 2GB RAM, 120GB 5400rpm HD, 15.4in 1280x800 LCD, Intel X3100, CDRW/DVDRW, Intel 802.11abg wireless, Bluetooth, Mode

  • ITunes music will play on iTunes but will not play in my iPod

    I downloaded music from iTunes. It plays on my computer and shows up on my iPod. However, it will not play. When I attempt to play the iPod says "now playing" skipping all 25 tracks. The music is in the purchased, artist, music, etc. folders. Any tho

  • Newest update for itunes did not install properly, error 7 (windows error 126)

    Is there anybody else out there that are having problems updating there itunes.  I keep getting error 7 (windows  error 126).

  • Ipod error - connecting to PC

    Hi there, this is the first time I have used this forum so bear with me. I recently wanted to transfer some tunes to my IPOD I connected the USB in the normal way, however, I got an error message " One of the USB devices attached to this computer has

  • Exporting from swf

    i have a large swf (900 x 600) and need to export a printscreen image when the user clicks a button. it is possible to export the printscreen as another swf? and how would one do this? any tutorial recommendations? i have read some tutorials about ho