Can we import extact Excel file in Crystal report in BO

an we import extact Excel file in Crystal report in BO
if yeh
den HOW

Hi Amit,
There is no functionality to import the data from MS Excel to Crystal reports. However we can connect to the Excel sheet as a data source and create Crystal reports against Excel.
Some popular choices in the Create New Connection folder are described here:
Access/Excel (DAO)
This option lets you connect to a supported database type (Access, Excel, Lotus, and so on).
I hope this helps you.
Regards,
Prashant

Similar Messages

  • How can i import an excel file into formscentral?

    how can i import an excel file into formscentral?

    Thanks for asking.  This is not something we currently support but you can add or vote on feature ideas:
    http://forums.adobe.com/community/formscentral?view=idea
    If you need to add a new idea click "Create an idea" under "Actions" in the top right.
    Perry

  • How to import a excel file into database?

    hi all,
    How can I import a excel file into database?
    What I need to do first?
    Thanks,
    Amy

    1. Create a conrtol file in your disc(with notepad) ex
    test_loader.ctl
    LOAD DATA
    INFILE='C:\Testcsv.csv'
    into table test_table
    FIELDS TERMINATED BY ','
    TRAILING NULL COLS
    (ID,COL1,COL2,COL3)
    The table descrption is
    scott@ORCL> desc test_table;
    Name Null? Type
    ID NUMBER
    COL1 VARCHAR2(10)
    COL2 VARCHAR2(10)
    COL3 VARCHAR2(10)
    scott@ORCL>
    2 .Create a file testcsv.csv from your excel file you want to load with " save as" csv comma seperated value
    in your hard disc c:\
    3. in dos command mode write
    C:\>sqlldr scott/tiger control=c:\testcsv.ctl log=c:\testcsv.log
    Thats it!

  • HT2470 HOW CAN I IMPORT WORD , EXCEL, POWER POINT FILES TO MICROSOFT 2011 PRELOADED IN MY I Mac ?

    HOW CAN I IMPORT WORD , EXCEL, POWER POINT FILES TO MICROSOFT 2011 PRELOADED IN MY I Mac ?

    First, don't post in all caps. It's considered shouting and very rude. As for your issue, http://answers.microsoft.com/en-us/mac

  • How to import an Excel file

    Hi ,
    I amwriting a BDC Program..
    How to import a Excel File by Browsing the Excel file from the Directory and Storing that values in the internal table.
    Can any one send the code for this,
    Points will be awarded.
    Regards,
    Jayasimha Jangam.

    Hi,
          Create a select parameter. at selection screen, use FM F4_FILENAME to get the dialog box.
    see the sample code.
    *&      Form  display_dialog
          To display the pop up dialog box
    FORM display_dialog.
    Calling FM to display File Select dialog box
      CALL FUNCTION 'F4_FILENAME'
       EXPORTING
         program_name        = syst-cprog
         dynpro_number       = syst-dynnr
        FIELD_NAME          = ' '
       IMPORTING
         file_name           = p_file .
    ENDFORM.                    " display_dialog
    FORM upload_data.
      DATA : lt_itab   TYPE STANDARD TABLE OF alsmex_tabline,
             ls_itab   TYPE alsmex_tabline,
             ls_upload TYPE ty_upload_data.
      CALL FUNCTION 'ALSM_EXCEL_TO_INTERNAL_TABLE'
           EXPORTING
                filename                = p_file
                i_begin_col             = 1
                i_begin_row             = 2
                i_end_col               = 5
                i_end_row               = 50000
           TABLES
                intern                  = lt_itab[]
           EXCEPTIONS
                inconsistent_parameters = 1
                upload_ole              = 2
                OTHERS                  = 3.
      IF sy-subrc <> 0.
        MESSAGE i000 WITH text-t04.
        LEAVE LIST-PROCESSING.
      ENDIF.
      CLEAR ls_itab.
      LOOP AT lt_itab INTO ls_itab.
        CASE ls_itab-col.
          WHEN 1.
            ls_upload-matnr = ls_itab-value.
          WHEN 2.
            PERFORM convert_to_decimal USING ls_itab-value.
            ls_upload-bmeng = ls_itab-value.
          WHEN 3.
            ls_upload-idnrk = ls_itab-value.
          WHEN 4.
            PERFORM convert_to_decimal USING ls_itab-value.
            ls_upload-menge = ls_itab-value.
          WHEN 5.
            ls_upload-meins = ls_itab-value.
        ENDCASE.
        AT END OF row.
          APPEND ls_upload TO gt_upload.
          CLEAR ls_upload.
        ENDAT.
        CLEAR ls_itab.
      ENDLOOP.
    Deleting the contents of internal table
    FREE lt_itab.

  • How to import large excel files which exceeds more then 65535 rows

    Hi there,
    I am using the latest Numbers version (v3.5.3) on the latest Yosemite (10.10.3) and wonder if and how it is possible to import an Excel file which exceeds the 65535 limit. I know MS Excel has change this limit to 156118 rows. But I don't have that program. I am only using the Mac versions.
    Thanks in advance.
    Roy

    Hello NavNak.
    My knee jerk reaction would be to split the incoming Excel file.  (How else can a gallon of water fit into a half gallon jug?)  I googled 'Excel file splitter' and up came a bunch of hits with one of them coming from this Apple Community.  Check out thread #6486876 which is How To Split Large Excel or CSV Files into Smaller Files
    Good luck.
    DaverDee

  • Re: Import an Excel file

    Serdar,
    There are three approaches to this problem
    (a) use the excel spreadsheet as an ODBC data source
    (b) read the excel spreadsheet as a tab delimited text file
    (c) use OLE
    (a) this requires defining column headers for each "section" of data in the
    spreasheet, and
    naming each "section" of data. Thus it works for spreadsheets where you
    have tight control
    over the formatting & content, and not for arbitrary spreasheets. There
    are numerous drawbacks
    to this approach, most notably that the ODBC datasource controlled by
    the ODBC Manager
    sets the file name, and not the DBResourceManager (you have to copy your
    spreadsheet into
    a fixed name, hope the other one isn't open in another session, etc etc)
    Blech.
    (b) this requires a manual step which is to read the spreadsheet into Excel
    and save it to a
    different format, or have the spreadsheets saved as comma separated
    values format (csv),
    then it is simply a parsing problem...
    (c) this requires that you sublaunch Excel through OLE and access the data
    somehow
    (issue a "select all", "copy" - then paste the data into some text
    field in Forte and read it,
    or programmatically access the spreadsheets boundaries and individual
    cell data.
    Sounds like this would work best for "arbitrary" spreadsheets for
    which special formatting
    or exporting would be problematic.
    We have had success (using the word loosely here) with a and b and not had
    occasion to do c, though it will probably yield the best flexibility for
    the effort you'll have to
    put into getting it to work. The common perception about doing OLE
    integration is that
    you are at the mercy of the application to which you are integrating - the
    OLE APIs are not
    all universally well designed, implemented, nor documented, however since
    this is Excel you
    might have lots of retail technical books to help you.
    Part of the problem is that the Excel spreadsheet file is in a proprietary
    format only understood
    by Excel, therefore just "reading" the file will give you a whole bunch of
    garbage.
    Good luck,
    John
    At 03:55 PM 1/15/99 -0800, you wrote:
    >
    >
    Can anyone tell me how to import an Excel file from any directory into the
    Forte array?
    I need to do following scenario:
    In the Forte application when the user click on the "Select" button user
    selects an Excel file from the explorer window. Than I need to read that
    Excel file and load the data into the Forte array, and I'm going to use the
    data in the program.
    If anyone has experience or any suggestions, please let me know.
    Thanks
    Serdar Askin
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>*******************************************************
    John Jamison [email protected]
    Vice President and Chief Technology Officer 415 399 7212
    Sage IT Partners, Inc. fax: 415 399 7002
    44 Montgomery Street
    Suite 3200
    San Francisco, CA 94104
    The Leaders in Internet Enabled Business Change
    * A Metamor Worldwide Company *
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    Just thinking off the top of my head here, would a variation of (c) work.
    Launch Excel and trigger a macro that outputs the spreadsheet data as a CSV
    file to a known location. Once that completes, it becames a parsing problem
    as stated below. Or, extending this thought, if you have control over the
    spreadsheet, establish a macro to output the data in CSV format. And
    include in the procedure for accessing the spreadsheet a requirement to run
    this macro after every data change. (Maybe the macro initiation can be
    automated too.)
    my 1 1/2 cents worth....
    /\/\ark /\/ichols
    John Jamison <[email protected]> on 01/17/99 12:17:57 PM
    Please respond to John Jamison <[email protected]>
    To: "Askin, Serdar H" <[email protected]>
    cc: [email protected](bcc: Mark Nichols/SEH)
    Subject: Re: Import an Excel file
    Serdar,
    There are three approaches to this problem
    (a) use the excel spreadsheet as an ODBC data source
    (b) read the excel spreadsheet as a tab delimited text file
    (c) use OLE
    (a) this requires defining column headers for each "section" of data in the
    spreasheet, and
    naming each "section" of data. Thus it works for spreadsheets where you
    have tight control
    over the formatting & content, and not for arbitrary spreasheets. There
    are numerous drawbacks
    to this approach, most notably that the ODBC datasource controlled by
    the ODBC Manager
    sets the file name, and not the DBResourceManager (you have to copy your
    spreadsheet into
    a fixed name, hope the other one isn't open in another session, etc etc)
    Blech.
    (b) this requires a manual step which is to read the spreadsheet into Excel
    and save it to a
    different format, or have the spreadsheets saved as comma separated
    values format (csv),
    then it is simply a parsing problem...
    (c) this requires that you sublaunch Excel through OLE and access the data
    somehow
    (issue a "select all", "copy" - then paste the data into some text
    field in Forte and read it,
    or programmatically access the spreadsheets boundaries and individual
    cell data.
    Sounds like this would work best for "arbitrary" spreadsheets for
    which special formatting
    or exporting would be problematic.
    We have had success (using the word loosely here) with a and b and not had
    occasion to do c, though it will probably yield the best flexibility for
    the effort you'll have to
    put into getting it to work. The common perception about doing OLE
    integration is that
    you are at the mercy of the application to which you are integrating - the
    OLE APIs are not
    all universally well designed, implemented, nor documented, however since
    this is Excel you
    might have lots of retail technical books to help you.
    Part of the problem is that the Excel spreadsheet file is in a proprietary
    format only understood
    by Excel, therefore just "reading" the file will give you a whole bunch of
    garbage.
    Good luck,
    John
    At 03:55 PM 1/15/99 -0800, you wrote:
    >
    >
    Can anyone tell me how to import an Excel file from any directory into the
    Forte array?
    I need to do following scenario:
    In the Forte application when the user click on the "Select" button user
    selects an Excel file from the explorer window. Than I need to read that
    Excel file and load the data into the Forte array, and I'm going to usethe
    data in the program.
    If anyone has experience or any suggestions, please let me know.
    Thanks
    Serdar Askin
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>*******************************************************
    John Jamison [email protected]
    Vice President and Chief Technology Officer 415 399 7212
    Sage IT Partners, Inc. fax: 415 399
    7002
    44 Montgomery Street
    Suite 3200
    San Francisco, CA 94104
    The Leaders in Internet Enabled Business Change
    * A Metamor Worldwide Company *
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

  • Can't place formatted Excel file into ID?

    Can't place formatted Excel 2010 data base into InDesign CS5 on Mac? Won't place into newest version of ID either. Will place if I unmerge cells first, but I need thousands of the cells to be merged.

    I thought you might want to do that. No, once a PDF you can't edit to your heart's content.
    So, as to the matter of thousands of cells? You may have to look that one up but there is a limit on what you can do with an Excel file and InDesign; there are only so many cells, columns and rows that can be imported and let alone worked on inside InDesign.
    And you want to merge the cells in InDesign? What ever for? If thousands of cells then edit in Excel to your heart's content and output a PDF. InDesign is not designed as a spreadsheet and not the tool you need and will really bog down with thousands of cells to merge. Just do it in Excel.

  • How can I import an ibook file back into iBook Author?

    I exported an ebook from iBook Author thinking it is the equivalent of saving the file.
    I did not save the file, I only exported it and than exited the program.
    My active file is vannished.
    I need to make some adjustments to the ebook, but can not bring it back up.
    Is there a way that I can re-import the iBook file back into iBook Author?
    When I open iBook Author and try to open the exported file the program does not recognise the ibook file...
    Thanks for your help!

    Check for previous versions of that book in iBA....even if not saved.
    You can dig into the .ibooks file by changing the suffix to zip, but you'll have to manually extract what you can from assets you find. Please only do this with your own books.

  • How can I create an Excel file?

    Hi,
    How can I create an Excel file using Forms 6i.
    What I'm doing is to create a file using TEXT_IO package an name it .XLS. If a read it double-clicking over the file, it opens Ok but If I open directly from Excel it opens the Convert dialog.
    I need to create an excel file as it was made from within Excel.
    Thank in advance,
    Benjamin

    When you are talking about subfiles, are you talking like Package contents of an application?
    Terminal application in Applications -> Utilities can give a command line grasp of all your files using the du command.
    Type
    man du
    when entering the terminal, followed by the enter key.
    Note, by default the terminal opens at the Home folder.   To navigate outside the Home folder enter "/Volumes/name of mounted drive/folder/subfolder" as your path.  If there are spaces in the name, putting quotes around the whole path can help.    If you end your du command with a > name.txt a text file with the name name.txt will be plugged into your Home directory.  That you can open with Excel and parse by /es thus giving you everything in Excel.

  • How can one  read a Excel File and Upload into Table using Pl/SQL Code.

    How can one read a Excel File and Upload into Table using Pl/SQL Code.
    1. Excel File is on My PC.
    2. And I want to write a Stored Procedure or Package to do that.
    3. DataBase is on Other Server. Client-Server Environment.
    4. I am Using Toad or PlSql developer tool.

    If you would like to create a package/procedure in order to solve this problem consider using the UTL_FILE in built package, here are a few steps to get you going:
    1. Get your DBA to create directory object in oracle using the following command:
    create directory TEST_DIR as ‘directory_path’;
    Note: This directory is on the server.
    2. Grant read,write on directory directory_object_name to username;
    You can find out the directory_object_name value from dba_directories view if you are using the system user account.
    3. Logon as the user as mentioned above.
    Sample code read plain text file code, you can modify this code to suit your need (i.e. read a csv file)
    function getData(p_filename in varchar2,
    p_filepath in varchar2
    ) RETURN VARCHAR2 is
    input_file utl_file.file_type;
    --declare a buffer to read text data
    input_buffer varchar2(4000);
    begin
    --using the UTL_FILE in built package
    input_file := utl_file.fopen(p_filepath, p_filename, 'R');
    utl_file.get_line(input_file, input_buffer);
    --debug
    --dbms_output.put_line(input_buffer);
    utl_file.fclose(input_file);
    --return data
    return input_buffer;
    end;
    Hope this helps.

  • How can i read local excel file into internal table in webdynpro for abap a

    Could someone tell me how How can i read local excel file into an internal table in webdynpro for abap application.
    thank u for your reply

    Deep,
    File manuplations...............................
    1. At the presentation level:
    ->GUI_UPLOAD
    ->GUI_DOWNLOAD
    ->CL_GUI_FRONTEND
    2. At the application server level:
    ->OPEN DATASET : open a file in the application server for reading or writing.
    ->READ DATASET : used to read from a file on the application server that has been opened for reading
    -> TRANSFER DATASET : writing data to a file.
    -> CLOSE DATASET : closes the file
    -> DELETE DATASET : delete file
    If file is on the local PC,use the function module GUI_UPLOAD to upload it into an internal table by passing the given parameters......
    call function 'GUI_UPLOAD'
    exporting
    filename = p_file
    filetype = 'ASC'
    has_field_separator = '#'
    tables
    data_tab = t_data
    p_file : excel file path.
    t_data : internal table
    <b>reward points if useful.</b>
    regards,
    Vinod Samuel.

  • How can I import a .swf file in Adobe Flash CS4?

    Hi,
    How can I import a .swf file in Adobe Flash CS4?
    Thanks.

    you can use file/import but that would be a mistake.
    you should "load" your swf, not import it.
    if you want to load it and need help, are you using as2 or as3?

  • Importing From Excel file will not import assignments correctly where there are more than one assignment per task

    I am trying to import an excel file ... see below.   It appears if you select both Tasks and Assignments tables it will not allow you to do this, says file is not in a project recognized format.  So I import Tasks tab first then run the
    wizard again and import the assignments tab while selecting merge with project option.   This works with one exception:
    If there are more than one assignment per task.  It does not merge in the 2nd assignment, only the first.
    Is there a way to import a task with 2 or more assignments?
    Background
    To figure out what the format for the file needed to be, I started with a MPP file and from project saved as Excel and selected the "Project Template" file.  Now I am trying to import that XLS to see how it works
    ID
    Active
    Task Mode
    Name
    Duration
    Start
    Finish
    Predecessors
    Outline Level
    1
    Yes
    Auto Scheduled
    DS001
    3 days
    June 17, 2014 8:00 AM
    June 19, 2014 5:00 PM
    1
    2
    Yes
    Auto Scheduled
    MT001
    3 days
    June 17, 2014 8:00 AM
    June 19, 2014 5:00 PM
    2
    3
    Yes
    Auto Scheduled
    CT001
    1 day
    June 17, 2014 8:00 AM
    June 17, 2014 5:00 PM
    3
    4
    Yes
    Auto Scheduled
    CT002
    2 days
    June 18, 2014 8:00 AM
    June 19, 2014 5:00 PM
    3
    3
    5
    Yes
    Auto Scheduled
    DS002
    1 day
    June 20, 2014 8:00 AM
    June 20, 2014 5:00 PM
    1
    6
    Yes
    Auto Scheduled
    MT002
    1 day
    June 20, 2014 8:00 AM
    June 20, 2014 5:00 PM
    2
    7
    Yes
    Auto Scheduled
    CT003
    1 day
    June 20, 2014 8:00 AM
    June 20, 2014 5:00 PM
    4
    3
    Task   Name
    Resource Name
    % Work Complete
    Work
    Units
    CT001
    Engineer1
    0
    8h
    100%
    CT002
    Engineer2
    0
    16h
    100%
    CT003
    Engineer1
    0
    8h
    100%
    CT003
    Engineer2
    0
    8h
    100%
    Andrew Payze

    Andrew,
    I did a quick test using your example although I didn't include the Predecessor or Outline Level fields to keep things a little simpler. I imported the Excel data into a new Project file with a single import of task and assignment data. It is very important
    to set up the Excel Workbook correctly. On Sheet 1 I entered the task data (Name, Duration, Start). I did not include the ID or finish date as that is redundant - Project generates its own ID and will calculate the finish date based on the start date and duration.
    On Sheet 2 I entered the assignment data basically just as you show it except I didn't include the Units.
    The data imported as expected.
    John

  • How can I import an AVCHD file to iMovie 11?

    How can I import an AVCHD file to iMovie 11?

    Support for eps was removed from Elements 11:
    Supported file formats

Maybe you are looking for

  • Invalid Password when trying to connect wirelessly

    Hey all, For some reason my wife's laptop has decided to not recognize my wireless password. I have tried changing the router's security from WEP to WPA and back. Different passes, everything. Network Setup Assistant sees the network but gives "The p

  • Resolution Problems with 30-inch Apple Display and my new iMac

    I'm not very good at computers, so I could use some help. I just bought a new iMac 24-inch, 3.06 Duo and I have an Apple 30-inch display I had connected to my MacBook Pro. Now I can't get a resolution better than 1280x800 and the cinema screen flicke

  • MacOSX / jni / jvm fmk 1.4.2 / passive long to a native static mtd get 0 !

    I am on MacOSX 10.3.8 working with the java framework 1.4.2. I have a problem with the JNI by passing long to a static native method (a class method). It is ok with a non static native method. The method is in a OnX.Test class with a signature : publ

  • Weird error with sync

    I have an older 10GB iPod with the buttons across the top. I am trying to sync it with my computer and it starts to and then brings up a weird error message. It says that it can not be done because the folder can not be found. I dont even get a chanc

  • Estimating the Database Size using Archivelog mode

    Dear OTN Forum, I need to find guidelines to estimate the additional space needed for a database in order to operate in archivelog mode. I've estimated the size of a database (Tables + indexes= 450 GB + 270 GB) operating in nonarchivelog mode, but I