delimiter of comma in the data entry form

Hello

Is can put the comma separator in numbers of planning entry form? I don't see any option to display numbers with comma separator. Please advice how to make it possible.

Thank you and best regards.

Hello!

I think that you can set the decimal separator in the settings of the application; default settings of application; display options. There you can select the separators for the application.

In case you want to use your own preferences you can do in the workspace: file-> Preferences-> click on schedule-> Display options tab, and then select number of formatting you want.

Kind regards
user637777

Tags: Business Intelligence

Similar Questions

  • How to change the DML processes in Assistant APEX generated the data entry form

    I created a standard form of the APEX on a table using the wizard of the APEX. Now, I added a new element to the page. How to change the DML insert statement to take care of this new item? any ideas are appreciated.

    Thank you
    Surya

    For the new item, just keep the type of Source as the "column of the database" and give the name of the column (the column for a new item name) under the "Source value or expression.

    See you soon,.
    Hari

  • communication error with the server. callback failed for the data entry page

    Hello

    We have recently applied the corrective update EMP on EMP 11.1.2.0 111.2.1.
    We have following the architecture,

    database server: sql server 2005
    Server Foundation (OS = windows server 2008): HSS, EPMA, Manager Calc, EAS, EIS, provider's server, planning
    Essbase Server (OS = windows server 2008): essbase

    After you apply the patching EMP 11.1.2.1, we apply after Electrodes for IE 9 compactibility i.e EMP 11.1.2.1.600 patches

    1. patch 14119724 (Workspace)
    2 14142678 patch (Shared services)
    3 patch 14224664 (EPMA)
    4 patch 14464109 (planning)

    After you apply above patches, all users get error when opening planning web form through the workspace of all client computer.

    "* error communication with the server. callback failed for the data entry page. "




    When restore us only planning patch 14464109 , issue of "communication error with the server. callback failed for the data entry page "get resolved for all users, but failed for a single user IE"user xyz" "

    the user xyz have OS = windows 7 and IE 8
    user xyz can take foundation server RDP can open any form of planning successfully in vain get when doing the basic machine.

    I have following question:
    1. Why do we get error "error communicating with the server. callback failed for the data entry page"after you apply the fixes to IE9

    2. after cancellation all patches or planning one patch, why the user xyz always get the error but not other users


    Thanks in advance

    Published by: 922755 on June 7, 2013 16:08

    It might be useful to have a read of the following doc Oracle Support - "error:"error Communication with the server. " "Callback failed for the data entry page" when you open a Web form of planning with the members of the Type of text [ID 1392689.1].

    And then this question should be resolved en.600

    See you soon

    John
    http://John-Goodwin.blogspot.com/

  • Numbers with comma in the data Cube Viewer

    Hello

    I want to know what to do to display numbers with comma in the data Cube Viewer. The data type of the measure in the cube is NUMBER (4.3). The default aggregation is AVERAGE. When I load the cube with the numbers of the exactly NUMBER format (4.3) - in the data Cube Viewer I see only rounded integer values without decimal point.


    If I load the test instead of cube table - the numbers are loaded in the correct format.


    What should I do to load the cube with point numbers? Is this possible in OWB?

    Now, I decided to use a way to go around it - simply put 1453 instead of 1.453. Then it works (but this isn't a great solution). It is the only way?

    Thanks in advance for any help

    Peter

    Hi Peter

    The cube data viewer has a toolbar with a lot of options... formatting, you can add and remove the numbers after the decimal point. From memory, I think you have to select the cells you want, you can click and select all the cells in the table and then use the button Add digits after the decimal point.

    See you soon
    David

  • Multiple queries on the same data entry form

    I hope I am in the right forum!

    I'm working on a data entry screen that is interfaced with a data base for pre-determined entries.  The user will choose the first name of the Member, not problem here, then using this last name, a list of names that match the last name.  Here's what I have so far:

    < CFQUERY DATASOURCE = "cfissues" Name = "LNameQry" >

    SELECT LastName

    Members

    ORDER BY name

    < / CFQUERY

    < CFQUERY DATASOURCE = "cfissues" Name = "FNameQry" >

    SELECT FirstName

    Members

    WHERE LastName = #LastName # (' #LastName # ') (#FORM. LastName #)

    < / CFQUERY

    <!--- ================== --->

    < CFSELECT NAME = 'name '.

    QUERY = "LNameQry."

    VALUE = 'value '.

    etc.

    < / CFSELECT >

    The user selects a member of family name.  Using this name, I want to run the FNameQry query that retrieves all the names that correspond to this last name chosen by the CFSELECT statement.  In this way, the drop-down list for the first name field contains only the names of skills (not all 7,000 on the database!).  I have more to do beyond that, but just to get this first part of work would be of great achievements.

    I have used various combinations of the name chosen by the CFSELECT run FNameQry, but nothing seems to work.  I get an error on LASTNAME is not defined.

    I guess I need to (somehow) define a variable that will be filled with the value selected in the CFSELECT statement and use it in the FNameQry?

    Hello

    Use isdefined "(form. LastName") for FNameQry

  • Custom values Format delimited by commas in the text as a bulleted list field?

    Hi all

    I have a text field in a Professional Acrobat 9.0 form, when the user enters a series of values separated by commas:

    A value of 1, the value 2, value 3...

    Is there a way to take these values and after the user has finished typing in the text field and deselected the text field, have the values to be displayed in a bulleted list, i.e.:

    < ul >

    < li > value 1 < /li >

    < li > value 2 < /li >

    < li > value 3 < /li >

    < /ul >

    I know it's pretty easy to do in other languages I know, but I do not know the JavaScript syntax. I guess I would need to put a script in the 'Script of custom Format"text field.

    Thank you!

    PS. In addition, it is important that when the user "re - selects" modifies the field to, who they see values as a string delimited by comma, instead of the updated list in shape. Just as the default behavior of a currency in the format of text... field when the user selects a currency field, Acrobat removes the dollar sign, etc., so that the user enters just the number without formatting and when they are done, Acrobat adds the name and commas, decimals, etc..

    You can do this by creating a script that launches after the new value is validated, and then you do the following (assume that the name of the field where you want the list is "txtfield"):

    MYLIST = "";
    myValue = event.value;
    mySplitValue = myValue.split(",");
    for (i = 0; i
    myList += ">"+ mySplitValue [i] + "\n"; '.
    }
    this.getField("txtfield").value = myList;

    (Note: this script is NOT tested)

  • help the date in form format

    Please, I need help in the date format, I student_info table

    in this table, I A_Date (student action date) S_ text_item in this article I want to display the date but my requirement, it's that in this text_field the date not later than the date of the calendar

    for example the date that I enter is not superior to day today so superior to see the msg

    Add WHEN-VALIDATE-ITEM trigger on your date column and add under query and then compile and run the form and check.

    IF S_A_DATE > TRUNC (SYSDATE) THEN

    MESSAGE ('ADD YOUR MESSAGE HERE');

    MESSAGE ('ADD YOUR MESSAGE HERE');

    RAISE FORM_TRIGGER_FAILURE;

    END IF;

  • Is there a way to extract the data from form using the Eloqua API?

    I'm looking to export all the data stored in any of my forms to treat elsewhere. Y at - it a facility within the API that will allow me to perform this export? For what I saw on the forum, the BulkDataTransfer service used to do this, however, is not available on Eloqua 10 and the beta version does not include this feature?

    See you soon!

    This is an old question, but for those who find themselves on this page, your best bet now is to export activity data submission of form through the REST in bulk API v2.0 (Bulk API v2.0 Documentation).

  • The data record form field to sql server database. Point me in the right direction

    I have Acrobat XI Pro and you have downloaded the SDK of XI.   At my first form savable.  My goal is to store the data in PDF form fields in a database.

    Can someone point me in the right direction.  I used to do 7-8 years ago, but it seems that the technology has changed and therefore the tools.  Thank you.

    PDF forms are submitted to a URL, still something that HTML forms are subject to a URL. It is an action that put you on a button.

    With HTML forms, you can only apply to HTML. You can also do with the PDF and the back-end can be quite similar except that you not return HTML, because the reader do not understand.

    However, it is normal to choose one of the other formats of FDF or XFDF. These are the same as the formats that you can export as part of the management of the form, and you should get comfortable with before submitting form data export/import.

    There are libraries in order to analyze the FDF. XFDF is XML, if use you standard XML analysis techniques. In a new application, go with XFDF.

  • How to force you to update to the date entry before you validate a text field?

    I have this code:

    Custom blur for txtWeekEndingDate script

    (function () {}

    var weekEnding = new Date (event.value);

    day of week var = new Array (7);

    day of week [0] = 'Sunday ';

    day of week [1] = "Monday";

    day of week [2] = "Tuesday";

    day of week [3] = "Wednesday";

    day of week [4] = "Thursday";

    day of week [5] = "Friday";

    day of week [6] = "Saturday";

    var dayOfWeek = weekday [weekEnding.getDay ()];

    var strWeekEnding = weekEnding.toLocaleDateString ();

    Do nothing if the field is empty

    If (! event.target.value) return;

    If the value is not a valid email address...

    If (dayOfWeek! = 'Sunday') {}

    .. .that the user knows that the value is not a valid end date of week...

    App.Alert ({CMSG: "you entered, '" + strWeekEnding + "". ""}) Please enter a date on Sunday. ', nIcon:3, nType:0, cTitle:this.documentFileName});

    .. .and set the focus on this field

    event.target.setFocus ();

    } / / endif dayOfWeek! = "Sunday".

    })();

    The problem is that if the user enters something like "1/1" in the input box (which has a date format defined in the properties of the text box in the "mm/dd/yyyy') it sets the variable weekEnding to"undefined ". Without the validation script, it properly changes the date "01/01/2013", but it seems that this change occurs after the execution of script OnBlur. How can I force the update occur before the script is run?

    When an entry of "1/1" gets converted to "01/01/2013", it is only for what is displayed in the field. " The value of the underlying field remains on "1/1". The point is the value of the field does not change, just what is displayed in the field. This means that there is no direct method to get the text that is displayed.

    You can add a custom script to Validate that changes a value entry of "1/1" to "01/01/2013".» Then, you would get just the value of the field to recover. If you want more help with this approach, after once again.

  • Oracle is how to change the functionality of a data entry form.

    Hi guys,.

    I'd like know if theres a way to retrieve and enter records in a form that is based on a single table, with this kind of functionality:
    -Enter the primary key (enter or tab), if the record exists then poster for edit and register.
    -If this is not the case exists, and then accept data in the fields and then save.

    This is because recently a customer migrate a small application of advanced forms of oracle revelation, and the people who use this registration form complains because they say that you need to type more keys to retrieve information.

    I know what it means to ignore the native functions to a form of oracle, but it's a question that I was invited.

    I apologize for my English.

    Jorge

    Good afternoon Jorge.

    Yes, you can do what you described. You can use a trigger when-validate-item to search for the key value the user has entered and then, if found, complete the rest of the screen. If the value is NOT found, you can just go to the next input value to allow the user to continue to enter the folder.

    Good luck
    Don.

    AWARDS: Don't forget to mark correct or useful posts on the forum, not only for my answers, but for everyone! :)

  • Entering the data in forms

    Hello

    In our data form, we are a member of the percntage type. Percentages of values appear correctly, but entry must be within the values between 0 and 1. Is it possible to enter values between 0 and 100%?
    For example, if we want to enter 50%, need input of 0.5 instead of 50 but our requirement is power to 50 instead of 0.5.

    Thanks in advance,

    Bring just to type the value with the percent sign, so, for example type in 55%

    See you soon

    John
    http://John-Goodwin.blogspot.com/

  • where are stored the data planning forms?

    If it is stored as a file on the server with a file extension
    or are they completely stored in the db tables?
    We want to use Forms data for version management and moving from DEV to QA forums etc.
    is it possible to do this?

    Planning forms can be exported (.xml) and imported into the target of planning an application.

    FormDefUtil.cmd is used for this purpose, it is present in the \Planning\bin folder

    Goto the location of stations (via cmd prompt) and use the syntax "formdefutil .

    The files would be saved in the same location and can be imported into the target of planning an application using the syntax above.

    I hope this helps.

  • Selection of data entry form Hyperion Planning

    Hi all
    I have a question about the structure of a data form.
    I need to create a form of data entirely in which and I selce some account element (parents and for children) on the line.
    Regarding this selection I want to know if is possible selection thi order in this way automatically: first all parents and ultimately children.
    Thanks for the help.
    Concerning
    E G

    Hello

    I think must manually enter members in this order, by default, he orders the children to appear before the parent.

    See you soon

    John
    http://John-Goodwin.blogspot.com/

  • Preferance pane window keeps popping open when the data entry or search in all fields. I'm also using 1Password and happens when you try to enter a password

    I'm running on Mac OS X 10.7.4, Firefox 14.0.1. This problem did not exist until this last update of Firefox. Basically, a preferences panel opens each time data is entered in a field. It doesn't seem to be the same preferences panel you see when you open preferences through normal access Firefox, IE. Firefox > Preferences. All the choices listed in this special preference pane are specific to Firefox. I have a screenshot that I could include if wanted. When you use the pane appears when you enter a search in the search bar near the address bar of 1Password the task pane opens, when entering data in any field because I am now filling in this report in detail pane also appears. It's pretty boring. Any advice? I will try systematically to leave any add-ons and see if that makes a difference. I have ave tried to do a reinstall without result.

    Isn't it always the case if you disable the other extension except 1Password?

    Start Firefox in Safe Mode to check if one of the extensions or if hardware acceleration is the cause of the problem (switch to the DEFAULT theme: Firefox/tools > Modules > appearance/themes).

    If this does not work in mode without failure, then disable all extensions and then try to find out who is the cause by allowing both the problem reappears.

    • Choose "Disable all add-ons" on the Safe Mode to set window to disable all extensions.
    • Close and restart Firefox after each change through "file > exit ' (Mac: ' Firefox > leave";) Linux: "file > exit ')

Maybe you are looking for