Import/export from notes?

I have a bunch of notes from my previous PDA that I'd like to get into the iPhone notes application -- lists of restaurants, books I want to read, etc.
Is there any way to get text into the notes application without manually typing all of it? Or if I take notes there, is there any way to get the information out of the iPhone aside from reading it off the screen?
Copy & paste would handle it (I could email the notes to myself and copy from there), but alas...

A workaround I just thought of (which might not be worth it if this is a feature that you think might be added to the iPhone soon), is to SMS the notes to yourself. SMS messages stay on the phone until you delete them and, if there are any URL's you want, the SMS app on the iPhone will turn those into clickable links that will launch Safari.

Similar Messages

  • Memory Limit for "IMPORT/EXPORT from MEMORY ID" statement

    Hi All,
    Can anyone tell me whether there is any memory limit exists for "IMPORT/EXPORT from MEMORY ID" statement.
    Like may be we can transfer xx MB of data via this......or it is open, we can transfer any amount of data to ABAP memory via this.
    Regards
    Munish Garg

    1. Each user sessions have external sessions and each external sessions have internal sessions.
    2. The programs being executed in the internal sessions can access ABAP memory
    3.ABAP memory is a storage area for internal program variables like fields, structures, internal tables,,They can be passed  between internal sessions of an external session.
    4. you can transfer data through ABAp memory using IMPORT and EXPORT statements
    5. after IMPORT FROM MEMORY ID <id> , you can use sy-subrc to check the existance of the cluster ID. here sy-subrc is not used to check whether the Import was successful or not.

  • How to import/export   from d2k

    hi
    hi please could you help me in how to import/export from d2k.
    M.P.Kiran Kumar

    FUNCTION open_ldr RETURN varchar2 IS
    out_file Text_io.File_Type;
         v_filename varchar2(255);                              
    Begin
    out_file := Text_IO.Fopen('C:sqlldr.ini', 'R'); /* create a file so that u can store sqlldr path first time it wont be there so write the path after verifying */
    text_io.get_line(out_file,v_filename);
    --message(v_filename);
    return(v_filename);
    Exception when others then
         --message('Check For Sqlldr73.exe or Sqlldr*.exe');
    v_filename := get_file_name(File_Filter=>'sqlldr Files (*.exe)|*.exe|');
    out_file := Text_IO.Fopen('C:\sqlldr.ini', 'W');     
         Text_IO.Put(out_file,v_filename);
    Text_IO.Fclose (out_file);
    if v_filename is null then
         Message('Please Select The Sqlldr Path ');
         Message('Please Select The Sqlldr Path ');
         raise form_trigger_failure;
    end if;
    return(v_filename);
    End;
         Declare
              The_userid varchar2(100):='';
              The_Password varchar2(100):='';
              The_connectstring varchar2(100):='';
              Con_Info varchar2(100):='';
              the_command varchar2(200):='';
              v_filename varchar2(100);
              cursor c1 is select tname from <table_name > /* create a table in ur schema and put all the tables which u want to export */ where tabtype = 'MASTER';
         Begin
              v_filename:=open_ldr;
         The_userid := Get_Application_Property(UserName);
                   The_Password := Get_Application_Property(Password);
                   The_connectstring := Get_Application_Property(Connect_String);
                   Con_Info := The_userid||'/'||The_Password||'@'||The_connectstring;
                   for c1rec in c1 loop
                   C2K_TRUNC_HLL_MASTERS(c1rec.tname);
                   the_command := v_filename||' Control=c:\'||c1rec.tname||'.ctl userid='||Con_Info; -- Change This According To The Path
                   -- message(the_command);message(the_command);
    Host(the_command);
                   End Loop;
                   the_command := v_filename||' Control=c:\control'||'.ctl userid='||Con_Info; -- Change This According To The Path
                   host(the_command);
                   Exception When Others Then
                        Message('Error'||' '||sqlerrm);
                        Message('Error'||' '||sqlerrm);
         End;
    If u have any problems please contact me on [email protected]
    furnish the details properly .
         

  • IMPORT/EXPORT FROM DATA BUFFER

    Hi,
    I have some code like this:
    DATA: b type xstring.
    DATA: a type xstirng.
    EXPORT '1234' TO DATA BUFFER b.
    IMPORT a FROM DATA BUFFER b.
    for some reason a does not get set to the value that I assigned to b.
    However, this code works:
    DATA: b type xstring.
    DATA: a type xstirng.
    EXPORT some_internal_table TO DATA BUFFER b.
    IMPORT a FROM DATA BUFFER b.
    Does anybody know why internal tables work but other data types do not?
    Thank you.

    EXPORT '1234' TO DATA BUFFER b, not working because, you did not assign a variable name to '1234' to be stored as in data buffer B.
    Change the code to:
    DATA: b type xstring.
    DATA: a(4) type c.
    EXPORT a = '1234' TO DATA BUFFER b.
    IMPORT a FROM DATA BUFFER b.
    It's working in the second case because, some_internal_table  is the name of the variable in databuffer B and you are importing into the same variable in IMPORT
    Regards
    Sridhar

  • IMPORT & EXPORT from/to compressed files directly...

    for newbies a tip to import(export) directly to(from) compressed files using pipes . Its for Unix based systems only, as I am not aware of any pipe type functionality in Windows. The biggest advantage is that you can save lots of space as uncompressing a file makes it almost 5 times or more. (Suppose you are uncompressing a file of 20 GB, it will make 100 GB) As a newbie I faced this problem, so thought about writing a post.
    Lets talk about export first. The method used is that create a pipe, write to a pipe(ie the file in exp command is the pipe we created), side by side read the contents of pipe, compress(in the background) and redirect to a file. Here is the script that achieves this:
    export ORACLE_SID=MYDB
    rm -f ?/myexport.pipe
    mkfifo ?/myexport.pipe
    cat ?/myexport.pipe |compress > ?/myexport.dmp.Z &
    sleep 5
    exp file=?/myexport.pipe full=Y log=myexport.logSame way for import, we create a pipe, zcat from the dmp.Z file, redirect it to the pipe and then read from pipe:
    export ORACLE_SID=MYDB
    rm -f ?/myimport.pipe
    mkfifo ?/myimport.pipe
    zcat ?/myexport.dmp.Z > ?/myimport.pipe &
    sleep 5
    imp file=myimport.pipe full=Y show=Y log=?/myimport.logIn case there is any issue with the script, do let me know :)
    Experts, please have a look...is it fine ? (Actually I dont have Oracle installed on my laptop(though have Fedora 6) so couldnt test the scripts)
    I posted the same on my blog too. just for bookmark ;)
    Sidhu
    http://amardeepsidhu.blogspot.com

    actually, only the compression thing runs in the background. rest proceeds like normal only. just instead of giving normal file we use pipe as a file.
    nice article about named pipes
    Sidhu

  • Import/Export from Memory ID

    hie guys
    im in a program that is importing values from a memory id however there are no values being imported and thus i want to find out wer the memory id is being given data. i tryd the wer used list and it dd not give me anything, please assist

    I managed to find the program where the export statement for the memory ID was and also where the import statement was and managed to resolve my error.
    many thanks.

  • Import/Export from Access MDB to Oracle DB

    Dear Friends,
    I need to import a huge table from access to Oracle. I tried to export the file from MS Access to Oracle, it is giving error. I tried another way of doing , i first exported the data to SQL server and then using Export/Import utility of SQL Server, it has imported succesfully. I am not sure which is the best way to import data from ACCESS to Oracle.
    Kindly suggest,
    Regards,
    Vinay

    Another approach you might try goes something like this:
    1. In Access, link the destination Oracle table (for example, via File, Get External Data, Link Tables...).
    2. In Access, create an Append Query to select rows from your Access table and insert them in to the linked Oracle table.

  • Why is the option to import/export bookmarks not there?

    I'm trying to import my old bookmarks from a HTML or JSON file (I have both) into Firefox 6 under Ubuntu. The following page should explain how:
    http://support.mozilla.com/en-US/kb/Importing%20Bookmarks%20from%20an%20HTML%20File#os=linux&browser=fx6
    However the button Import/Export doesn't show up in the bookmarks library. Instead, there's just gray nothingness. What is causing this and how do I fix it?

    Yes, the original reply is a little unclear. What you have to do is make sure your menu bar is showing. That's the bar with File, Edit, History, etc. If not, Click Firefox on the top left to drop down the menu and click View then Toolbars, then Menu Bar. Now the bar with your menus should show on the top. Then click the Bookmarks Menu which will drop down your bookmarks and a couple commands at the top. One of these is "Show All Bookmarks." When you click that you will see the "Import and Backup" dropdown. You can click that and pick what you want to do from there. This seems to apply to Firefix for Windows 6+ but they failed to include it in their Help Instructions.

  • Import Export Utility not working on Windows Vista

    Hi
    I installed Oracle 10g XE on my brand new Windows Vista Business (SP1) machine 2 weeks ago. I then sucessfully imported an oracle export file which I had. I later installed Oracle Forms & Reports. However, today trying to use import or export gives me the following error:
    On importing...
    IMP-00058:
    IMP-00000: Import terminated unsuccessfully
    On exporting
    EXP-00056:
    EXP-00000: Export terminated unsuccessfully
    I have tried everything... makinging sure my oracle home is set correctly in the PATH parameter, tried interactive import/export.
    So when all else failed I installed 10g XE on a brand new Windows Vista PC that we have got just yesterday. Guess what.... straight after the install I get the exact same problem trying to use import/export! I then thought it must be a permission thing, there is only one user account on both PC's. This user is the Administrator, I have disabled all firewall, antivirus software but still no luck!
    Please help..
    Cheers
    Billy

    [email protected] wrote:
    There is only one Windows Account on my PC. This account is the Administrator account so it should work.
    Wrong!
    See my last post in this thread:
    Re: Not able to start Oracle 10g Listener on Windows 2008 Server
    there I explained a little bit UAC and how to deal with it.
    Cheers!

  • Arabic support in isqlplus after import export from 7.3.4 to 10.2.0.3

    CANNOT DISPLAY ARABIC IN ISQL*PLUS(JUNK). APPLICATION WORKS FINE WITH ARABIC
    with Taret DB char set to US7ASCII the data is always junk old data +new inserted arabic data inserted thro isqlplus or sqlplus.
    with AR8MSWIN1256 the old data(imported in to new db from old 7.3.4 db export dump) is displayed as junk (what ever in the db) and after creating a new table data inserted, the arabic display is fine.
    How to overcome the problem of displaying old data? we have lots of data for migration.
    Thanks

    Small correction
    In DB with Char set to AR8MSWIN1256.......
    Old data exported from 7.3.4 and imported in new 10.2.0.3 db is showing arabic char as junk
    But new table created and data inserted as arabic is displaying properly.
    What has to be done such that old imported data displays arabic.
    We are using isqlplus and sqlplus to query the data
    Thanks

  • Import/Export from OWB-- Discoverer

    Hello,
    Can anybody tell me the way to export and import data from OWB 10.1.2 onto Discoverer 10.1.2?
    Thank You,
    Mani.

    Hi Mani,
    Typically you'd define a collection in OWB, and then select Project Menu -> Metadata Export -> Bridge.
    Choose Oracle Discoverer as To: item and give it a description.
    Next you select one or more collections to export and possibly some more transfer parameters and you're good to go.
    For more background check chapter "Importing and Exporting with the Metadata Loader (MDL)".
    Good luck, Patrick

  • Import/Export from Betacam SP to FCP

    I have been contacted to make minor edits to a program for broadcast. The program is on Betacam and I plan to import the footage using a Sony Betacam SP UVW-1600 plugged into an ADS Pyro AV Link Bidirectional DV Media Converter connected via firewire to a Mac Pro with FCP, make the edits and then export back to Betacam via the same route. Can this be done the way I have planned? If so are there any changes I need to make to the video before it is exported (timecode, etc.) for broadcast?
    This is not something we normally do and the import/export makes sense the way I have planned it out. But I have learned with video and all the various formats that it is usually never as easy as it seems.
    Any help or advice is appreciated.
    Thanks,
    Leon

    This isn't the best way...it really isn't. You are converting the beta footage to DV when you go through the Pyro...then editing it in a 720x480 space instead of 720x486...then you will be sending that back out to Beta...and now will have vertical blanking where you are missing 6 pixels...and your quality will really suffer...and might no longer pass QC.
    Then you have to figure out how you will do deck control...you will need a USB>RS-422 adapter.
    You really need to get a capture card. The Decklink Extreme can be had for $995 and does SD and now prepares you for HD work...as it does HD too. Decklink does have cheaper SD only cards, as does AJA...but since the world is moving HD, it is time to get prepared for that.
    Shane

  • IMPORT/EXPORT FROM ADDRESS BOOK TO ENTOURAGE

    Is there a way to export/import contacts from the Address Book to Entourage? Thanks

    Try this.
    With the Address Book and Entourage launched and positioned so each is partially visible and the Entourage Address Book selected, select a contact in the Address Book "All" Group and at the menu bar, go to Edit > Select All. Click and drag the highlighted contacts from the Address Book to the Entourage Address Book window which should copy the Address Book contacts to the Entourage Address Book.
    You can do the same with selected contacts only if you don't want to export all.

  • IGES or VDA-FS import/export from DIADEM to/from CATIA

    We need to import/export data in either IGES or VDA-FS file format with DIADEM to/from CATIA. The data is a three dimensional array of coordinates representing the contour of a automotive seat.
    Does anyone know where to get or have such a file filter?
    Waldemar Hersacher
    Waldemar
    Using 7.1.1, 8.5.1, 8.6.1, 2009 on XP and RT
    Don't forget to give Kudos to good answers and/or questions

    Dear Otmar,
    I'm investigating this for a new customer project.
    IGES is a standard file format used to excange data between CAD systems.
    VDA-FS is a file format which is standardized by the german automotive industry consortium.
    Currently I have no description for the file formats nor any data files.
    I will make a new comment within 6 weeks if I need more help from you.
    Thanks Waldemar
    Waldemar
    Using 7.1.1, 8.5.1, 8.6.1, 2009 on XP and RT
    Don't forget to give Kudos to good answers and/or questions

  • Import/Export statement  not working..

    Hi all,
       I want to export some data from BADI & Import it back in user exit.
    I wrote following line of code in BADI
           export P1 FROM xstr to memory id 'ZABHI'.
    & following line of code in User Exit
          import P1 to xstr FROM memory id 'ZABHI'.
    After export sy-subrc becomes 0 hence export statement is working fine but when aftr import xstr remains blank.(sy-subrc = 4)
    I tried to execute same code in single ztest abap program & it works fine there.
    Thanks in advance.

    hi abhijeet,
    you are most welcome....
    to delete, use
    ** deletes the data to save wastage of memory
    delete from database indx(xy)
      client sy-mandt
      id 'ZABHI'.
    you need to delete it coz, its available to all programs in the R/3
    server via the ID and you don't want anybody to view the data u are
    sending into memory.
    the statement that u used earlier was program specific and hence
    not accessible to the user exit.
    Regards,
    Samson Rodrigues.

Maybe you are looking for