Date in filename

am using gui_download to create flat file.i want to store file with file name with date on report run i.e. if we run report on 29062006 then file should be stored with name 29062006.txt

Do like this:
concatenate sy-datum '.txt' to pfile1.
CALL FUNCTION 'GUI_DOWNLOAD'
  EXPORTING
  BIN_FILESIZE                    =
    FILENAME                        = p_file1
    FILETYPE                        = 'ASC'
  APPEND                          = ' '
    WRITE_FIELD_SEPARATOR           = 'X'
  HEADER                          = '00'
  TRUNC_TRAILING_BLANKS           = ' '
  WRITE_LF                        = 'X'
  COL_SELECT                      = ' '
  COL_SELECT_MASK                 = ' '
  DAT_MODE                        = ' '
  CONFIRM_OVERWRITE               = ' '
  NO_AUTH_CHECK                   = ' '
  CODEPAGE                        = ' '
  IGNORE_CERR                     = ABAP_TRUE
  REPLACEMENT                     = '#'
  WRITE_BOM                       = ' '
  TRUNC_TRAILING_BLANKS_EOL       = 'X'
  IMPORTING
    FILELENGTH                      = bin_filesize
  TABLES
    DATA_TAB                        = int_update
   FIELDNAMES                      = FIELDNAMES
  EXCEPTIONS
   FILE_WRITE_ERROR                = 1
   NO_BATCH                        = 2
   GUI_REFUSE_FILETRANSFER         = 3
   INVALID_TYPE                    = 4
   NO_AUTHORITY                    = 5
   UNKNOWN_ERROR                   = 6
   HEADER_NOT_ALLOWED              = 7
   SEPARATOR_NOT_ALLOWED           = 8
   FILESIZE_NOT_ALLOWED            = 9
   HEADER_TOO_LONG                 = 10
   DP_ERROR_CREATE                 = 11
   DP_ERROR_SEND                   = 12
   DP_ERROR_WRITE                  = 13
   UNKNOWN_DP_ERROR                = 14
   ACCESS_DENIED                   = 15
   DP_OUT_OF_MEMORY                = 16
   DISK_FULL                       = 17
   DP_TIMEOUT                      = 18
   FILE_NOT_FOUND                  = 19
   DATAPROVIDER_EXCEPTION          = 20
   CONTROL_FLUSH_ERROR             = 21
   OTHERS                          = 22
Regards,
ravi

