How to download 70000 records in OBIEE.

Hi Experts,
My report has around 70000-80000 recors, now we want to download it in excel. please suggest.
Thanks,
Sunil

Hi,
Maybe Venkat can help you out;
http://oraclebizint.wordpress.com/2008/02/07/oracle-bi-ee-101332-combining-multiple-excel-report-outputsworkbooks-to-a-single-excel-report-using-bi-delivers-bi-publisher-apis-and-vb-scripts/
Good Luck,
Daan Bakboord
http://obibb.wordpress.com

Similar Messages

  • How to download the recorded video from my ipad to my PC ?

    How to download the recorded video from my ipad to my PC?

    See this support document for assistance. Import photos and videos from your iPhone, iPad, or iPod touch to your Mac or Windows PC - Apple Support

  • HOW TO DOWNLOAD ERROR RECORDS IN LSMW

    hi abap gurus ,
    i have 2 queries .
    1) first of all how  to identify error records while running in background while using predefined progrmmes .
    2) if there are any error records how to download those error records , can any one give the logic to download the error records while handling LSMW with predefined programmes or
    bapis .
    regards ,
    dinesh .

    1) first of all how to identify error records while running in background while using predefined progrmmes .
    If there is a session for that u can moniter the session in SM35 for the error records.....
    2) if there are any error records how to download those error records , can any one give the logic to download the error records while handling LSMW with predefined programmes or
    bapis .
    Hi,
    In the field mappings and conversion rules,
    in the global section,define an internal table.
    data : begin of it_errors occurs 0,
    desc type string,
    end of it_errors.
    and where ever you have wrong or empty values for the fields,populate error there to the internal table.
    for example, if Material no is blank,i have to give err msg
    IF NOT MATMAS_MRPVIEW-MATNR IS INITIAL.
    BMM00-MATNR = MATMAS_MRPVIEW-MATNR.
    else.
    IT_ERROR-DESC = 'Material no is empty'.
    append it_error.
    SKIP_RECORD. "to skip further processing of this error record.
    ENDIF.
    like this you populate all the error records to that IT_ERRORS internal table.
    and finally download it using GUI_DOWNLOAD in the event
    '__END_OF_PROCESSING__'
    there is another way also, you can create a Session in the LSMW, and record the error records in the session then process the error records in the session
    Hope you got it
    ~~Guduri

  • How to download error records after the session method executed in BDC?

    Dear Experts,
    How to download errors in session method after executing session method. Please dn't say for BDCMSGCOLL  i have goggled all . every one answer for call transaction. In session method after executing we fill find all the success and errors in log file . But how to download this log file?
    please help me.
    Thanks
    Ravilla

    Hi Laxman,
    Please find the below process .I hope this will suits to your requirement .
    1)Write an error report.
    2)Send the record(s) in error to an error file.
    3)Create a BATCH input session with the record(s) in error.
      To store error MESSAGES ( CALL TRANSACTION )
        data:  begin of Tab_Mess occurs 0.
                  include structure bdcmsgcoll.
        data : end of Tab_Mess,
      CALL TRANSACTION ‘FK02’ USING BDC_TAB MODE ‘N’ UPDATE ‘S’
            MESSAGES INTO TAB_MESS.
           IF SY-SUBRC NE 0.
             WRITE: / Tab_MESS-TCODE, Tab_MESS-DYNUMB, Tab_MESS-MSGTYP , 
                            Tab_MESS-MSGID.
           ENDIF.
    Regards,
    Bharat Kumar

  • How to download (contacts) records from a device?

    I've noticed that iSync only syncs information of records that exist on both Mac and device (unless the option is chosen that the records on the device should be fully replaced by the Mac's contents) and updates missing records on the device. However, it does not update missing records on my Mac. So if John and Mary are on my Mac and John and Suzy are on the device, Mary will be added to the device, any info on John that has changed will be transferred to the Mac or the device according to which changes were latest, but Suzy will not be imported from the device to my Mac. But that's what I want it to do, too!
    So basically - how can I import records from a device to my Address Book for pete's sake?! (I use a Motorola Pebl, but I'm aiming to discover the general trick, if it exists that is - which it should.)
    Many thanks in advance!

    Ok, the weirdest thing just happened...
    I wanted to follow your suggestions, but backing up my phone's contacts is not possible (at least not without a lot of fuss googling feeble third-party apps, which I loathe). So I went on backing up and erasing my address book trying to d/l everything from my mobile.
    And what happened? A few seconds after erasing every record, the records that are only on my mobile suddenly appeared in my address book! It's like it only now discovers there are some records imported. Very buggy, that feels. Well, I think I'll manage from here, but it would be nice if this sort of thing would not happen...

  • How to download a Recorded Books MP3 Disc?

    When I try to download a MP3 Disc into Itunes, it does download it, but It comes in in unnumerical order which means it then goes into my Ipod in that order. It may be that Recorded books is part of the problem. But when you are listen to a book it is important that is comes to you in the correct order. Not's happening. Can anyone help me?

    Hi, welcome to Apple Discussions.
    See http://samsoft.org.uk/iTunes/audiobooks.asp
    tt2

  • How to identify new records in a table using OBIEE

    Hi,
    I have price change table as and when a record comes into this table i have to generate an alert. Then show a report with the price changes on which i can invoke an action to go into my transactional system to make the chnage. And once the change is made the process again starts to look for any new price chnage records that are recieved.
    Could anyone pls tell me how to identify new records in a table.
    Rgds

    SELECT ID, LastName, FirstName,
    RANK() OVER (PARTITION BY LastName,
    FirstName ORDER BY ID) AS SeqNumber
    FROM
    (SELECT ID, LastName, FirstName
    FROM Customers
    WHERE (LastName, FirstName) IN
    (SELECT LastName, FirstName
    FROM Customers
    GROUP BY LastName, FirstName
    HAVING COUNT(*) > 1)

  • How to create a record based on the name of a file in the file-system?

    Hi,
    With a lot of pictures I want to have a database to gather some information about these pictures.
    First question is how to generate a record based on a file in the file system?
    e.g. the pictures are "c:\fotos\2009\01\disc_001.jpg" to "c:\foto\2009\01\dis_98.jpg" .
    now i want to create records with as one of the attributes the name of the picture (not the picture itself). how to create these records (based on the information of the file-ssytem). i.e. the number of records should be the same as the number of pictures.
    any suggestions?
    any reaction will be appreciated.
    Leo

    Link to Create directory
    http://www.adp-gmbh.ch/ora/sql/create_directory.html
    You can create a list of files in the directory and read the list files from that directory.
    [UTL_FILE Documentation |http://download.oracle.com/docs/cd/B14117_01/appdev.101/b10802/u_file.htm#996728]
    [Solution using Java|http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:439619916584]
    SS

  • How to download alv grid output(with field catalog) into excel file format

    Hi all,
    How to download alv grid output(with field catalogs) into excel file format and same file has to download to application server.
    Please help.
    Regards,
    Satya.

    Hi,
    On list where alv is displayed, select export icon( green color -> ),select spread sheet.
    This will display records in Excel sheet.

  • How to download ALV  to Excel

    Hi all!
    Any body can guide me how to download records from ALV output to Excel,i have tried to downlowad using the Excel button which is coming as default in ALV display, but when i m clicking that Excel button ,i m getting the empty sheet with out data, what should i do?
    Thanks & Regards,
    palani

    Hello Raja,
    The standard icon should work!! Which icon are you using? there's one with the tool-tip text <b>Export</b>. That is the one to be used.
    If you are still not able to get that, then display the grid as a list and then use the standard menu option <i>System>List>Save-->Local File</i>.
    Hope that helps,
    Regards,
    Anand Mandalika.

  • How to download Halloween videos from YouTube?

    <By Jenny>
    It is that time of year again, the exciting Halloween! Since activities in these days are wonderful, unforgettable, impressive, crazy, and fantastic, lots of them are recorded in the form of videos and uploaded to YouTube for sharing with all the people worldwide. Do you fall in love with some interesting, meaningful and unique video files about Halloween, and want to download them as your own collections so as to enjoy them in the leisure time? If so, this thread will definitely do you a favor, for it will instruct you how to download Halloween videos from YouTube in detail.
    The software we will use here is Pavtube [YouTube Converter|http://www.pavtube.com/youtube-converter/], which is free for downloading, if you want to convert the downloaded FLV YouTube Halloween videos to other formats, you should use its retail version, if not, there will be watermarks of Pavtube stamped in the output files.
    Okay, now let’s begin.
    1. Download Pavtube [YouTube Converter|http://www.pavtube.com/youtube-converter/], install and run it.
    2. Add URL, select output format
    After launching, press “Add URL” in the main interface of this program, and then the following interface will pop up. Copy and paste URL of the Halloween videos which you want to download from YouTube into the textbox after “URL”. If you only want to use its downloading function totally for free, you should check “Only Download FLV source file”, and uncheck “Keep FLV source file”, on the contrary, if you want to convert it to other format while downloading as well as keeping the FLV source file, you should tick the checkbox of “Keep FLV source file” in advance.
    Imagine you’d like to do downloading and converting work simultaneously, in that case, you should click on the drop-down list of “Convert to” to select an output format, here I choose “iPhone MPEG-4 640X480(*.MP4)” as an example.
    Also, there are two more optional steps, namely, specify output file name and save path. Factually, this program will generate a file name and destination folder by default automatically, if you don’t like using these ones, you can type your preferred file name into the textbox after “Save as” and click on the ellipsis icon at the opposite side of “Save to” to specify a path to store the output files.
    3. Custom
    This program allows users adjusting video and audio parameters like codec, aspect ratio, bit rate, frame rate, etc. You can configure all of these items according to your own requirements. For instance, if you need change the output files to have a smaller size, and do not mind the output quality, you can adjust these parameters into smaller figures.
    4. Click “OK” to start downloading and converting
    Once all the above settings are done, you can now click “OK” button to begin downloading and converting your favorite Halloween videos from YouTube at the same time. Pavtube [YouTube Converter|http://www.pavtube.com/youtube-converter/] will finish its tasks, even batch tasks at speed, and never let video and audio go in separate ways.
    Well, just 4 simple steps, the downloading and converting work are completed, sincerely hope this guide is helpful for you to download or convert your beloved Halloween video files from YouTube.
    By the way, I know an amused website specially designed for Halloween, it provides people with games and Halloween gifts, from which you can not only gain funs, but also get cute presents, [play this game here|http://www.pavtube.com/halloween/halloween.html], and happy Halloween.
    Get more related articles here : [Pavtube Halloween|http://www.pavtube.com/halloween/]

    Try this:
    http://i1224.photobucket.com/albums/ee374/Diavonex/0f2ca63a.jpg

  • How to send multiple records in file2file and file2db or all scenarios//

    I'm able to send single record for file2file and file2db,
    how to send multiple records in file2file and file2db or all scenarios//
    what should add or make changes for dis.

    1 put Occurance 1 to Unbounded in data type of IR
    2 In the test tag of message mappings in IR,select one node and use "duplicate subtree" in its context menu
    After that,you can download the test data in XML format with the button "save document source"
    for example:
      <?xml version="1.0" encoding="UTF-8" ?>
    - <ns0:ZFileDemo xmlns:ns0="http://hand-china.com/mm/po_01">
    - <Item>
      <ItemNo>1</ItemNo>
      <Matnr>2</Matnr>
      <Text>3</Text>
      </Item>
    - <Item>
      <ItemNo>4</ItemNo>
      <Matnr>5</Matnr>
      <Text>6</Text>
      </Item>
      </ns0:ZFileDemo>

  • How to Download data - exceeding 65000 rows into multiple spreadsheet

    Hi all,
    I am having some issues with the download.
    The user is trying to download certain reports generated in the application into an excel sheet. He is not able to download beyond 65000 records. What I need is a way to automatically download the data into multiple spreadsheet if it exceeds 65000 rows (limit for excel 2000).
    Please let me know if there is any web service which does this or any other solution to this problem.
    Regards,
    t

    Hi Arie,
    thank you for your suggestion.
    I am using almost a similar procedure to download the records into excel. But the problem is its only downloading 65000 records because of the limit excel has.
    I am pasting the code which will give you a idea.
    It would be great if you help me modifying the code such that if the records exceeds 65000, remaining data gets downloaded to sheet2.
    for example if there are 70000 records, the first 65000 records gets loaded into sheet1 and remaining 5000 into sheet2.
    begin
    -- Set the MIME type
    owa_util.mime_header( 'application/octet', FALSE );
    -- Set the name of the file
    htp.p('Content-Disposition: attachment; filename="emp.csv"');
    -- Close the HTTP Header
    owa_util.http_header_close;
    -- Loop through all rows in EMP
    for x in (select e.emp_id, e.s_id, e.emp_number
    from test2_csv_download1 e where rid between 1 and 65000 )
    loop
    -- Print out a portion of a row,
    -- separated by commas and ended by a CR
    htp.prn(x.emp_id ||','|| x.s_id ||','||
    x.emp_number || chr(13));
    end loop;
    -- Send an error code so that the
    -- rest of the HTML does not render
    htmldb_application.g_unrecoverable_error := true;
    end;
    thanks
    T

  • How to download songs from ITunes Japan and France?

    How to download songs from ITunes Japan and France with a credit card and address based in the US? The system appears to not allow downloads in that fashion. Please let me know if you have any details

    This question is asked literally dozens of time a week in these forums, & I will answer, again. In order to purchase from any specific country's store, you will have to meet one of the following criteria:
    1) Have a credit card from that country with a billing address in that country.
    2) You may use an iTunes gift card purchased in that country, but the billing address rule still applies.
    This rules are mandated by the record companies not Apple. The record companies do not care for cross-border sales.
    As a new poster, just a suggestion, it might save you a little time if you use the "search" function in the upper right corner to see if your question has been asked previously. That way you don't have to wait on someone to come along to help you.

  • How to download and restore test data directory / se37

    Hello comunity,
    ahead of me lies a system refresh. in tc se37 according to several function modules i have recorded several test-data-sets in test directory. After the system refresh they will be gone. i assume there are ddic-tables behind my personally saved test data records.
    now i wonder, does anyone know a functionality (program, fm, etc.) on
    1. how to download "my" test data directory entries ?
    2. how to restore them into the test data directory once after the system refresh ?
    for sure, somebody does. please gimme a hint. answers will be rewarded with credit points.
    Thanx in advance!
    Gunther
    Message was edited by:
            Gunther Stauch

    Hmm...
    Maybe this is useful -> table <b>EUFUNC</b>
    Check the FMs from Function group <b>SEUJ</b> ,
    FM <b>RS_TESTDATA_GET</b> looks promising-reading.. and so also <b>RS_RFC_TESTDATA_GROUP_TRANSFER</b>
    Maybe you can write a small program which downloads all the contents of the table and later updates it using one of the above FMs
    Also check with the BASIS team about the options -> There are many options available like maintaining the previous settings... (I know that passwords may not be refreshed similarly this option may also be available..)
    REgards,
    Arun

Maybe you are looking for

  • [COMPUTEX 2015 Best Choice Golden Award] MSI X99A GAMING 9 ACK Motherboard

    [Taipei, Taiwan] The world's 2nd largest and Asia's largest B2B computer exhibition, COMPUTEX TAIPEI 2015 will take place from the 2nd until the 6th of June. Today, the winners of the esteemed COMPUTEX Best Choice Awards are announced. MSI X99A GAMIN

  • Updates needed to the N8!

    #1: Kill the sms-erase bug! - When writing long sms´s and you are about to delete one letter but 95% of the whole long sms is erased due to something. Have happen to me about 10 times since Oct 2010, **bleep** me off! And when saving your sms while w

  • Excess tax occuring in miro

    Hi expert I am doing a miro when simulating i am getting excess taxes, my tax are like  BED 821%, VAT 12.5% + Add Vat 2.5% - Non set off........my po taxes amount is 1000 when i m doing miro its calculating 1200. some can explain me y its taking exce

  • ES1946 (Solo) Audio controller not recognized

    Dear all, ES1946 (Solo) Audio controller is not recognized on my box. I examined dmesg, it said: es1938: OPL3 not detected at 0x1090 I've listed my dmesg and rc.conf below. Could anyone kindly look into it, and give me a hint to solve this problem? B

  • Can you use the shuffle feature within a created folder?

    if so, how?