Unique file name  - 6dk1632m3a06f9lh.xml

If I
Submit by Email from within Designer 8 - from the Preview Tab - the programme generates a unique file name, i.e. 6dk1632m3a06f9lh.xml(or XDP) yet when I
Submit by Email directly from Reader it gives the xml file name the same name as the host PDF i.e. ThePDFFormName.xml. Now I would like to use the former because when I receive back the XML files, I'd prefer to save them locally and not have to rename or save them into a differing locations. Then at the end of the day I can batch them ready for a spreadsheet.

To add to John's Question:
Is there any way to programmatically set the file name to assume the name of one of the fields in the form?
(I have worked out how to put a field name into the Subject line and body copy of the email)
Zoe

Similar Messages

  • Do you know a J2SE unique file name?

    Hi,
    We are using
    Java2 Platform Standard Edition 1.4.2_02.
    We have a quesiotion for the J2SE. Please reply.
    [Question]
    We want to know which is J2SE installed, or not installed on our PC.
    And, we are planning to use a license management function of Composition Management Software ' QAW'.
    Please teach us an unique file name including path on the J2SE installed pc that can use for install check.
    Thank you.
    yysnow

    Hi,
    Thank you for your reply.
    We checked the java version.
    java version "1.4.2_02"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_02-b03)
    Java HotSpot(TM) Client VM (build 1.4.2_02-b03, mixed mode)
    Thank you.
    yysnow

  • PDF form with one submit button that prints form and sanves PDF with data with a unique file name

    We have a long medical form that patients can fill out at kiosks as they wait to see a doctor. We want one button so that the patient can print out the form with one click (and finish filling it out by hand if it's not finished already) and the same button click will save the form with a unique file name (using last name, first name, date, and/or email address so that the identity of the person who filled out the form will be readily apparent to anyone who wants to grab the user's responses later). Is Acrobat capable of doing something like this? LiveCycle Designer maybe? And if we continue with the PDF form and add a submit button, is there a way to program the button click to print and to save?
    Thank you in advance of any suggestions that might accomplish this task.

    I am not sure about the print, but it can probably be done -- possibly with a bit of JavaScript. As to the saving of the form, that is not reasonable at a kiosk. You would want the data submitted to a server (particularly with patient data), no e-mail or accessible drive. You can collect the data and put it in a database or import it to the form for printing yourself.

  • Conflict in file name : platform.xml

    Using AIR 14 I can't compile an ipa anymore. Always getting a "Conflict in file name : platform.xml" error. Any hint?

    i am Getting Auth Fail error in trace logs when creating Policy for SFTP File Download and Saving it.
    Problem Description
    Getting Auth Fail error in trace logs when creating Policy for SFTP File Download and Saving it on server.
    Steps to Reproduce
    1. Create a policy with Add HTTP Header and FileDownload filter with SFTP server details (need to specify fingerprint)
    2.Add Save to File filter with correct path and file name.
    3.Add scheduler that runs after every 20 sec
    4.Verify file at Save location and check trace logs.

  • How to create a unique file name each time the form is saved?

    I've got a form with several data items. When the user saves the form, it saves it as an .xml file. So far so good. But then I want the user to be able to start over and put in a new data set. I used the reset form button and this clears out the old data. But when the user goes to save the form for the second set of data, the default name of the .xml file is the same as the last record set. How do I get LCD to create a unique data name each time the form is saved? I know that the user can enter a new name, but I do not want them to have to think that much.
    Alternatively, is there a way that a user can enter several forms of data and save all of the data in one XML file that my PDF can scroll through or that I can import into excel and keep all of the data sets separate?

    Thanks Paul for the post. It sounds like this program is simply not designed for one user to keypunch a batch of forms. It would appear to limit the program's use to users who only need to key in one record/form. While a good solution for multiple users who need to enter just one set of data, the limitation would explain why this program is not widely used.

  • Unique file name to be decoded and to be updated in a table along with data

    Hi
    I'm working on a File to Proxy scenario, where the file names(10 chars length) are unique. These files will be available for XI in a source directory. My requirement is -- file name need to be decoded into 3 values and to be updated into a r/3 database table along with the file data.
    Hope my requirement is clear.
    Thanks.

    You cannot see the field which stores the file name. The file name comes from payload at runtime.
    Secondly no need to create any input parametes in your UDF, just edit your udf and delete the input parameter (default input is 'a') so that you don't have to map any constant to this UDF just map this UDF to target field.
    e.g. UDF ---> target Field.
    I did the same but am not able to activate the mapping.
    Mapping activation Error:
    Activation of the change list canceled Check result for Message Mapping hello_mapping | http://briks.com: 
    Mapping not sufficiently defined
    Chennai.

  • Unique file name for saving file on server.

    Hi
    I am having a servlet which will be used to save a file from client machine to server.
    Now, this servlet can be used with multiple users through web at same time.
    All user will be uploading files.
    There will be cases where 2 users from different location will upload files with same name.
    Thus, it is important for me that I append some string in uploaded file name, so that file name stands unique.
    How can I get this unique number.
    Is there no instance number for generated class !!.
    Thanks

    A few years ago I found this code on the Internet. I have forgotten where, but I'ven been using it since then and until now it always generate the unique number.
          * Generates unique ID based on timestamp, thread ID, random seed and random
          * double. Each part is converted to hexadecimal, padded left with zeros to
          * a length of 8 chars and then concatentated to each other.
          * @return Unique 32-char hexadecimal string.
         public static synchronized String getUniqueID() {
              final String pad = "0";
              final int padLength = 8;
              final int padDirection = StringX.PAD_LEFT;
              String timestamp = Integer.toHexString(Long.valueOf(System
                        .currentTimeMillis()).intValue());
              String threadHashCode = Integer.toHexString(Thread.currentThread()
                        .hashCode());
              String randomInt = Integer.toHexString(RANDOM.nextInt());
              String mathRandom = Integer.toHexString(new Double(Math.random()
                        * Integer.MAX_VALUE).intValue());
              // You may remove this try block if you want to increase performance by
              // 1ms.
              // But the generated ID might not be fully 100% guaranteed to be unique.
              // If you want to keep this block, then you can "almost" safely remove
              // the
              // randomInt and mathRandom parts of the UniqueID.
              try {
                   Thread.currentThread().join(1); // System.currentTimeMillis()++
              } catch (InterruptedException e) {
                   // Do nothing. However very, very, very rare. Haven't seen it
                   // earlier.
              return StringX.pad(timestamp, pad, padLength, padDirection)
                        + StringX.pad(threadHashCode, pad, padLength, padDirection)
                        + StringX.pad(randomInt, pad, padLength, padDirection)
                        + StringX.pad(mathRandom, pad, padLength, padDirection);
         }

  • Update File Naming For Better Support of Unique File Names

    The below feature requests are designed to allow lightroom to generate unique filenames for images from any number of cameras that all conform to the same naming convention and can be sorted chronologically by name both inside and outside of lightroom.
    The specific feature requests to allow this to happen are:
    1) Add a "centiseconds" field to the time strings that either uses those values from cameras that support it (like the Canon 5Dii). If a camera doesn't support this value, then lightroom should just pad the string with "00".
    2) Add an always on "conflict" counter that defaults to "1" for every image, but would increment as much as necessary to deal with sets of files that would otherwise have conflicting names. This would use the same logic as the conflict number that currently exists and adds "-2", for filenames that would otherwise be duplicates. The difference is that the new one would be applied 100% of the time instead of just when a duplicate is detected. It should also be possible to setup this number to have one or more leading zeros.
    To give an example of how this would work, I'll start with a set of example file names and demonstrate how lightroom currently handles them and then show a comparison of how they would work with the enhancements listed above.
    Say you are shooting an event with two different camera and have synced up the clocks on each so their timestamps match up. In the current (3.2) version of lightroom, you could use the pattern:
    img-{DateYYYYMMDD}-{Hour}{Minute}{Second}
    and end up with something like this
    img-20101207-201101.jpg
    img-20101207-202213.jpg
    img-20101207-202213-2.jpg
    img-20101207-202213-3.jpg
    img-20101207-203324.jpg
    img-20101207-203324-2.jpg
    Just adding the ability to have centi-seconds in cameras that support them (like the 5DmkII), you can eliminate a lot of the redundancy, but there will still be times when conflicts occur. Especially if you are using cameras that don't support that level of detail in the timestamp. So, if we add both the centi-seconds and the always on conflict number we can create this pattern:
    img-{DateYYYYMMDD}-{Hour}{Minute}{Second}{SubSec}-{0Conflict#}
    and we would end up with something more like this:
    img-20101207-20110143-01.jpg
    img-20101207-20221300-01.jpg
    img-20101207-20221300-02.jpg
    img-20101207-20221323-01.jpg
    img-20101207-20332426-01.jpg
    img-20101207-20332452-01.jpg
    Most of the duplicate names have been eliminated by the subsecond part of the tiem stamp, but all filenames have the exact same pattern, regardless. This makes scanning images by name much simpler. Especially if you need to run an external process that looks at file names over them.
    (Note: I'm use a number with a single leading zero padding in this case for the conflict number. It seems unlikely that a single digit would ever cease to be enough, but just in case having a zero padded version would be a nice option.)

    I would like to be able to rename a virtual copy and simultaneously make it be a true disk copy, and auto add to library.
    We have the virtual copy thing covered and it is one of the great  things that makes Lightroom a great application which
    has brought us new and amazing workflows.

  • Random file name for xml output

    Hi:
    You know how when you're in design mode and select PDF preview, then click an email submit XML data button it assigns a random number as the XML file name? How can I set that same thing up when a user clicks the submit button from the web site? The default it assigns is the name of the pdf form.
    Many thanks for any suggestions,
    Ginger

    Virginia,
    The email submit button can only do what you described in your message.
    - The random file name generated in PDF preview is because you are in the design mode (not everyone has the working xpd file saved when he/she does a PDF preview. This results in a random file _x3432gd4343.xml is generated. It could have been called untitle1.xml if the product developers decide to do so).
    - When you open a PDF file (which has a name) in acrobat, the PDF filename is being used for the email attachment.
    Jimmy
    [email protected]

  • How to create a unique file name within a main()?

    I am creating a file using a button inside the main() .
    Each time the button is clicked, new file should be created.
    The file names should be distinct and differ in a number that follows the name for ex. MyFile1.txt, MyFile2.txt, MyFile3.txt and so on.
    Any ideas?
    thanks

    I think you want that last line to readwhile (f.exists())  // note the absent "!"since your loop as coded will end up with a filename that does exist rather than one that does not exist. You might also tryint counter=0;
    File f=null;
    do
      f=new File("myfile" + counter++);
      while (!f.createNewFile()) // This will only create a file if it doesn't already exist.
    Caution! You can't use the counter after you create the file because the counter will already be the next number. You can use f.getName(), or if you have a psychological need to use the counter, prefix the "++" and start with -1 (or just skip 0)
    Doug

  • File name of xml form

    I have created a new xml form.
    For the name, I have used a label with property "displayname".
    When I save the form, in the KM I can view the file with the name that I assigned, but if I go with the mouse over the file I see in the button bar that the  original name is another.
    There is one methods to change this name ? or save the file with a fixed name ?

    Hi Loris,
    its not possible to save the XMLFormsItem with a fixed name. Every time you are creating a new item, there is a unique id generated which is used as "real" item name.
    This mechanism avoids conflicts with other items stored in that folder.
    Regards
    --Matthias

  • Set unique file name for document library in SharePoint 2013

    Hi,
    I have document library in the sharepoint 2013 with two dropdown fields-dept name,dept id.
    My requirement is to create a namiing convention for each file uploded in the document library.
    So the naming convention should be "deptname-deptid-filename-Id".
    I tried this naming convention using workflow as below-
    In this case ,first I attach the file and then it asks for dept name & id,Whwn i input these value,it shows error message as this file is modified by you at this point of time.On cancel it saves the attached file but does not save the deptname and dept
    id.
    please help if any idea or suggestion.
    Thank you.

    The only way I've ever seen this work while adding a new file is to use an Event Reciever.  Build an Event 
    Receiver that fires whenever a file is added and have the code change the name of the file from whatever the user titled it to the naming convention you are using.  
    Paul Stork SharePoint Server MVP
    Principal Architect: Blue Chip Consulting Group
    Blog: http://dontpapanic.com/blog
    Twitter: Follow @pstork
    Please remember to mark your question as "answered" if this solves your problem.

  • How to get the file name in one of the Xml node field?

    Hi Experts,
    i have one requirement with file name in xml file.
    i need to get <b>the file name of file</b> in one of the node in xml content of that file.
    how can i achieve that req?
    treat this as Very Urgent.

    Hi Bheem,
    Explain your scenario in detail..
    >>i need to get the file name of file in one of the node in xml content of that file.
    1. Create an node <b>Filename</b> in the target datatype.
    2. Check the Option Filename in the Adapter Specific Message Attributes in the sender file CC.
    3. Use the following UDF and map it to the Filename field in the target message type.
    public String getFileName(Container container)
    DynamicConfiguration conf = (DynamicConfiguration) container.getTransformationParameters().get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    DynamicConfigurationKey key = DynamicConfigurationKey.create("http://sap.com/xi/XI/System/File","FileName");
    String ourSourceFileName = conf.get(key);
    return  ourSourceFileName; 
    Regards
    San

  • Using Timestamp [TS] in the output file name

    Hello Everyone,
    i am trying to get the timestamp into the output file generated by the store file atom. Since my Outbound channel is void i thought i could use:
    [TS]
    or
    [yyyy][mm][dd][hour][min][sec]
    My File Specification is: C:\Temp\Out\blabla[TS].xml and unfortunatelythe outputfile are named: blabla[TS].xml
    What am I doing wrong? Can i not use those placeholders in an atom?
    Help is greatly appreciated
    Best regards
    Simon

    Hi Simon,
    Now I see, you're trying to maintain the timestamp in the SLD FILO section and not in a store file atom of an integration scenario.
    In this case, please check the following help document:
    filePattern
    To define the outbound file pattern, define the directory and the file specification. Enter the full path. The integration framework supports Microsoft Windows UNC (Universal Naming Convention) names. The directory you enter must exist in the file system. The user for directory access must have the necessary rights in the file system.
    You can use the following special characters and variables:
    Character/
    Variable
    Description
    To introduce  numbering in the file directory use ?.
    If you enter  for example data????.xml, the integration framework creates an outbound file called data0000.xml, if the directory is empty. If a file, following this naming  convention, already exists in the outbound directory, the next generated file  name is data<last  number>+1.xml. If data0000.xml already exists in the directory, the next file in the directory  is data0001.xml.
    [vbiu]
    This is a placeholder for a value you can  define in scenario package processing. If you use the value, add the b1im_filename attribute directly in the outbound payload.
    <xsl:template  name="transform">
          <xsl:attribute  name="b1im_filename">myName</xsl:attribute>
    </xsl:template>  
    [TS]
    To add a  timestamp to the file name, use the variable. This gives you another  possibility to define unique file names.
    [yyyy]
    Adds the  current year in four digits to the file name
    [yy]
    Adds the  current year in two digits to the file name
    [mm]
    Adds the  current month to the file name
    [dd]
    Adds the  current day to the file name
    [hour]
    Adds the  current hour to the file name
    [min]
    Adds the  current minute to the file name
    [sec]
    Adds the  current second to the file name
    You can also combine the variables. For example file[TS]??.[hour][min].txt
    Here is a screenshot of my SLD FILO definition and from the result:
    Best regards
    Bastian
    P.S.: just in case you need to define a filename in the integration step for the store file atom, here is a screenshot:

  • Temp File Name Schema in Receiver File adapter

    Hi,
    I have a scenario where i have to write the file in the temperaory location before writing it to the FTP loacation, I have selected the Processing Parameter as "Use Temperory File" but when the file gets created it is padded with the Message Id, is thr any option to get the file name as the temp file name without the Message Id or timestamp.
    Please let me know if any one has come across such scenario.
    thankx,
    shree

    Hi,
    Under Write Mode, specify whether the target file is to be written directly in the specified directory. If an additional step is to be added using a temporary file, choose Use Temporary File.
    You can specify a naming scheme for the temporary file under Temporary File Name Scheme.
    This schema is used to determine the prefix and extension of the temporary file; to ensure a unique file name, a time stamp is also added to the name during processing.
    The schema xitemp.tmp, for example, results in the file name xitemp<timestamp>.tmp
    So you have to customise the file name in schema.
    see below link
    http://help.sap.com/saphelp_nw2004s/helpdata/en/bc/bb79d6061007419a081e58cbeaaf28/content.htm
    Regards
    Chilla

Maybe you are looking for

  • I export from final cut pro 7 to idvd everything comes out fuzzy on the dvd

    I film using a canon fs10. I edit in final cut pro 7, then export to quicktime format, then I burn the dvd using idvd. But the final product always comes out blurry and fuzzy. I can't see what I am doing wrong. Is it because I am not filming in HD?

  • How can I copy my iPhoto library from my MacBook Pro to my IMac

    I use my 13" MBP in my van for business and store my job photos on it using iPhoto. I would like to keep a copy of my entire MBP iPhoto library on my iMac also. I do have a 2tb time capsule that I use to back up both computers. Is there a way to conn

  • Search not working in WebHelp

    I have a project containing hundreds of table definitions, for each I have created a separate topic. For example one such table is FR_STAN_RAW_BOOK and I have created a topic of the same name. The topic is in the TOC and indexed but when I try and se

  • Document closed while making payments on account

    Dear all, I'm facing the following issue. Eg:- I have created one AR/AP invoice for letsay 'x' business partner for INR.10000. While making incoming or outgoing payments,when i'm choosing this BP,all the open invoices will appear one by one.Now i've

  • ICal import not importing all dates...

    I am attempting to create a calendar in iPhoto 08 using the iCal import option. For some reason, not all the records from iCal are getting imported. I selected all the iCal calendars in the "Settings" section but still cannot get them all to import.