Specify the name of a field in FormsCentral

Hi,
I would like to make a PDF form using FormsCentral. I then want to be able to auto-fill that PDF file using an XFDF file. In order to efficiently do that I need to be able to change the names FormsCentral assigns to fields. Is this possible?
Currently, if I have a field with a label like 'Full Name', FormsCentral will assign a field name like 'Full Name_dflgkjh430987fdg489745' and I then have to go into a 3rd party editor and change them to logical things like 'fullName'. This is a real pain as I have to re-do it every time the FormsCentral file is edited.
This seems like such a simple request but FormsCentral seems to have no options to do anything like this. Am I missing something?
Help would be much appreciated!

Hello Joan:
If you mean the label of the form you can do with CTR + Double Click.
Remember not to change the integrity of the database. Is only allowed to user fields
make changes at the level of views, stored procedures, among others, which do not compromise the integrity of
data.
Remember, even if they change the label, has changed the field name in the database, only the presentation
the form.
Edwin Mauricio Nieto Leó

Similar Messages

  • How to get the name of a field without specifying it as a string (somehow v

    Is it possible to get the name of a field (or method) somehow via the class in which it is declared?
    The reason why I ask is, that quite often the name of a field is important, because the name is the anchor for further processing, like for example when using reflection (e.g. Class.getfield(“NameOfTheField”)).
    Assume you have class FooSimple with the field “String firstName”.
    Now you would do something like this:
    Class<FooSimple> cls = FooSimple.class;
    Field f = cls.getField("firstName");
    The problem is, that the string “firstName” is kind of “hard coded”. When the name of the field in class FooSimple changes (e.g. to “theFirstName”), the invocation will not work anymore when you forget to change the string too.
    I think it would be very helpful to have access to the name of the field directly via the class by doing something like this.
    Class<FooSimple> cls = FooSimple.class;
    Field f = cls.getField(FooSimple.firstName.fieldName);
    The Java Compiler would then resolve “FooSimple.firstName.fieldName” to the string “firstName”. When later the name of the field is changed, the IDE would change the name everywhere where it is used. So if the name of the field would be changed to “theFirstName” the IDE would also change the statement to
    Class<FooSimple> cls = FooSimple.class;
    Field f = cls.getField(FooSimple.theFirstName.fieldName);
    A technique like this would be in my opinion much more safety and more generic.
    Any ideas?
    Best Regards.

    Well, I think the discussion is going in a wrong direction because the original issue was not to discuss if it is worth coding some helper classes or a framework or that like. Let me bring it back to my original point.
    Basically you can reduce my original question to this:
    Currently it is possible to use the reflection API on a class level without specifying the name of the class with a string constant.
    My issue is, that I think it would be a nice extension for Java, if the same would be possible for field variables of a Java class. Currently the only way you can do this is by specifying the field variable with a string constant.
    Let me bring some motivations which brought me to this issue.
    Assume you have an entity bean which represents a DB table and you use Java Persistence (either JPA or something like Hibernate). Then you would have a class looking like this (very simple sample to make this reply shorter).
    @Entity
    @Table(name = "PERSON")
    public class Person implements Serializable {
         @Column(name = "NAME")
         private String name;
    // … constructor, getter, setter, etc. not listed here
    }The whole issue of the design of JPA is, that such entity beans represent the mapping between the object model and the DB model, the mapping is expressed with annotations.
    Okay, now let’s assume you write a query in Query Language, e.g.
    String sql = “select p from Person p where name = :name”;“name” is the name of the field variable, “:name” is the parameter you later set with “Query.setParameter” method.
    What is not so nice is the fact, that you use the name of the class and the name of the field variables “hardcoded” to construct the query. Now you could think that basically this information is part of your entity class. First you start with the name of the class (i.e. the table name) to decouple this “hardcoding”.
    You could write instead:
    String sql = “select p from “ + Person.class.getSimpleName() + “ p where name = :name”;This is really nice, because whenever you change the name of your Person class, this change happens automatically for the sql statement as well.
    I think the next thoughts are obvious, now, since you have decoupled the “hardcoded” part of the name of the class, you would like to do the same for the names of the field variables. But now you are stuck, there is no way to do this using a similar technique like for the name of the class. Either you stay with the query as it is now, or, to make it a little bit better, you code string constants for the field variables and use them. This issue brought me to the point that I think it would be nice to have the possibility to get the name of a field variable in a similar way as you can get it for the name of the class.
    Conceptually it is just to go one level deeper, i.e.
    first level is to get the name of a class
    second level is to get the name of the field variable of a class.
    Another sample would be, if you want to code something by using reflection. You have perfectly access to the reflection API starting at the class level like Person.class.allTheNiceReflectionMethods. There is no need to specify the class first with a string constant first, you directly start with the class, you can even be generic and just work on the Class.class level and still have access to all these nice methods to get out the information you need.
    But if you need to start with a very specific field variable (like in the sample above), you must go by using a string constant like Person.class.getDeclaredField(“name”).
    So basically I think that there exist already millions of lines of Java code where a field variable is specified for further processing, especially in combination with the reflection functionality and everywhere the field variables are specified by these string constants in double quotes. I would assume, that everyone has the same problem, once changing the name of the field variable means to take care that also the content of the string which specifies the name of the field variable is changed.
    I am wondering why one of the replies commented, why the name of a field variable is changed, it sounds to me that this is something which basically never happens. I don’t know, I think that this happens actually quite often and thanks to all these nice IDEs and their “rename” feature this is usually no problem. From time to time names of classes change, name of field change, yes, they are often even completely rewritten, new field variables come in some are deleted, whatever it is. The way I currently can access the name of a class makes the code safer, because when I consequently go with Class.class.getSimpleName I always know, that when I rename the class all these statements are changed too If I delete such a class, I at least get a compile error.
    My very simple issues is, that I think it would be nice to have the same comfort not only on a class level but also on the level of field variables, nothing more, nothing less.
    To be honest, I have not browsed the forum yet if such an issue was already raised by other people (I will do this now), but somehow it is hard to imagine, that I am the first one.
    Best regards.

  • How do I generate the pdf file using the name of a field.  How can I help

    how do I generate the pdf file using the name of a field.  How can I help

    Hi,
    here's a sample.
    LiveCycle Blog: Formulare in bestimmte Verzeichnisse speichern und nach Inhalt aus Formularfeld benennen //Save forms to…

  • Change the name of a field in the forms

    Hello, experts:
    As I can change the name of a field in the forms?
    When you change the name of a field on the form, the field name in the database also changes?
    Joan

    Hello Joan:
    If you mean the label of the form you can do with CTR + Double Click.
    Remember not to change the integrity of the database. Is only allowed to user fields
    make changes at the level of views, stored procedures, among others, which do not compromise the integrity of
    data.
    Remember, even if they change the label, has changed the field name in the database, only the presentation
    the form.
    Edwin Mauricio Nieto Leó

  • Changing the name of standard Field

    we have ECC6.0 with three countries using. Now i want to change the Standard Field name on an infotype ,i know how to change the name of the field. but my question is if i change the name of standard field it gets reflected for all the 3 countries, but i wanted to change for only one country?
    how can i achieve this?

    infotypes are Country Specific so pls check V_T582L once
    and check the screen numbers of the infotypes for various infotypes useing PE03 P0002 feature
    and check those module in V_T588M  and after this
    go to Tcode CMOD and do the rest of the thing u want to do
    hmm...... All the best

  • How to control the name of custom field in data base table, added by AET

    Hi,
    I have added the one custom field by Application Enhancement Tool (AET).
    The name of custom field has been added in the data base table as ZZFLD000004 by AET.
    I need to add the some meaningful name like that ZMYPROB.
    How can I control the name of custom field in the database field through AET?
    Thanks,
    Amit

    Got the answer.
    Need to click on the Enable Expert mode, then custom field name will be editable.

  • Change the name of std field in the std screen....

    Hi All,
    I want to change the name of the std field.....
    I used CMOD option but it changed the name across the client ......
    so i dont want that...i want it to be region specific......like for india only this text should display and for rest it should show the std name....
    the txn is VL01n/VL02n/Vl03n  ......
    thnx
    RK

    Hi,
    Plz try this Link
    I Hope with conditions u cant change field label.
    Let know where exactly u want this in report/Module pool.
    If in Report
    we can get with AT SELECTION SCREEN OUTPUT.
    Change standard field label
    http://www.sapfans.com/forums/viewtopic.php?f=13&t=323538
    Regards
    Edited by: Rasheed salman on Dec 14, 2009 12:35 PM
    Edited by: Rasheed salman on Dec 14, 2009 12:36 PM

  • Dinamically change the name of a field.

    Dear all,
    Here is my problem.
    I have a 3 text fields wraped in a subform.
    I have also created a button so I can add new instance of this sub form at runtime.
    All that works nice.
    However, I also have a HTML subbmit button, and when I submit the form to my script, I only get the last instance of the fields in the subform mentioned above.
    I am not sure what is the best solution for that.
    I thought that on option is if while adding the new instances of the subform, I can also dinamically change the name of the fields, so for example
    in the first instance of the subform I will have fieldname2 then in the second I will have fieldname2 and then when I submit I will get both, not just the last one.
    But apperantly I do not know how to dinamically change the name of the field as well.
    Any help will be really realy helpful
    Thank you very much
    Tsvyatko
    Senior Datbase Manager
    Columbia University

    Hi Dhiyan,
    Thanks for raplying.
    Your suggestion does work in the way that id does change the caption of the fields dinamically.
    However, looks like when I use the HTML submit button the form still submits the data only in the last fields of the repeated subform and their names have not changed.
    Probably when you say that the name of the field is its caption you mean just a static text. But I am refearing to fields where you can enter data inside.
    Basically, what I am trying to do, is to be able to dinamically create a table in my acrobat form.
    This table has let say 2 fields: InstanceNumber and YearOccured.
    So when I lets say add 3 instances in my acrobat form, I want to user to click an HTML submit button, and then through a PHP script I can submit all the 3 instance to a database.
    However, when I check the REQUEST array, I only see these 2 fields once (instead of 3 times) and they contain the data of the last added row.
    I assume that the problem could be solved if I can somehow change their names while I add rows.
    So for example in the first row I will have:
    InstanceNumber_1 and YearOccured_1
    in the second:
    InstanceNumber_2 and YearOccured_2
    and in third
    InstanceNumber_3 and YearOccured_3
    And so when I submit the form it will submit the data of all the rows.
    I am not sure if that is possible though. But definatelly I do not know how to do it ))
    What I did to go around this is:
    I have created 2 other (hidden) fields.
    And when I click the submit button, before I do the actuall submit, I take the data from all 3 rows one by one and I put i in this hidded fields as (tab) delimited. And so now I have in my REQUEST array all the data from all 3 rows, in a single tab delimited field. And then I can work it out from there with PHP to submit it where ever.
    However, I was hoping for some little more elegant solution, that is if I can change the names and so have all the fields data submitted. Or any other good suggestion
    If anyone knows, will buy you a beer )
    Thanks again
    Tsvyatko

  • Change the name of a field

    I am new to Adobe so I cobbled the following javascript together based on what I saw elsewhere in the forum, to be run as a batch process. I need to update approximatly 35 forms and the intent is to remove the "2" from the middle of 4 field names:
    /* ChangeName */
    // List of fields to change
    var aFields = ["AppA2RestYes", "AppA2RestNo", "AppB2RestYes", "AppB2RestNo"];
    // Loop through the fields and remove the "2" from the name:
    for (var i = 0; i < 4; i += 1) {
       var f = getField(aFields[i]);
       if (f) {
         f.value = f.valueAsString.replace("2", "");
    This is not working.  Can someone point out the error of my ways?
    Thanks!

    Any scripts, calculations, actions associated with these fields anywhere in the PDFs?
    You script is changing the 'value' property of the  field and not the 'name' property of the field.
    The 'name' property field of a field can only be 'read' there is no "write" access for this property.
    You can copy all of the form field properties of a field and use them to 'addField' , You can not delete a field, but you could set the field's 'display' property to 'display.hidden' and make the field 'readonly'
    You might want to download or link to the free Acrobat Acrobat JS Reference API.

  • REP-0503: You did not specify the name of a report

    I am getting the above error while calling a report from a form in Oracle 9iDS.
    I have created anode in the report node of the form(TESTREP1) this is same as my report rdf name which is stored in C:\temp\9ids folder, report_path points to this folder,OC4J is start, in the properties of TEST_REP1 in the form i have set:
    filename C:\temp\9ids_test\test_Rep1.rdf
    My code on a when-button-pressed trigger is
    DECLARE
         repid report_object;
         v_Rep varchar2(100);
    BEGIN
    repid := FIND_REPORT_OBJECT('TEST_REP1');message(get_report_object_property(repid, PORT_FILENAME));
    -- i can see this message showing the filename as
    --C:\temp\9ids\test_rep1.rdf
    v_rep := Run_report_object('TEST_REP1');
    message('test report')
    -- i can see this message but fails to run the report
    --with REP-0503
    exception
         when others then
         message('Error: '||sqlerrm);
    END;
    where am i wrong?
    Regards,
    Sumita

    The following code also doesnt work
    DECLARE
    repid report_object;
    v_Rep varchar2(100);
    BEGIN
    repid := FIND_REPORT_OBJECT('TEST_REP1');
    SET_REPORT_OBJECT_PROPERTY(repid, REPORT_DESTYPE, 'cache');
    SET_REPORT_OBJECT_PROPERTY(repid, REPORT_DESFORMAT, 'pdf');
    SET_REPORT_OBJECT_PROPERTY(repid, REPORT_COMM_MODE, ASYNCHRONOUS);
    v_rep := RUN_REPORT_OBJECT(repid);
    exception
         when others then
         message('Error: '||sqlerrm);
    END;
    In Java Console error message
    <<<
    Loading http://lra10241:8888/forms90/java/f90all_jinit.jar from JAR cache
    connectMode=HTTP, native.
    Forms Applet version is : 90290
    oracle.forms.net.ConnectionException: Forms session <3> aborted: unable to communicate with runtime process.
         at oracle.forms.net.ConnectionException.createConnectionException(Unknown Source)
         at oracle.forms.net.HTTPNStream.getResponse(Unknown Source)
         at oracle.forms.net.HTTPNStream.doFlush(Unknown Source)
         at oracle.forms.net.HTTPNStream.flush(Unknown Source)
         at java.io.DataOutputStream.flush(Unknown Source)
         at oracle.forms.net.StreamMessageWriter.run(Unknown Source)
    >>>>>
    Please help its urgent

  • Writing file content on to mobile phone (need to specify the file name req)

    Hi,
    I have a jsp page which i am trying to execute on a mobile phone. In this page i am trying to open a ServletOutputStream and using this i am trying to write some content on to the phone. But by default the file name is beeing given as the name of the jsp page, so is there any that we can we specify the name of the file explicitly using the program itself (i mean other than the jsp file name). Can some one give me an idea to implement this.
    Here is the code snippet used......
    ServletOutputStream outstr = response.getOutputStream();
    String itemPath = "http://172.10.100.25/file_dwn/funny_pic.gif";
    java.net.URL url = new java.net.URL(itemPath);
    javax.activation.URLDataSource source = new javax.activation.URLDataSource(url);
    javax.activation.DataHandler dataHand = new javax.activation.DataHandler(source);
    String file = itemPath.substring(itemPath.lastIndexOf("/")+1);
    response.setHeader("Content-Type","application/vnd.oma.drm.message;boundary=foo");     
    outstr.println();
    outstr.println("--foo");
    outstr.println("Content-Type: " + dataHand.getContentType()+";Name=\""+file+"\"");
    outstr.println("");
    dataHand.writeTo(outstr);
    outstr.println();
    outstr.println("--foo--");
    outstr.println();
    outstr.flush();
    outstr.close();

    Hi,
    You can Include a Knowledge Management Folder as a Web Folder, this way you can copy and paste files from KM to  file system very easily.
    Check this
    http://help.sap.com/saphelp_nw70/helpdata/EN/30/75b62c659d724fb908c74ade23af51/frameset.htm
    Regards,
    Praveen Gudapati

  • Specifying Repository Name in the Forte Shortcut

    I have been looking for information on how to specify the Repository Name
    with the Forte shortcut. I have a couple of repositories and I would
    like to create a Forte shortcut for each repository. I am running Forte
    3.0.E.0 on an NT 4.0 box. I have been trying the following command:
    c:\forte\install\bin\ftcmd.exe run "forte -fr bt:central -fnd
    <nodename>"
    Where central is the name of the physical repository on <nodename>. I've
    tried several variations without success and cannot connect with the
    CentralRepository. Any suggestions? I know that I can startup the Forte
    Control Panel and specify the name on that dialog, but that is tedious
    when trying to switch between multiple repositories. Thanks.
    Bradley K Wells
    Strong Capital Management, Inc
    http://www.strong-funds.com

    It looks like you are not using the proper syntax for ftcmd. Refer to "A Guide to the Forte Workshops" p51,54 for the complete list of flags for ftcmd.
    I believe the following is what you should use. If you are accessing a repos through a rpserver, then the repos flag needs the repos name and does not need the repos type (bt). The repos name is the value for the -n flag for the rpserver.
    c:\forte\install\bin\ftcmd.exe -fnd nodename -fr central run forte
    Hope this helps,
    Andrew Zwerin
    [email protected]
    To: [email protected]
    From: [email protected]@internetmime on Mon, Dec 22, 1997 7:59 PM
    Subject: Specifying Repository Name in the Forte Shortcut
    I have been looking for information on how to specify the Repository Name
    with the Forte shortcut. I have a couple of repositories and I would
    like to create a Forte shortcut for each repository. I am running Forte
    3.0.E.0 on an NT 4.0 box. I have been trying the following command:
    c:\forte\install\bin\ftcmd.exe run "forte -fr bt:central -fnd
    <nodename>"
    Where central is the name of the physical repository on <nodename>. I've
    tried several variations without success and cannot connect with the
    CentralRepository. Any suggestions? I know that I can startup the Forte
    Control Panel and specify the name on that dialog, but that is tedious
    when trying to switch between multiple repositories. Thanks.
    Bradley K Wells
    Strong Capital Management, Inc
    http://www.strong-funds.com
    ------------------ Mail Header Follows ------------------
    Date: 22 Dec 97 17:41:48 -0800
    Sender: "[email protected]" <owner-forte-users@SageIT#d#com>
    From: "[email protected]@internetmime" <brwells@strong-funds#d#com@internetmime>
    Reply-To: "[email protected]@internetmime" <brwells@strong-funds#d#com@internetmime>
    To: "[email protected]" <forte-users@Sagesoln#d#com> (Reply not requested)
    Subject: Specifying Repository Name in the Forte Shortcut
    UA-Content-Id: Specifying Repos
    Delivery-Time-Stamp: Mon Dec 22 19:53:05 1997
    P1-Recipient: "Zwerin_Andrew" <Zwerin#u#Andrew>,
    "Murphy_Bill" <Murphy#u#Bill>, "Rahmey_Ness" <Rahmey#u#Ness>
    Priority: normal
    Importance: normal
    P1-Message-Id: us*mailserver.stron*TWI;971222195242
    Original-Encoded-Information-Types: IA5-Text
    X400-Trace: us*mailserver.stron*TWI; arrival 971222174148-0800 deferred 971222174148-0800 action Relayed
    X400-Trace: us*thud*TWI; arrival 971222174026-0600 deferred 971222174026-0600 action Relayed
    X400-Trace: us*pebble.sagesoln.*TWI; arrival 971222154008-0800 deferred 971222154008-0800 action Relayed
    X400-Trace: us*pebble.SageIT.co*TWI; arrival 971222154034-0800 deferred 971222154034-0800 action Relayed
    X400-Trace: us*pebble.SageIT.co*TWI; arrival 971222154036-0800 deferred 971222154036-0800 action Relayed
    X400-Trace: us*ec-fw2.twi.com*TWI; arrival 971223005248Z deferred 971223005248Z action Relayed
    X400-Trace: us*ecsmtp.twi.com*TWI; arrival 971222195125-0500 deferred 971222195125-0500 action Relayed
    X400-Trace: us*twwtny1.twi.com*TWI; arrival 971222195240-0500 deferred 971222195240-0500 action Relayed
    X400-Trace: US*MCI*TWI; arrival 971222174000-0800 deferred 971222174000-0800 action Relayed
    Message-Id: <349F16DC#064#mailserver#d#strong-funds#d#com*/>
    P1-Content-Type: P2

  • Specifying the filename for outbound FTP transport in OSB

    I want an OSB based service that will send via FTP a file with a specific name to a remote ftp location.
    It appears OSB can't do this because the FTP transport on a business service only allows you to specify the prefix and suffix and then generates a big long file name for the midlle parts.
    Does someone know how to override this and specify the name that you want teh remote file name to be called?

    mdsrobbins wrote:
    Your response was helpful but being new to OSB I'm still not quite there because I want to pass a "variable" to the file name. Now given I want to ftp a CSV file I've specified a proxy messaging service in an MFL format behind a jms queue. The business service underlying this is the ftp service again using the MFL format. This all works but in the message flow I for the proxy I can't seem to get access to a user defined property which contains the filename which I could then pull out and stuff into the "filename" header as suggested above.
    Doe anyone have any ideas how I can get access to a filename property from a JMS message?From what i understand
    JMSQ--- JMS PRoxy (MFL)----Pipeline ----->BS (MFL/FTP)---FTP server
    So you would like to set the filename that is contained the JMS message custom headers?. While creating your JMS Proxy you have to follow these steps
    1) While creating JMS Proxy in Transport Configuration page select Get All Headers =Yes
    2) If file name is set as user defined property in JMS message then use $Header in you pipeline/message flow. This variable will hold your user defined properties. If the user defined property is part of JMS message then use $body.
    thanks
    Manoj

  • Assign the name of a file and its extension when using DESTYPE=MAIL

    Hello,
    I've developed a report running Oracle Reports 10g that is being emailed to a user. I would like to specify the name of the file and it's extension that is attached. Are there variables or parameters in Oracle Reports that I can use to accomplish this?
    It looks like by default that the file name is using the Name value found in the Property Inspector for the report. I have not been able to find a way to re-assign this value with a value from either the input or select values in the data model.
    Will Oracle Reports 10g allow me to define the name of the file and the extension?
    Any help or direction would be greatly appreciated.
    Thanks in advance
    Jesse
    Message was edited by:
    Sutherland

    Thank you for the quick reply and information. I almost thought you had solved my problem until I found out that distribution and bursting do not support delimited and spreadsheet output. One of the two files I need to email has a desformat of SPREADSHEET.
    Is there any other way to manipulate the file name and extension when using destype of MAIL?

  • To change name of output field hearder in SAP Standered report.

    Dear All,
    Is there any options to change the  name of output field hearder in SAP Standered report.
    Regards,
    Pankaj Vashista

    answered

Maybe you are looking for

  • Recording to removable media

    Is it possible to transfer recorded programs from the DVR to a DVD or VHS tape?  Is it possible to record directly to my computer hard drive and/or DVD?

  • Import data - errors: IMP-00017, IMP-00003, ORA-04052, ORA-00604, ORA-12154

    When I try to import data from dmp file to my database I found errors whitch repeat all time.. First console show me: IMP-00017: following statement failed with ORACLE error 4052 then show all procedure in which there are errors. After procedure I've

  • Standard transaction for Feedback management

    Hi, Can you please give the details and  transaction code of  standard transaction feedback management . Regards, Siva

  • Method in custom controller not getting called from view

    Hi experts, I have a very strange problem. My web dynpro application works fine on the development portal. i am in the process of deploying to the production portal there is no issue it deploys perfectly without any problems. However i have noticed t

  • Keithley 2400 voltage Issue

    Hello, I am using Labview 2010 to try to control a Keithley 2400 Sourcemeter by GPIB.  I am using the labview drivers from the Keithley 24XX drivers package which I downloaded from the "Find Instrument Drivers" in Labview.   I am trying to use the de