Similar Messages

  • Error message: The data for filename was already added to the form

    I recently modified an existing data-collection PDF - only mod was to add some additional pull-down menu options in two fields. I went thru the Distribution wizard, tested the revised form, added the PDF to the Responses file...everything seemed fine. Next day, I distributed the revised form, and had 22 submissions. When adding the 22 submissions to the Response file, 6 or 7 bounced with the error message "The data for <filename> was already added to the form", even though that was not true. I went back, cleared all, and added one of the "bad" files to the response form. It went in OK, but I could not add another "bad one". Although several of the forms may be submitted by the same person, the data is different in all of the submissions, plus, we've been doing this procdure for over a year and never had an issue until now.
    The original form may have been created in Acrobat X, and I have Acrobat 9 Pro. Not sure if that is part or all of the answer. Thanks for any insights...I saw a posting in the Reader side, but I can't see any answers.

    Hi
    According to your error message, we need to verify if Microsoft SQL Server Compact appears in the
    Change Data Source dialog. If not, you need to install
    SQL Server Compact components for Visual Studio firstly, and if you choose to install SQL Server Compact 4.0 , you should note that SQL Server Compact 4.0 supports in Visual Studio 2010 Service Pack 1 or later versions. I recommend you to install the latest
    Service Pack (SP) of SQL Server Compact, and latest SP of Visual Studio, then check if the error still occurs. For more information, see:
    http://blogs.msdn.com/b/sqlservercompact/archive/2011/03/15/sql-server-compact-4-0-tooling-support-in-visual-studio-2010-sp1-and-visual-web-developer-express-2010-sp1.aspx
    However if there is no problem with the installation of SQL Server Compact, it will be an issue that regards ASP.NET and website deployment. I suggest you to post the question in the ASP.NET forums at
    http://forums.asp.net/ . It is appropriate and more experts will assist you.
    In addition, you can review the following link:
    Working with SQL Server Compact in Visual Studio:http://msdn.microsoft.com/en-us/library/gg606540(v=vs.100).aspx
    Thanks
    Lydia Zhang

  • The Finder can't complete the operation because some data in "filename" can't be read or written. (Error code -36)

    I'm going to try to keep this short and to the point.
    I've been coming across this -32 error when copying files to ANY external device (USB sticks, external HDD etc). Larger files get the -32 error, small files transfer fine.
    I can move files within my MacBook HDD no problem, however copying them cause the -32 error.
    I brought my MacBook to the Apple store. Genius ran some diagnostics etc.
    He suggested my hard drive was failing. -32 is an i/o error and loss of data was causing the file not to copy. It was still under warranty.
    I contacted the manufacturer (Seagate), they sent me a new drive and I sent mine back.
    I was excited that the issue wasn't going to be there anymore - however I was wrong.
    My MacBook has also started freezing periodically, when I listen to music on iTunes they will stop playing for a while then resume.
    Sometimes my MacBook will just completely seize up and I get the spinning ball for about two minutes.
    Still, when copying files within my MacBook or to an external source, -32.
    I am extremely frustrated. I'm going to make a trip back to the Apple Store and speak with the Genius again, but I have a feeling he won't be able to help.
    Is there any fix for this? I see a lot of threads about the issue but no solutions.
    My Time Machine backups take forever. I've heard that the files are corrupt, so does that mean every single file that's over ~5MB are corrupt? That seems impossible. Brand new files I download won't copy, which also makes no sense.
    I'm ready to throw my MacBook in the garbage.
    Thanks in advance.

    The error can have many meanings:
    1. A file is corrupted or damaged.
    2. A folder is corrupted or damaged.
    3. A filename is too long.
    4. The filename contains illegal characters.
    5. Copying to an MS-DOS filesystem which has filename lengths restricted to 31 characters for FAT32. It also does not recognize a number of characters that are legal on HFS+ including: ",',!,@,#,$,%,^,&,*,\,|
    If you must transfer files to a PC I suggest you put them into a .zip archive with fully legal MS-DOS filenames.
    The permissions errors are normal. They are innocuous messages that will recur each time you repair permissions.

  • How to import flat file with date in filename on a regular basis

    Hi,
    Using OWB 11gR1
    I have a file that will be delivered to an FTP each night with the date in the filename having the form YYYYMMDD-FILE.txt (ex: 20100326-FILE.txt) that I want to import to an external table.
    Now I've set up the import to the external table but am only able to import files that I specify the name for exactly. I've tried pointing to filenames such as "*-FILE.txt" and "%-FILE.txt" but that only results in errors.
    It must be possible to automatically import files with different filenames but the same structure, or isn't it? Could anyone help me solve this it'd be greatly appreciated.
    Thank you in advance.

    Hi
    For dynamic files you can;
    1. either do the DDL on the external table to point to the file with the changing name
    2Copy the file to a fixed name before using the external table/maps
    3. Use the preprocessor to cat/pipe these files for the external table. See the post here http://blogs.oracle.com/warehousebuilder/2009/06/file_staging_using_external_table_preprocessor.html it shows using gunzip but could simply be doing 'cat' on a bunch of files to standard output
    Cheers
    David

  • SQL Loader - howto load data including filename

    Hello,
    I need to load data from textfile. There are 5 columns and I want also filename as a 1st column.
    Here is datafile sample:
    B20AK11570A B20AK11570A 6594362054 0 6872
    B20AK11570A B20AK11570A 6596312051 6 6878
    B20AK11570A B20AK11570A 6596362043 33 17217
    Here is table structure:
    FILE_NAME VARCHAR2(20 CHAR),
    PRODUCT_CODE VARCHAR2(20 CHAR),
    PROGRAM_ID VARCHAR2(20 CHAR),
    COMPONENT_ID VARCHAR2(20 CHAR),
    BAD_PCS VARCHAR2(20 CHAR),
    GOOD_PCS VARCHAR2(20 CHAR)
    thanks for all suggestions

    Can not be done unless you hard code it either into your control file or the file you are loading.

  • Batch change dates using filenames as source

    Howdy all!
    I take a lot of pictures with my cell phone, and the date and time of the jpegs usually are just close, but not exact. The file name however usually contains all the data I need. It is something like 1227091536.jpg, which would be a photo taken today at 3:36 pm. So I use that info to manually update the date and time of each photo.
    However, it would be really neat if a plugin, or anything for that matter, existed that would take the filename in that format, and use that info to update the date and time of the photo.
    Anybody know of anything like that out there? Or come up with some clever way to speed up the process of correcting dates and times for cell phone pics?
    Thankee!
    David

    Update:
    Upon further inspection of my files, the phone almost consistently always added 5 hours onto each image. So it was easy to fix those. But, there were still photos here and there, that the phone was off in the date and time by up to a month. Those photos were set aside for individual adjustment.
    Still a pain to sift through and find the ones that are not off by the magical 5 hours, but it's a small percentage of the overall pictures.
    Dave

  • Dates in filenames.

    Hello all,
    Hope all is well in your BW world. I have an issue and I haven't been able to find any real solution online. I'm using an infospoke to extract data from an ODS object into a flat file on the BW server. During the infospoke setup, there is a field that says "Flat File Name". However, I want the name to be dynamic by date. Anyone have any suggestions on how to make the filename dynamic by date?
    Thanks,
    Jay

    Thanks for all your help. I found an excellent white paper to go with it. Below is the white paper and link to get to it.
    Title: How to Extract Data with OPEN HUB to a Logical Filename
    https://www.sdn.sap.com/sdn/search.sdn?contenttype=url&query=variable filenames&selected=0&content=/irj/servlet/prt/portal/prtroot/pcd!3aportal_content!2fSDN!2fiViews!2fWCM!2fcom.sap.sdn..wcm.search.search_adv%3Fprttheme%3DCSIN%26QueryString=variable%20filenames%26SearchPluginName=sdn_all%26SelectedCustomProps=resourcetype(value=s*)

  • Save listbox items to file with date in filename

    Im trying to setup a small program to where when you save listbox items, it saves to a file with a specific name. All works fine, no problems.  What I need to do is hen you click save, it saves the file with the specific name BUT with the date &
    time added to the filename. 
    Example: filename-date-time.txt
    Currently, Im only able to save as  filename.txt
    So when you save the list again, it just overwrites the file already there.
    Here is what I have:
    IO.Directory.CreateDirectory("C:\foldername")
    Dim w As New IO.StreamWriter("C:\foldername\filename.txt")
    Dim i As Integer
    For i = 0 To ListBox1.Items.Count - 1
    w.WriteLine(ListBox1.Items.Item(i))
    Next
    w.Close()
    MsgBox("List has been saved to C:\foldername\filename.txt", MsgBoxStyle.OkOnly)
    What do I need to add to this line: Dim w As New IO.StreamWriter("C:\foldername\filename.txt")   So that it can save it with the date & time?

    Dim w As New IO.StreamWriter("C:\foldername\filename " & Now.ToString(" MM/dd/yyyy hh:mm:ssf") & ".txt")
    Custom Date and Time Format Strings
    Format specifier
    Description
    Examples
    "d"
    The day of the month, from 1 through 31.
    More information:
    The "d" Custom Format Specifier.
    2009-06-01T13:45:30 -> 1
    2009-06-15T13:45:30 -> 15
    "dd"
    The day of the month, from 01 through 31.
    More information:
    The "dd" Custom Format Specifier.
    2009-06-01T13:45:30 -> 01
    2009-06-15T13:45:30 -> 15
    "ddd"
    The abbreviated name of the day of the week.
    More information:
    The "ddd" Custom Format Specifier.
    2009-06-15T13:45:30 -> Mon (en-US)
    2009-06-15T13:45:30 -> Пн (ru-RU)
    2009-06-15T13:45:30 -> lun. (fr-FR)
    "dddd"
    The full name of the day of the week.
    More information:
    The "dddd" Custom Format Specifier.
    2009-06-15T13:45:30 -> Monday (en-US)
    2009-06-15T13:45:30 -> понедельник (ru-RU)
    2009-06-15T13:45:30 -> lundi (fr-FR)
    "f"
    The tenths of a second in a date and time value.
    More information:
    The "f" Custom Format Specifier.
    2009-06-15T13:45:30.6170000 -> 6
    2009-06-15T13:45:30.05 -> 0
    "ff"
    The hundredths of a second in a date and time value.
    More information:
    The "ff" Custom Format Specifier.
    2009-06-15T13:45:30.6170000 -> 61
    2009-06-15T13:45:30.0500000 -> 00
    "fff"
    The milliseconds in a date and time value.
    More information:
    The "fff" Custom Format Specifier.
    6/15/2009 13:45:30.617 -> 617
    6/15/2009 13:45:30.0005 -> 000
    "ffff"
    The ten thousandths of a second in a date and time value.
    More information:
    The "ffff" Custom Format Specifier.
    2009-06-15T13:45:30.6175000 -> 6175
    2009-06-15T13:45:30.0000500  -> 0000
    "fffff"
    The hundred thousandths of a second in a date and time value.
    More information:
    The "fffff" Custom Format Specifier.
    2009-06-15T13:45:30.6175400 -> 61754
    6/15/2009 13:45:30.000005 -> 00000
    "ffffff"
    The millionths of a second in a date and time value.
    More information:
    The "ffffff" Custom Format Specifier.
    2009-06-15T13:45:30.6175420 -> 617542
    2009-06-15T13:45:30.0000005 -> 000000
    "fffffff"
    The ten millionths of a second in a date and time value.
    More information:
    The "fffffff" Custom Format Specifier.
    2009-06-15T13:45:30.6175425 -> 6175425
    2009-06-15T13:45:30.0001150 -> 0001150
    "F"
    If non-zero, the tenths of a second in a date and time value.
    More information:
    The "F" Custom Format Specifier.
    2009-06-15T13:45:30.6170000 -> 6
    2009-06-15T13:45:30.0500000 -> (no output)
    "FF"
    If non-zero, the hundredths of a second in a date and time value.
    More information:
    The "FF" Custom Format Specifier.
    2009-06-15T13:45:30.6170000 -> 61
    2009-06-15T13:45:30.0050000 -> (no output)
    "FFF"
    If non-zero, the milliseconds in a date and time value.
    More information:
    The "FFF" Custom Format Specifier.
    2009-06-15T13:45:30.6170000 -> 617
    2009-06-15T13:45:30.0005000 -> (no output)
    "FFFF"
    If non-zero, the ten thousandths of a second in a date and time value.
    More information:
    The "FFFF" Custom Format Specifier.
    2009-06-15T13:45:30.5275000 -> 5275
    2009-06-15T13:45:30.0000500 -> (no output)
    "FFFFF"
    If non-zero, the hundred thousandths of a second in a date and time value.
    More information:
    The "FFFFF" Custom Format Specifier.
    2009-06-15T13:45:30.6175400 -> 61754
    2009-06-15T13:45:30.0000050 -> (no output)
    "FFFFFF"
    If non-zero, the millionths of a second in a date and time value.
    More information:
    The "FFFFFF" Custom Format Specifier.
    2009-06-15T13:45:30.6175420 -> 617542
    2009-06-15T13:45:30.0000005 -> (no output)
    "FFFFFFF"
    If non-zero, the ten millionths of a second in a date and time value.
    More information:
    The "FFFFFFF" Custom Format Specifier.
    2009-06-15T13:45:30.6175425 -> 6175425
    2009-06-15T13:45:30.0001150 -> 000115
    "g", "gg"
    The period or era.
    More information:
    The "g" or "gg" Custom Format Specifier.
    2009-06-15T13:45:30.6170000 -> A.D.
    "h"
    The hour, using a 12-hour clock from 1 to 12.
    More information:
    The "h" Custom Format Specifier.
    2009-06-15T01:45:30 -> 1
    2009-06-15T13:45:30 -> 1
    "hh"
    The hour, using a 12-hour clock from 01 to 12.
    More information:
    The "hh" Custom Format Specifier.
    2009-06-15T01:45:30 -> 01
    2009-06-15T13:45:30 -> 01
    "H"
    The hour, using a 24-hour clock from 0 to 23.
    More information:
    The "H" Custom Format Specifier.
    2009-06-15T01:45:30 -> 1
    2009-06-15T13:45:30 -> 13
    "HH"
    The hour, using a 24-hour clock from 00 to 23.
    More information:
    The "HH" Custom Format Specifier.
    2009-06-15T01:45:30 -> 01
    2009-06-15T13:45:30 -> 13
    "K"
    Time zone information.
    More information:
    The "K" Custom Format Specifier.
    With DateTime values:
    2009-06-15T13:45:30, Kind Unspecified ->
    2009-06-15T13:45:30, Kind Utc -> Z
    2009-06-15T13:45:30, Kind Local -> -07:00 (depends on local computer settings)
    With DateTimeOffset values:
    2009-06-15T01:45:30-07:00 --> -07:00
    2009-06-15T08:45:30+00:00 --> +00:00
    "m"
    The minute, from 0 through 59.
    More information:
    The "m" Custom Format Specifier.
    2009-06-15T01:09:30 -> 9
    2009-06-15T13:29:30 -> 29
    "mm"
    The minute, from 00 through 59.
    More information:
    The "mm" Custom Format Specifier.
    2009-06-15T01:09:30 -> 09
    2009-06-15T01:45:30 -> 45
    "M"
    The month, from 1 through 12.
    More information:
    The "M" Custom Format Specifier.
    2009-06-15T13:45:30 -> 6
    "MM"
    The month, from 01 through 12.
    More information:
    The "MM" Custom Format Specifier.
    2009-06-15T13:45:30 -> 06
    "MMM"
    The abbreviated name of the month.
    More information:
    The "MMM" Custom Format Specifier.
    2009-06-15T13:45:30 -> Jun (en-US)
    2009-06-15T13:45:30 -> juin (fr-FR)
    2009-06-15T13:45:30 -> Jun (zu-ZA)
    "MMMM"
    The full name of the month.
    More information:
    The "MMMM" Custom Format Specifier.
    2009-06-15T13:45:30 -> June (en-US)
    2009-06-15T13:45:30 -> juni (da-DK)
    2009-06-15T13:45:30 -> uJuni (zu-ZA)
    "s"
    The second, from 0 through 59.
    More information:
    The "s" Custom Format Specifier.
    2009-06-15T13:45:09 -> 9
    "ss"
    The second, from 00 through 59.
    More information:
    The "ss" Custom Format Specifier.
    2009-06-15T13:45:09 -> 09
    "t"
    The first character of the AM/PM designator.
    More information:
    The "t" Custom Format Specifier.
    2009-06-15T13:45:30 -> P (en-US)
    2009-06-15T13:45:30 -> 午 (ja-JP)
    2009-06-15T13:45:30 ->  (fr-FR)
    "tt"
    The AM/PM designator.
    More information:
    The "tt" Custom Format Specifier.
    2009-06-15T13:45:30 -> PM (en-US)
    2009-06-15T13:45:30 -> 午後 (ja-JP)
    2009-06-15T13:45:30 ->  (fr-FR)
    "y"
    The year, from 0 to 99.
    More information:
    The "y" Custom Format Specifier.
    0001-01-01T00:00:00 -> 1
    0900-01-01T00:00:00 -> 0
    1900-01-01T00:00:00 -> 0
    2009-06-15T13:45:30 -> 9
    2019-06-15T13:45:30 -> 19
    "yy"
    The year, from 00 to 99.
    More information:
    The "yy" Custom Format Specifier.
    0001-01-01T00:00:00 -> 01
    0900-01-01T00:00:00 -> 00
    1900-01-01T00:00:00 -> 00
    2019-06-15T13:45:30 -> 19
    "yyy"
    The year, with a minimum of three digits.
    More information:
    The "yyy" Custom Format Specifier.
    0001-01-01T00:00:00 -> 001
    0900-01-01T00:00:00 -> 900
    1900-01-01T00:00:00 -> 1900
    2009-06-15T13:45:30 -> 2009
    "yyyy"
    The year as a four-digit number.
    More information:
    The "yyyy" Custom Format Specifier.
    0001-01-01T00:00:00 -> 0001
    0900-01-01T00:00:00 -> 0900
    1900-01-01T00:00:00 -> 1900
    2009-06-15T13:45:30 -> 2009
    "yyyyy"
    The year as a five-digit number.
    More information:
    The "yyyyy" Custom Format Specifier.
    0001-01-01T00:00:00 -> 00001
    2009-06-15T13:45:30 -> 02009
    "z"
    Hours offset from UTC, with no leading zeros.
    More information:
    The "z" Custom Format Specifier.
    2009-06-15T13:45:30-07:00 -> -7
    "zz"
    Hours offset from UTC, with a leading zero for a single-digit value.
    More information:
    The "zz" Custom Format Specifier.
    2009-06-15T13:45:30-07:00 -> -07
    "zzz"
    Hours and minutes offset from UTC.
    More information:
    The "zzz" Custom Format Specifier.
    2009-06-15T13:45:30-07:00 -> -07:00
    The time separator.
    More information:
    The ":" Custom Format Specifier.
    2009-06-15T13:45:30 -> : (en-US)
    2009-06-15T13:45:30 -> . (it-IT)
    2009-06-15T13:45:30 -> : (ja-JP)
    The date separator.
    More Information:
    The "/" Custom Format Specifier.
    2009-06-15T13:45:30 -> / (en-US)
    2009-06-15T13:45:30 -> - (ar-DZ)
    2009-06-15T13:45:30 -> . (tr-TR)
    "string"
    'string'
    Literal string delimiter.
    2009-06-15T13:45:30 ("arr:" h:m t) -> arr: 1:45 P
    2009-06-15T13:45:30 ('arr:' h:m t) -> arr: 1:45 P
    Defines the following character as a custom format specifier.
    More information: Using Single Custom Format Specifiers.
    2009-06-15T13:45:30 (%h) -> 1
    The escape character.
    2009-06-15T13:45:30 (h \h) -> 1 h
    Any other character
    The character is copied to the result string unchanged.
    More information:
    Using the Escape Character.
    2009-06-15T01:45:30 (arr hh:mm t) -> arr 01:45 A
    La vida loca
    gives error when trying save.
    The given path's format is not supported.

  • PDF to FDF data validation/filename

    Hi,
    Im creating some PDF order forms and using submit form data to send the data to an email for collation into a spreadsheet on a weekly basis.
    Ive got a couple of issues/things i would like to implement on these but im having a bit of difficulty.
    1) Can I script the PDF so if the user does not fill in a certain field they cannot submit the data?
    2) Can the PDF assign a unique file name based on data in a field to the FDF data output? (If the PDF was called Order fom.pdf and a field had John typed in it the FDF output would be called John Order form.pdf)
    Cheers for any help guys.
    Guss

    Answer to 1) Yes, just tick the Required box for that field.

  • IR Job Parameters - Import bqy to a location - Append date to filename - How to change the date format?

    Hi All,
    The title pretty much says it all. We have a few jobs running that require Mon-YY appended for each month they are run. Right now it's a manual process of changing the import file name in the parameters for each month. I see that I could append the file name with date but it's not in the format I need. Has anyone been able to accomplish this? Any help is appeciated!
    Thanks,
    S

    Unfortunately, I do not have a Firefox OS device, so this is based on an old screen shot I saw in a search...
    During initial setup, you may have been asked to confirm your language and region. I believe the region is used to localize your date format. Can you find a setup app to get back to those choices? Please be advised that running a setup app may remove some data, so it's probably a good idea to wait for additional feedback before actually going forward with it.

  • Add current date to filename of a scheduled report (Info 7.5)

    Can a file be scheduled in Info 7.5 to export with the current date to the file name (ex.  job_postings_dd_mm_yy.xls)?

    Hello,
    Seagate Info has been out of support for years so no one here would be able to help you. I moved this to the Enterprise forum also.
    I don't recall any option but if the UI doesn't give you the option to change the name then no it likely wasn't something you could do. You could although create a batch file that would rename it using a Process extension, I think 7.5 had that ability, it's been so long now.
    Check the Administrators Guide on functionality, is about all I can suggest.
    Thank you
    Don

  • Meta data from filenames

    I have a bunch of files (3200) where they are named "Shoot $ Client $ Title". Any way I can parse the file names to extract metadata or keywords from the filenames?

    the ResultSetMetaData.getScale() method will tell you how many values >to the right of the decimal point are being stored by the column. provided it is defined in the table definition script.
    e.g
    DEPARTMENT_NO NUMBER(2)
    SALARY NUMBER(7,2)

  • Export - date in filename

    hi all,
    i need to export some tables in several days and i'd like to have file like common_date.dmp
    i'm in windows env
    any idea??

    type them in by hand.
    Sorry but that's what happens when you choose to use obsolete and deprecated tools.
    On the other hand if you use DataPump via the built-in DBMS_DATAPUMP package you can do anything you want.
    http://www.morganslibrary.org/reference/dbms_datapump.html
    There are export and import demos at page bottom.

  • LR5 Batch rename all photos to CAPTURE DATE+CAPTURE TIME+ORIGINAL FILENAME

    Hello there,
    Does anyone know of a way to get LR5 to batch rename all it’s photos to CAPTURE DATE+CAPTURE TIME+ORIGINAL FILENAME?
    I know the data is in there somewhere but my DATE+ORIGINAL FILENAME import rename preset has named all our photos with the date photos were imported not created (eeek!)
    Thanks in advance for any input,
    Alex

    alanterra wrote:
    If you are using Macintosh, you could also try purchasing A Better Finder Rename 9—I love it, and you can create droplets for all your file-renaming chores.
    Beware: such app is best used *before* importing.
    If you rename (outside Lightroom) after importing, your files will go missing and you'll have to re-link (or god forbid: re-import). Maybe that will be OK with you, and maybe it won't..
    Also, such app has no idea what the original filename was, so in this case it would not do what the OP wants.
    Rob

  • Cannot transfer large files between drives - data can't be read or written

    Hi there!
    I am trying to transfer a couple of large files to a hard drive from my internal ssd. Both are set to Mac OS Extended (Journaled). Small files transfer fine, but large ones (eg. 20GB) get a varying distance through and then the following error message comes up:
    The Finder can't complete the operation because some data in “FILENAME” can’t be read or written. (Error code -36)
    I have tried to ensure read&write permissions are allowed, but this hasn't helped. This has occurred with multiple files.
    Any help would be very much appreciated.
    Max

    Hi
    I exported a movie
    How ?
    One must/can only move iMovie Events and/or Projects - WITHIN IMOVIE !
    Do not alter or move anything in
    • iMovie Project folder - or -
    • iMovie Events folder
    IMovie get's confused - and damage might well be un-repairable !
    How was the target hard disk formatted ?
    Mac OS Extended - only option that works !
    How much space was there on the target hard disk ?
    1 hour SD-video needs about 13Gb
    HD about 5 times more
    I would
    • Connect second laptop (Mac) via FireWire
    • Start this second one - Keeping T-key down (target mode)
    • Now in iMovie Project resp Events window it will show up as an external hard disk
    Drag-and-drop Events and/or projects over.
    Yours Bengt W

Maybe you are looking for