Can I insert into a form build in FORMSCENTRAL, a Formula with the numerical data that are updated by a given formula, like in Excel?

Can I insert into a form build in FORMSCENTRAL, a Formula with the numerical data that are updated by a given formula, like in Excel?

Hello danna,
please have a look there as a first step: http://helpx.adobe.com/acrobat-com/formscentral/topics.html  >>> Formula syntax for built-in functions  >>> http://helpx.adobe.com/acrobat-com/formscentral/help/formula-syntax-built-in-functions.htm l
Hans-Günter

Similar Messages

  • How many elements can I insert into a form?

    When creating my form I received a notice that I had reached the maximum number of elements for my form!  I was near the end stages of my design, Ouch! 
    What can I do?  Is it possible to cut and past sections of my form to create a new form(s) and link it all together?

    I am limited to the amount of check box elements I can insert into a form by Adobe Forms Central.
    I would like to insert another 200-250 more check box elements to complete my form. 
    Will upgrading to the next package (Unlimited Forms) help me in completing this task or should I look for another solution? 
    Any help and suggestions would be greatly appreciated.
    lpqn wrote:
    When creating my form I received a notice that I had reached the maximum number of elements for my form!  I was near the end stages of my design, Ouch! 
    What can I do?  Is it possible to cut and past sections of my form to create a new form(s) and link it all together?

  • Can not open PLLs on Forms Builder 10g

    Hi Folks,
    everytime I try to open an existing PLL-File via the Forms Builder FileOpen-Dialog I have got the message
        PDE-PLI018 Couln not find library
        Drive:\Path\LibName.pll
    Pressing the OK-Button returns to the FileOpen-Dialog. The selected FileType in the Dialog take effect to the filelist but nothing else.
    Note that the file exists and I select it from the Filelist!
    About Forms Window shows the following:
    Forms [32 Bit] Version 10.1.2.0.2 (Production)
    Oracle Toolkit Version 10.1.2.0.2 (Production)
    PL/SQL Version 10.1.0.4.2 (Production)
    Oracle Procedure Builder V10.1.2.0.2 - Production
    PL/SQL Editor (c) WinMain Software (www.winmain.com), v1.0 (Production)
    Oracle Query Builder 10.1.2.0.2 - Production
    Oracle Virtual Graphics System Version 10.1.2.0.2 (Production)
    Oracle Tools GUI Utilities Version 10.1.2.0.2 (Production)
    Oracle Multimedia Version 10.1.2.0.2 (Production)
    Oracle Tools Integration Version 10.1.2.0.2 (Production)
    Oracle Tools Common Area Version 10.1.2.0.2
    Oracle CORE     10.1.0.4.0     Production
    While converting from 6i to 10g it is unavoidable to convert forms and libraries, so please help me!
    PS: I can recompile forms with attached libraries if the PLX-Files (6i) are available, but the forms will not work with these PLX-Files.
    edited by ths:
    I tried to generate a new library. This works fine until I saved it. After naming the library and pressing the save button in the dialog the pll file was created and the same error message appears.
    I closed form builder and tried to reopen the library: same error.
    I generated another new library and save this by selecting the first new I generated. Jippee! I get the message that the file already exists! I selected "overwrite" and the file was overwritten. After that the same error appears.
    How can I (re)open PLL files? It is no solution to generate a new library overwriting the old one everytime some changes should made.
    Trying to build the library (Ctrl+T) produces another error:
        FRM-91507: Internal Error: Unable to generate library.
    Compiling (Ctrl-Shift-K) works fine.

    Hi Mark,
    there's no user except of me on the pc and server (I'm working via rdp-client on a virtual server), no server and no oc4j task or instance started. The one and only program that runs is forms builder. The error occurs if I just try to open a pll file via the file open dialog of forms builder.
    With my admins we found that forms builder creates a (temporary) file (e.g. s22o without extension with 827392 bytes) in c:\ but only if I'm the actual user. After I'm getting the permission to create and update files on c:\ forms builder was able to open pll files. Now we're trying to find out why this accurs only on my login. With other users we tried these file was created on F:\ which is the personal drive of the user. I'm only wondering about the fact that temporary files were not created in the TEMP folder defined by the TMP or TEMP environment variable.
    So we solved this unusual problem in an unusual way.

  • Can't insert into nested table

    I can't inserted into a nested table and my SQL is listed below.
    SQL> CREATE TYPE naming_t AS OBJECT (name VARCHAR2(30), alias VARCHAR2(30)) NOT FINAL;
    2 /
    Type created.
    SQL> CREATE TYPE terminal_t;
    2 /
    Type created.
    SQL> CREATE TYPE terminal_t_nt AS TABLE OF REF terminal_t;
    2 /
    Type created.
    SQL> CREATE TYPE connectivitynode_t UNDER naming_t (terminals terminal_t_nt) NOT FINAL;
    2 /
    Type created.
    SQL> CREATE TYPE connectivitynode_t_nt AS TABLE OF REF connectivitynode_t;
    2 /
    Type created.
    SQL> CREATE TYPE terminal_t UNDER naming_t (connectivitynodes connectivitynode_t_nt) NOT FINAL;
    2 /
    Type created.
    SQL>
    SQL> CREATE TABLE naming_tb     (name VARCHAR2(30), alias VARCHAR2(30));
    Table created.
    SQL> CREATE TABLE connectivitynode_tb (name VARCHAR2(30), terminals terminal_t_nt) NESTED TABLE terminals STORE AS terminals_tb;
    Table created.
    SQL> CREATE TABLE terminal_tb     (name VARCHAR2(30), connectivitynodes connectivitynode_t_nt) NESTED TABLE connectivitynodes STORE AS connectivitynodes_tb;
    Table created.
    SQL>
    SQL> INSERT INTO naming_tb (name) VALUES ('AP1.132.B/C.T1');
    1 row created.
    SQL> INSERT INTO terminal_tb (name) VALUES ('AP1.132.B/C.T1');
    1 row created.
    SQL> INSERT INTO naming_tb (name) VALUES ('AP1.132.B/C.T2');
    1 row created.
    SQL> INSERT INTO terminal_tb (name) VALUES ('AP1.132.B/C.T2');
    1 row created.
    SQL>
    SQL> INSERT INTO naming_tb (name) VALUES ('AP1.132.B/C.N1');
    1 row created.
    SQL> INSERT INTO connectivitynode_tb (name) VALUES ('AP1.132.B/C.N1');
    1 row created.
    SQL> INSERT INTO TABLE (SELECT terminals FROM connectivitynode_tb WHERE name='AP1.132.B/C.N1') SELECT REF(p) FROM terminal WHERE p.name='AP1.132.B/C.T1' OR p.name='AP1.132.B/C.T2';
    INSERT INTO TABLE (SELECT terminals FROM connectivitynode_tb WHERE name='AP1.132.B/C.N1') SELECT REF(p) FROM terminal WHERE p.name='AP1.132.B/C.T1' OR p.name='AP1.132.B/C.T2'
    ERROR at line 1:
    ORA-00942: table or view does not exist

    I think you dont have the table terminal referred in following select statement
    SELECT REF(p) FROM terminal WHERE p.name='AP1.132.B/C.T1' OR p.name='AP1.132.B/C.T2';
    Chandar

  • What type of line card can be inserted into 7606 or 6509?

    what type of line card can be inserted into 7606 or 6509? Please, differentiate them! Thanks

    Hi,
    It depend on what IOS version you are running. Older IOS version will not support newer line card. Is there any line card you want to insert between the 7600 and 6500?
    Regards,
    jerry

  • Forms Builder / SAP Demo News / Where is the Savepath specified?

    Hi there,
    i just want to check out how the forms Builder work and if i can use it for some little things in our Portal.. so i wanna try the SAP Demo News....
    So i think i check how it works.. but i have only one question.. where in the Forms Builder in SAP Demo News is specified where the news are saved when i write one?
    So the Standart Path is: \documents\News
    So what is if i want to change the path to:  \Documents\xyz
    Where in the Form i have to specifie this?
    Regards
    Bjoern

    Hi,
    Chk this thread.. [http://forums.sdn.sap.com/thread.jspa?messageID=1503773]
    You can pass the path as parameter (post/path=) to the url.
    For example
    http://server/irj/servlet/prt/portal/prtroot/com.sap.km.cm.xmlformedit?XMLFormID=new_form&post/path=/documents/UserMessages
    Also change the configuration of km folder to your new folder. This will alow to edit the news directly from km folder.
    Go to System administration -> System configuration -> Knowledge Management -> Content Management -> Form Based Publishing -> forms availability.
    Creat an id with the following properties -  the folder path within which the form has to appear for e.g., /documents/News and under the Forms to Include - Mention the XML forms to be included.
    Please check the below document.
    [http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/ee639033-0801-0010-0883-b2c76b18583a]
    Regards
    Baby

  • How can i insert to word number pages after 6 pages but considering the pages before

    how can i insert to word number pages after 6 pages but considering the pages before.

    I assume this is Microsoft Word, and you want the first six pages to have no footer, subsequent pages to have a footer showing the page number.
    1. Insert a section break after the first six pages.
    2. Insert page numbers. This will add a footer with page numbers to both sections.
    3. Unlink the section 2 footer from the section 1 footer. [Click in the footer area, uncheck Link to Previous in the Header and Footer toolbar.]
    4. Delete the page number from the section 1 footer.
    Your document will now show page numbering on all pages starting with section 2.

  • 11g forms builder is not able to initiate the Internet explorer

    Hi,
    my problem is that my forms builder is not able to open the form in IE during compilation if Internet explorer is not already running but it is able to open the form in a new tab if Internet explorer is already running.
    My system's specifications :-
    Oracle forms builder 11g
    Windows 2008 SP2
    Internet explorer version :-Internet explorer 9
    Please help.
    Thanks,
    RS

    1. In the Builder verify that you have valid values for the Application Server URL and Browser Location fields in the Builder Preferences Runtime (tab). Do not leave either field blank.
    2. In the browser settings, on the Advanced tab, scroll down to the Security section and check the box labeled, "Allow active content to run in files on My Computer".
    3. Click Ok to save the changes. Close ALL open browsers
    4. Retest

  • Still can't sign into icloud in system preferences after many calls with support.  Beyond frustrated!

    Still can't sign into icloud in system preferences after many calls with support.  Beyond frustrated!

    Do you have 2-step verification on for your Apple ID?  I may have a solution.
    When I upgraded to Yosemite and subsequently updated my Apple ID, I would get errors when I tried to sign into iMessage and FaceTime using my apple ID (and my new password), I similarly was not able to sign in.  On FaceTime, I would get errors like "unable to sign in at this time" or some times just nothing at all (the spinning 'processing' graphic would grind away until it presumably just timed out). 
    Turns out that I enabled 2-step notification on for my Apple ID (totally forgot about it, I set it up a couple years ago), and apparently the regular Apple ID password that you choose is not usable when you try to log in to iMessage or FaceTime through the programs themselves (intuitively, this makes sense since these programs do not have a way to prompt you for the "2nd step" code). 
    To solve, you have to log in to your Apple ID online (appleid.apple.com or whatever), and look for the option to "Generate App-Specific Passwords".  These are unique, random passwords which are made to work around issues like these since they can be used in iMessage or FaceTime or what not.  This is the same idea as to what you have to do to log into gmail on your iPhone if you have Google 2-step verification on.
    This solved my issue (after lots of swearing and hair pulling!).  Would have been nice if a I got some sort of warning when updating my Apple ID password that "Hey, you have 2-step enabled.  Go make some app-specific passwords or you will lose 5 hours of your life trying to solve this mystery"
    Hopefully this may solve yours

  • I can successfully log into my you tube acct. on my PC, but the IPad youtube app will not recognize my login.

    I can successfully log into my you tube acct. on my PC, but the IPad youtube app will not recognize my login.

    First, check the caps lock on your PC keyboard. I know this sounds a bit silly, but we've all done it. If it turns out caps lock was on, then just enter all caps on the iPad.
    If that's not the problem, try opening Notes and type your password sonyouncan see it. If you're not getting what you expect, try slowing down.
    Let me know how that goes, andvI'll try to come up with a few more troubleshooting options.

  • I just downloaded the latest version of firefox (5.0). Can I delete all the older versions that are still on my drive? 2) When I call up some web sites sometimes the web site comes up 3 or 4 times...how do I stop this from happening?

    I just downloaded the latest version of firefox (5.0). Can I delete all the older versions that are still on my drive?
    When I call up some web sites sometimes the web site comes up 3 or 4 times...how do I stop this from happening? For example if I click on a link the exact same link comes up 3 or 4 times and I have to manually delete all of them but one.

    Do you organise your email into separate folders, or do you just let it accumulate in the Inbox?
    I would strongly advise you not to let it sit in the Inbox.
    When you see this happening, try right-click on the affected folder, select '''Properties''' then '''Repair Folder'''.
    Large folders (actually, a folder in Thunderbird is stored as a file, so it is sensitive to file size limits set by the underlying file system) can be problematic. This is one reason not to let messages collect in one folder. I use Thunderbird's Archive folders so that accumulated mails over several years can happily coexist because they are effectively stored in many small folders. No single mail store folder then exceeds the 2GB or 4GB sizes that have been known to stress the OS. I appreciate that current builds of Thunderbird and a modern 64-bit OS should be able to cope, but practically I find it slows down when given huge files, so I err towards a pragmatic solution; a large number of not very big files.
    Archives are searchable, and a Saved Search folder can give you a virtual composite folder allowing access to the entire Archive.

  • Hi, I am using HP11 and iPlanet web server. When trying to upload files over HTTP using FORM ENCTYPE="multipart/form-data" that are bigger than a few Kilobytes i get a 408 error. (client timeout).

    Hi, I am using HP11 and iPlanet web server. When trying to upload files over HTTP using FORM ENCTYPE="multipart/form-data" that are bigger than a few Kilobytes i get a 408 error. (client timeout). It is as if the server has decided that the client has timed out during the file upload. The default setting is 30 seconds for AcceptTimeout in the magnus.conf file. This should be ample to get the file across, even increasing this to 2 minutes just produces the same error after 2 minutes. Any help appreciated. Apologies if this is not the correct forum for this, I couldn't see one for iPlanet and Web, many thanks, Kieran.

    Hi,
    You didnt mention which version of IWS. follow these steps.
    (1)Goto Web Server Administration Server, select the server you want to manage.
    (2)Select Preference >> Perfomance Tuning.
    (3)set HTTP Persistent Connection Timeout to your choice (eg 180 sec for three minutes)
    (4) Apply changes and restart the server.
    *Setting the timeout to a lower value, however, may    prevent the transfer of large files as timeout does not refer to the time that the connection has been idle. For example, if you are using a 2400 baud modem, and the request timeout is set to 180 seconds, then the maximum file size that can be transferred before   the connection is closed is 432000 bits (2400 multiplied by 180)
    Regards
    T.Raghulan
    [email protected]

  • Can I populate a text field in one PDF with the modification date of a different file ?

    Rather convoluted problem here but I'm trying to place a text field on a PDF document that serves as the main menu page for a library of interlinked PDF documents
    The complete library contains over 7,000 files and additions are added and documents changed almost daily.
    We currently use batch files to open the main menu from it's shortcut and this runs a check on a sync log file (.txt) to ascertain when the last time the user synchronised with the server to get the latest copy of the files.
    Between a certain time range they are told how long it has been since they sync'ed and are offered the option to sync before opening, after a prescribed timeframe they cannot enter without synchronising. We use Allways Sync to conduct the file synchronisation with our mother files on our server.
    What I'd like to do is take advantage of Allways Syncs automatic synchronisation options to synchronise on log on and at prescribed idle periods there after.
    This works fine but I'd like the text field on the main menu PDF to say when the last synchronisation took place - easy if the main menu is the last file modified .. just use info.modDate.
    However, the main menu is rarely modified therefore I wish to import the text to populate the text field from a different file.. either by interrogating the other files modifictaion data (though I doubt Acrobat can do this) or by simply importing some text stored in another file (a .txt file?) which has previously been created by batch file commands.
    Any assistance would be greatly appreciated.
    Regards,
    Nifty Styles
    (Norfolk, England)
    P.S.  I'm using Acrobat 8.3.1. Professional on Windows XP (SP3).

    Thank you for all your help above.
    Just to confirm your advice, am I right with the following conclusions? :
    1. The script (function) to fill the text field with the modification date of a different PDF file needs to be stored in a folder level .js file.
    2. The document containing the text field needs to call the .js function either within the document script or within the custom script property of the text field itself.
    Further to that can you just advise on the syntax for accessing the modification date of the other document.
    Do I need to assign a variable to the address of the file to be used, and then use this variable in the text form filling script (as below) or can I use a direct file reference at the .modDate command.
    var LastSync = "C:\sync\bin\lastsync.pdf";
    var strMsg = util.printd("h:MM tt",LastSync.modDate) + " on ";
    strMsg += util.printd("dddd, d mmmm, yyyy",LastSync.modDate);
    this.getField("LastSyncDate").value = strMsg;
    If the syntax is totally different to the above I would be very grateful for some guidance in the right direction.
    I much appreciate your time to help me ... I'm almost there.
    Kind Regards,
    Nifty

  • DeserializeJSON - is there a limit on the size of the JSON data that can be converted?

    I have some valid JSON data that's being converted successfully by DeserializeJSON... until it gets to a certain size, or that's certainly what appears to be happening.  The breaking point seems to be somewhere in the neighborhood of 35,000 characters... about 35KB.  When the conversion fails, it fails with a "JSON parsing failure: Unexpected end of JSON string" message.  And when the conversion fails, the JSON data is deemed to be valid per tools like this one:  http://www.freeformatter.com/json-validator.html.
    So, is there a limit on the size of the JSON data that can be converted by DeserializeJSON?
    Thanks!

    Thanks Carl.
    The JSON is being submitted in its entirety, confirmed by Fiddler.  And it's actually being successfully saved to a SQL Server nvarchar(MAX) field too.  I can validate that saved JSON.
    I'm actually grabbing the JSON to convert directly from the SQL Server, and your comments / thoughts led me down the path of resolution.
    Turns out that the JSON was being truncated prior to getting to the DeserializeJSON command, but it was the cfquery pull that was doing the truncating.  The fix was to enable "long text retrieval (CLOB)" for this datasource in CF Admin.  I'd never run into that before or even knew that this setting existed.
    Thanks again for your comments!

  • Can't download the latest iTunes. A window pops up... The update could not be verified. It may have been corrupted or tampered with during downloading. The update will be downloaded and checked again the next time that Software Update runs. No iTunes now.

    Can't download the latest iTunes. A window pops up... The update could not be verified. It may have been corrupted or tampered with during downloading. The update will be downloaded and checked again the next time that Software Update runs.
    Now, iTunes won't launch and can't be updated. Please help.
    If I have lost my music collection I will be switching platforms ASAP. It is insane that Apple has updates seemingly every day for their products.

    I was in your same situation with 14 downloads and 14 attempts. 
    You have to make sure that your Mac is booting into 64 bit mode.  You can make sure of this by going into System Preferences and scrolling down to 'Software' and making sure that you are booding with 64 bit Kexts. 
    If not, restart while holding the 6 and 4 keys down until you see the spinning gear wheel and try installng again. 
    BUT, what I also did was to go into Applications, click on the Lion installer, Get Info, and give yourself custom priviliges to Read And Write. 
    I did this simultaneously, and I don't know what function did it, but it worked for me, with no further downloads of the installer. 
    Good luck! 

