Unable to import the excel template into form in HFM

Has any one came across this issue that I am facing now?
I have a form in HFM and I exported the form to Excel and the export works fine. but when I import the excel template into form, it was not successful. I have 250 rows in the template. I deleted 50 rows and tried to import and it worked fine . Is there any row limit on this?
Below here is the error message that I am getting
An error occured. Please contact your administrator
Error Number: - 2147467259
Error Description:007~Unexpected error~The function returned |.
Error SOrce: request Object
Page on which error occured:/hfm/data/processImportWdeffromExcel.asp
I appreciate any ideas on this

What version of HFM and Excel?
Make sure you honor the file extension requirements for 2007 docs and import the same as they are exported.

Similar Messages

  • Unable to import the user certificate into the Oracle Wallet Manager

    Hi,
    I am configuring the External Authentication plugin using the password filters.
    i am using the version 10.1.0.5.0 version of Oracle Wallet manager
    inorder to do that i am enabling the SSL mode.
    to enable the SSL mode i followed the some steps in OWM and OCA admin and user console.
    when i approved a certificate as admin and importing to the Oracle Wallet Manager, i got an error that
    User Certificate Installation failed.
    Possible errors:
    - Input was not a valid certificate
    - No matching certificate request found
    - CA certificate needed for certificate chain not found.
    Please install it first
    can anyone help me how to resolve this problem.

    hi,
    thanks for your reply pramod
    I tried to import the two certificate files(rootca.crt and server.crt). but i am got the same error.
    what may be the problem.

  • Unable to import the Internet servivce into Production Environment

    Hi,
    We put the internet service and its HTML templates in a custom package for integrated ITSMobile. We got everything but the internet service ZXXX in the production. Has anyone come across this before? We were able to transport to the quality system. But it did not create the internet service in the production environment. Is it authorization issue? Your input will be highly appreciated.
    Regards,
    Subbu

    Hi Subbu,
    I suggest you to as your basis guys how are familiar with transports between systems. They will find out what the reason is. Without being able to look into transport protocols it is unlikeliy that someone here can advise you.
    Regards,
    Klaus

  • Java Error while executing the excel template in the BIP 10g report server

    Hello Gurus,
    While we are executing the excel template we are getting the following java error and the report cannot be rendered to user who triggers the report. Where as the same excel template is generating output when user run it against the same data locally.
    "oracle.apps.xdo.servlet.scheduler.ProcessingException: [ID:652] Document file to deliver not found : C:\Oracle\bipublisher\oc4j_bi\j2ee\home\applications\xmlpserver\xmlpserver\xdo\tmp\xmlp3307tmp
    at oracle.apps.xdo.servlet.scheduler.XDOJob.deliver(XDOJob.java:1172)
    at oracle.apps.xdo.servlet.scheduler.XDOJob.execute(XDOJob.java:495)
    at org.quartz.core.JobRunShell.run(JobRunShell.java:195)
    at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:520)"
    We have tried with designing the .rtf template for this report and we are able to generate the report form the server. Please let us know the cause for this error in the server and way to rectify the exception from the report server.
    Thanks,
    Kamath.

    "oracle.apps.xdo.servlet.scheduler.ProcessingException: [ID:652] Document file to deliver not found : C:\Oracle\bipublisher\oc4j_bi\j2ee\home\applications\xmlpserver\xmlpserver\xdo\tmp\xmlp3307tmp
    imho it's about empty result file
    Data are there
    may be yes but is some data from all for report itself ?
    in other words data can be in output ( in xml ) but report can filters data and so report doesn't have appropriate data to representation ( it's assumption for error )
    Data are there, when we are using rtf template, it is generating the output.
    if you sure about data for report and on this data report works fine by bip desktop, so no ideas, only SR
    btw you can first check my assumption and try to catch "no data found" in template
    also you can check data itself, is it well-formed xml

  • Unable to import the views in RPD.

    Hi,
    Case1:Unable to import the views in OBIEE 11g by using "Oracle inOraDb 11g_Home1" drivers but able to import the Tables in RPD.
    Case 2:Unable to import the Table in OBIEE 11g by using ."Data Direct 6.0 Oracle wire protocol" drivers but able to import the Views in RPD.
    My requirement is need to import some views and tables in RPD.How to achive this.kindly let me know.

    Hi,
    I have tested with SH Schema.
    I have one 'View' called profit in sh schema
    http://i1159.photobucket.com/albums/p629/bose-obiee/shschema.jpg
    The schema in import type without 'Views' Option it is not showing
    http://i1159.photobucket.com/albums/p629/bose-obiee/withoutviews.jpg
    clicked Back and selected 'Views' Option and checked under sh schema. am able to see the 'Profit Table.
    http://i1159.photobucket.com/albums/p629/bose-obiee/withviews.jpg
    selected what are all the table i need to import from sh schema with Profit view and clicked the single arrow symbol to move sh schema from 'data source view' to 'repository view' and clicked 'Finish'
    It has imported all the tables and view into the rpd from SH Schema.
    http://i1159.photobucket.com/albums/p629/bose-obiee/View.jpg
    Regards,
    Bose

  • How to import the internal table into subroutine as parameter

    how to import the internal table into subroutine as parameter, and its structure can be recognized inside the subroutine

    Hi Yong,
    try this:
    parameters: p_tabnm like dd03l-tabname.
    field-symbols: <fs_tabname> type standard table.
    data: itab_ref type ref to data.
    create data itab_ref type standard table of (p_tabnm)
                         with default key.
    assign itab_ref->* to <fs_tabname>.
    select * from (p_tabnm) into table <fs_tabname>.
    perform subroutine tables <fs_tabname>
                       using p_tabnm.
    *&      Form  subroutine
          text
         -->P_<FS_TABNAME>  text
         -->P_P_TABNM  text
    form subroutine  tables   p_tabname type standard table
                     using    p_tabnm.
    Here p_tabname already has the structure of the table you gave as input
    parameter
    endform.                    " subroutine

  • 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!

  • 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

  • Im unable to import an mp3 track into garageband. I used to be able to just click and drag into GB. Advice please?

    Im unable to import an mp3 track into garageband (version 08). I used to be able to just click and drag into GB. Advice please?

    Arch Blr wrote:
    Im unable to import an mp3 into garageband
    http://www.bulletsandbones.com/GB/GBFAQ.html#filewontimport
    (Let the page FULLY load. The link to your answer is at the top of your screen)

  • Unable to import video from camcorder into iMovie HD

    I am using a Mac mini PowerPC G4 (1.5). I recently bought a Sony Handycam DCR-DVD 106E camcorder that uses DVD discs. The camcorder has no Firewire (iLink) output so I have inserted the DVD into my external DVD writer/player. I can play the footage via the Mac Mini's DVD player software but I cannot import the video clips into iMovie HD.
    The icons on the DVD appear to be PC files and are not compatible. Does anyone know how I can take off the footage I have shot and get it into iMovie HD, please?
    My secondary thought is that maybe I need to be able to convert the footage clips into Quicktime files, maybe, but I don't know how to go about this, if, indeed, that is the solution.
    Please, please help
    regards, Huguenot

    Your camcorder is incompatible with iMovie 5, which is designed to use DV streams from tape, imported via firewire.
    If your camcorder uses DVD disks it likely produces files in mpeg2 format, which is the standard, compressed, final delivery format of a DVD and is not intended for further editing, and cannot be imported into iMovie 5.
    I am a bit puzzled as to why you chose that camcorder!
    Ideally you should take it back and exchange it for a camcorder that records onto mini DV tape and which has a firewire output.
    As it is, firstly you cannot import the footage due to lack of firewire. Secondly, in order to use iMovie at all you will have to convert the mpeg2 files into a DV files which is what iMovie uses.
    For that you need mpegStreamclip:
    http://www.apple.com/downloads/macosx/video/mpegstreamclip.html
    which is free, but you must also have the Apple mpeg2 plugin :
    http://www.apple.com/quicktime/mpeg2/
    which is a mere $20.
    Another possibility is to use DVDxDV:
    http://www.dvdxdv.com/NewFolderLookSite/Products/DVDxDV.overview.htm
    which costs $25.
    But any way you do it, there will be penalty in terms of quality.

  • 'File in Use' message is received when one user is in the report and another user tries to open the Excel template

    ‘File in Use’ message is received when one user is in the report and another user tried to open the excel template. how to make excel template shared for multiple users so the users don’t see the ‘File in Use’ message?

    Hi Febin,
    In addition to others’ replies, we can create a shared workbook and place it on a network location where several people can
    edit the contents simultaneously. For example, if the people in your work group each handle several projects and need to know the status of each other's projects, the group can use a shared workbook to track the status of the projects. All persons involved
    can then enter the information for their projects in the same workbook.
    Regarding how to do this,
     the following article can be referred to reference.
    Use a shared workbook to collaborate
    http://office.microsoft.com/en-in/excel-help/use-a-shared-workbook-to-collaborate-HP010096833.aspx
    Best regards,
    Frank Shen

  • HCI error - unable to import the data because the row is duplicated in the master data

    Hi, i am working on HCI while i am mapping the data from ECC to HCI target table i am getting this error :Unable to import the data because the row is duplicated in the master data .Could you please help me how to solve this
    Message was edited by: Mariana Mihaylova

    Moved to Process Integration (PI) & SOA Middleware as per New SAP HANA Cloud Integration (HCI) content category (unfortunately, I can't edit the discussion and add the category as I'm not a moderator in this space). Perhaps Mariana Mihaylova can help.
    Susmitha Yerradhodi please read and follow The SCN Rules of Engagement - in particular, the more details you provide, the better the chances of getting your question answered. (e.g. "HCI" is not a helpful subject)

  • Is there any interface to import the XLIFF file into BO Translation Mgr?

    Hi,
    In BOE XI 31 SP2, is there any interface to import the XLIFF file into BO Translator Mgr?  
    Since the client has 6 kinds of language and 200+ different reports. That means in order to maintain report multi-lingual, the client  needs to maintain 1200(6*200) XLIFF files. Because importing all the XLIFF files one by one into BO Translator Manager manually is effective less and cannot meet the needs, the client would like to import the XLIFF files  in batch through code.
    So is there any Interface or Command Line to import the XLIFF file into BO Translation Mgr?  
    Any suggestion is appreciated.
    Best Regards,
    Vincent Li
    Edited by: Vincent Li on Feb 2, 2010 10:39 AM
    Edited by: Vincent Li on Feb 2, 2010 10:43 AM
    Edited by: Vincent Li on Feb 2, 2010 10:48 AM

    Hi Ted,
        Thanks for the info.
        So we also don't provide COMMAND LINE for the feature neither, right?
    Best Regards,
    Vincent Li
    Edited by: Vincent Li on Feb 3, 2010 11:01 AM

  • I have scanned photos using an Epson V500 scanner set to jpeg format using the least compression (highest quality) setting. When I try to import the scanned jpegs into iPhoto I get an error  message saying "The file is an unrecognized format."  But if I

    I have scanned photos using an Epson V500 scanner set to scan using jpeg format at the highest quality (least compression) setting.  When I try to import the scanned jpegs into iPhoto, I get an error message from iPhoto saying "The file is an unrecognized format."  But if I reduce the quality setting on the Epson scanner to just slightly below highest quality, the images import into iPhoto just fine.  Why won't iPhoto accept jpegs scanned at the highest quality setting?  Wondering?

    What scanner format settings dis you use?  Are these color photos? If they are B/W did you scan as grayscale images?  That could be the problem.  
    Are you able to open them with Preview?  If so do a Save As, select full quality and save as a jpeg with a new file name.  See if that file will import and work as intended. 
    OT

  • I have iMovie 8.0.6 and an iPhone 4S.  I took hours of videos on vacation (Australia and New Zealand) and want to make a movie.  I've imported the first batch into iMovie and started the project.  I just realized that I shot both horizontally and vertical

    I have iMovie 8.0.6 and an iPhone 4S.  I took hours of videos on vacation (Australia and New Zealand) and want to make a movie.  I've imported the first batch into iMovie and started the project.  I just realized that I shot both horizontally and vertically and when I preview (on full-screen) what I've combined, first it's wide-screen, then it's tall, narrow with wide black sides. 
    The film looks choppy, no flow, since it alternates horizontally and vertically.
    I can import the vertical clips two ways:  "Full-Original Size", or "Large 960x540."  But the vertical clips have very short, fat people.
    This didn't happen with my Flip HD; the movies are smooth and terrific.  My heart is breaking.....please, how can I make the videos match?

    Yes, I'd like to use all the video I shot, put it together with music, titles, etc. and make it consistant.  when it goes from full screen to this vertical, narrow clip, it's very awkward.....and it's so narrow, it's hard to see what I'm looking at; my eyes don't make the adjustment quickly.

Maybe you are looking for

  • Could you please help us for asset depreciation postings are not posted

    HI can any body help, while creating asset  acqistion date 22 january 2010 and  Capitalized date is December 18 2009, but depriciation caliculating from  acqisition date , where is the mistake happen we did not get , please guide me thanks Ranamka

  • Adding binary numbers in java please help!!

    Hello all, im a total newbie to java and i need your help urgently, i have two variables that are integers, that store binary numbers i.e. int tmpIntOne, tmpIntTwo; tmpIntOne = 1010; tmpIntTwo = 1110; i want to add these numbers together and return a

  • Ipad mail issues....

    Hi all, I have been using my ipad Mail account for two different hotmail accounts and an academic one too. Only issue is I can't seem to be able to create sub folders on my ipad. Does anyone know how you can do this? Doing it on my academic account (

  • PC Suite - Sync - Settings Dialog Does not Appear

    Installed PC Suite. Selected Synchronise and the Synchronise dialog appears. The Settings dialog does not automatically appear as stated in Help. Pressing the "Settings" button does not cause the Settings dialog to appear. Pressing the Synchronise bu

  • Image upload directory or server

    I want to upload imges file into directory and want to use for Database. I could not get any option in the Form of Dreamweaver for image uploading. please help me