Maybe you are looking for

  • BDC Call Transaction - Doc.No not getting generated in Message Internal tab

    Dear All, I am using BDC Call Transaction method for uploading data for transaction, Iam able to successfully capture the Error messages, sucess messages and the transaction number is also displayed for the bdc run in Mode A, but in case of schedulin

  • Error in Accessing Virsa Firefighter

    Hello Friends, I have installed Virsa FF 620_47 & assigned all roles Like administrator,FF & Owner.I have Done all the Configuration part & When i click on LOG ON Its shows the below error.I have updated the virsa support pack to Latest 10.I cannot s

  • Can't restore my iphone after failed update.

    I just updated my Iphone 4 to IOS 7.0.3, it worked for a few hours then put itself into recovery mode. I tried to restore it through iTunes, and it says that I have to restore and update my iPhone. I did that and now it is saying that it cannot resto

  • /CCM/MINIMUM_QUANTITY[1]#/CCM/QUANTITY_VALUE

    Dear all, we try to upload a csv 2.0 file. Everything works fine when we don´t use "/CCM/MINIMUM_QUANTITY[1]#/CCM/QUANTITY_VALUE" and "/CCM/MINIMUM_QUANTITY[1]#/CCM/UNIT_CODE" But we need the fields. Which value is expected from CCM in this field? "/

  • Af:inputDate that shows and picks only time

    Hello everyone. I'm using jdev 12.1.3 In an af:inputDate component I have specified the type (in the converter) to be time. So, the user sees in the display only time. In the ui, next to the af:inputDate field there is always the date and time picker