Number of decimals in an application

Hi all,
I need to change the number of decimals in some applications, and have been reading some threads about it. I have found some different explanations, and I would like to make sure of how to do it.
1) What do the numbers in the parameter SIGNED_DATA_FORMAT mean? For example 25,10 means:
      a) we have 25 digits to the left of the comma and 10 to the right, like 1234567891234567891234567.1234567890
      b) we have 25 digits in total and 10 for the decimals, like 123456789123456.1234567890
2) If the correct answer to the previous question is "b" (I think that is the correct one), 25 is the maximum amount of numbers we can have? Could we set 50,15?
3) what is the correct way of inputting the value in the parameter (in BPC Web Admin Application parameters)? (I mean, like 25,10 or (25,10) or "25,10" or 25.10 or.....). We had a problem some time ago with this ( Full Optimize Problem ).
4) so, to make the modification, we should first set the parameter in an application, then make a copy of the application (the new one will have the number of decimals changed), then delete the first application, right?
Thank you very much,
Rafael

Hi Sorin,
thank you very much for such a clear answer.
Regarding the question of how to give the parameter value, we did input once 25,10 and ended up in an error upon "modify application" execution. We actually had to delete that entry (Full Optimize Problem) because BPC seemed to not like the comma at all in the tblDefaults table where that value is written (by the way, we did delete it through web admin as you suggested, not directly in the table, -almost- never delete directly from the table
If just a plain 25,10 is the appropriate value, do we need to delete that value from Web Admin once the application has been copied and processed? Should we rather not have any problem at all by inserting 25,10 in Web Admin?
Thank you,
Rafael

Similar Messages

  • Number of decimals in the stock, availability tab.

    Hi,
    Dose anybody know if it is possible to change the number of decimals that appear in the availability tab, in the stock. It appears 3 decimals (as is defined in the data type).
    any clue???
    thanks for your attention
    best regards.
    Jorge Vigo

    Hi Sorin,
    thank you very much for such a clear answer.
    Regarding the question of how to give the parameter value, we did input once 25,10 and ended up in an error upon "modify application" execution. We actually had to delete that entry (Full Optimize Problem) because BPC seemed to not like the comma at all in the tblDefaults table where that value is written (by the way, we did delete it through web admin as you suggested, not directly in the table, -almost- never delete directly from the table
    If just a plain 25,10 is the appropriate value, do we need to delete that value from Web Admin once the application has been copied and processed? Should we rather not have any problem at all by inserting 25,10 in Web Admin?
    Thank you,
    Rafael

  • How to limit number of sessions for an Application

    Hi,
    I have an ASO application running on Essbase 7.1.5 version.
    This Essbase cube is widely used by the BO ( business objects ) Web I services for retrieving data in there Dash Boards.
    No I want to restrict number of sessions on this application. We have SERVERTHREADS through which we can set limit on application wise.
    SERVERTHREADS [application] 20;
    When I set this in the Essbase config file on this server and bounce the Essbase services. Will this really help me in limiting the session till 20 for this application . I see we can set minimum 20 and maximum 500 using server threads.
    What will happen to the session which excceds 20. will they be kept in queue ?.
    Pls let me know if this work. Else pls suggest me the best one.
    Some information for you – in the Essbase ->properties->statistics-> I see Ports Available are 65531
    Thanks
    MS

    HI,
    1. SERVERTHREADS does not contain/limit the count of sessions one can have .
    2. Count of ports will help you decide what is the default SERVERTHREAD count , in your case its 20.
    3. the count 20 signifies the number of threads which a transaction can use ( here threads are nothing by the operating system level threads, to do with the processes and processor).
    4. If you have multiple transactions and you want to improve the performance of them ( in case of slow response or so). You can increase the thread count , to make more threads work for your transactions. Again , this does not limit the count of sessions .
    5. I did not understand the obejctive behind limiting the sessions and avoiding users from accessing . I think , this defeats the whole purpose of having cubes then. You have many cubes ,and huge number of users who pull data and essbase and its kernel are capable of handling this . If you still want to restrcit, might as well set their security ( by letting them not to access cubes).
    Hope this adds value
    Sandeep Reddy Enti
    HCC
    http://hyperionconsultancy.com/

  • How can i add one phone number to my macbook pro application imessage

    how can i add one phone number to my macbook pro application imessage

    Make sure that the iPad is using the same Apple ID as your iPhone. If the phone number still doesn't appear, log out of iMessage on both devices, log back in on the iPhone, wait until it activates, then log into iMessage on the iPad with the same Apple ID.

  • Maximum Number of Pages in an Application

    What is the maximum number of pages in an application?
    Numerically what would that range be? From 0 to n?

    Greg - There is no practical limit.
    Scott

  • Max number of pages within an application

    Hi Gurus,
    Does somebody know if there is a limitation in term of number of pages within an application ?
    Thks in advance.
    Thierry

    We have apps with several hundred pages (I think 350 is the most we have in a single app). I think the real issue is how many total pages you have (all apps, all workspaces) as this could theoretically cause performance issues. Fortunately, the nice folks at Oracle have a real world scenario that will continue to outpace just about anything else--the hosted ApEx environment. It has thousands of workspaces with an incredible total number of pages. I have not experienced any issue with that environment, so I think the rest of us are quite safe.
    Anton

  • Change Amount depending on number of decimals for a given currency

    Hi All,
    I have a requirement to change the amount field based on the number of decimals.
    I am using 'BAPI_CURRENCY_GETDECIMALS' to get the number of decimals for the given currency.
    I am having an amount field(say 3000.00), that needs to be changed.
    In our case, we have to change the amount field if the decimals are less or great than 2.
    Eg:
    Suppose, if no.of decimals is 2, then the same amount should be returned, i.e., 3000.00.
    If the number of decimals is 1, then the amount value should be multiplied by 10, that is 30000.0 should be returned. If the number of decimals is 0, then the amount value should be multiplied by 100, that is 300000 should be returned.
    If the number of decimals is 3, then the amount value should be divided by 10, that is 300.000 should be returned. If the number of decimals is 4, then the amount value should be divided by 100, that is 30.0000 should be returned and so on.
    Any pointers would be helpful..
    Thanks & Regards
    Gowthami

    Hi All,
    This logic works fine for multiplication. But checking conditions for decimals > 2 would involve many conditons.
    I think this can be achieved by two ways.
    First way is by concatenating number of zeros to 1 depending on decimals and either by dividing or multiplying the values by checking the condition.
    Second way is by shifting the decimal point either left or right depending on the decimals.
    Please help me in implementing the above.
    Thanks & Regards
    Gowthami

  • -1 number of messages in messages application

    Hi,
    Did anybody see -1 number of messages in messages application notification ?
    I took screenshot quickly when i saw that. after that it disappear.
    Just curious what causes that.

    The only pure JMS solution is to create a QueueBrowser, iterate and count. Most JMS providers have a more efficient but proprietary API to do the same thing.
    Dwayne

  • KONV-KAWRT number of decimals

    The condition base value of a condition is always stored with 2 decimals in KONV-KAWRT, regardless of the actual number of decimals which depends on the unit in KONV-KMEIN. For example, 500 G (gram) is stored as 5000.00 G because G really has 3 decimals.
    When viewing a condition in VA03 or VF03, SAP will show the condition base value with the right number of decimals.
    My question: how can I determine the actual number of decimals myself? I thought it might be in T006-ANDEC, but that's not it.

    Dear Filip,
    Try the following simple syntax:
    DATA: FLD(8) TYPE P DECIMALS 2,
    DEC TYPE P.
    DESCRIBE FIELD FLD DECIMALS DEC.
    DESCRIBE FIELD KONV-KAWRT DECIMALS DEC.
    Regards,
    Pranav.

  • How do I specify the build number when deploying an iOS application (not version number)

    I'm looking for a way to specify the application's build number when deploying an iOS application.
    Currently in the -app.xml file, you can specify a version number by using:
    <versionNumber>1.0.24</versionNumber>
    But when submitting to the iTunes Connect store, I want to be able to submit the new updates as a build change, and not version change to avoid the approval process again.
    Can this be done ?
    Thanks in advance.
    -Daniel

    Hi Gig52,
    Unfortunately, there is no way for you update/modify/increment the build/version number information from the command line. You will have to set that via the Project Explorer. You could check the box labeled Auto Increment in the Version Information property to have the version number automatically increment each time you build your application.

  • Normalization function & number of decimals

    While using the normalization function within Q. Designer to calculate share of markets, I can't seem to be able to set the number of decimals. It sets it automatically to 3 numbers after the comma...
    I've tried to make reference to it in a new formula, scaling factor, dimension free, etc..
    Is it normal?
    A.

    Hi Alex,
    Seems like it's the original format in BEx, we can't change the number of decimals. It's like the currency code which is always displayed next to the numbers.
    Maybe what you can do, it's to change the format in excel or create a workbook.
    Hope this helps.
    Cheers,
    Mona

  • KP06 cannot enter number with decimals in fxd. consumption

    Hi!
    When using transaction
    KP06 Change Cost Element/Activity Input Planning with
    Planner Profile SAP102,
    layout 1-102 Std.layout Activity input ActInd/ActDep
    we cannot enter number with decimals in field Fxd. consumption
    Field name MEF
    Data element MEFXXX
    When we enter number with decimals like 12,45 it gets rounded in 13.
    I have tried to change number format of this collumn from Not defined
    to 0,00 but this is not helping. The rounding still takes place.
    My question is where can I assign the unit (of measurement) for posting of quantities.
    Regards,
    Marina

    The UOM is assosiated with Activity Type, and has a certain number of decimal points in the definition of UOM.  The other place to influence decimal points in the proper planning layout (column settings).

  • Number field validation for all application pages

    Hi
    I am using apex version 4.0.
    I need to create number field validation for all application pages. if user press any character then display alert message. How it possible?
    Thanks

    >
    Hi Shiv,
    I am using apex version 4.0.
    I need to create number field validation for all application pages. if
    user press any character then display alert message. How it possible?This is an Apex question - point your browser here
    Oracle Application Express (APEX)
    HTH,
    Paul...

  • ALV column with variable number of decimals to be displayed

    Hi,
    I've an ALV where I need to display a numeric column with a variable number of decimal row-by-row, from 0 (no decimals) to 4.
    I've declared the numeric field as TYPE P DECIMALS 4.
    I've tried with DECMLFIELD in ALV catalog, and this works for 1 to n decimals, but when  I leave the field indicated in DECMLFIELD equal to 0, ALV shows the default number of decimals of the field (4 in that case).
    Any help will be very appreciated.
    Thanks.
    Jordi

    No, I didn't try EDIT_MASK.
    How should I use it to format output to display decimals or not depending on the row?
    I have 2 kinds of values, all stored in a TYPE P DECIMALS 4: Those that really are an integer (decimals should not be displayed for that ones) and the values that really have 4 decimals (which should be displayed with decimals in ALV).
    Example:
    13,0000 should be displayed as 13
    0,4567 should be displayed as 0,4567
    With EDIT_MASK could I do that?
    Thank you very much.

  • How can we specify the number of decimals to be printed

    How can we specify the number of decimals to be printed
    such as "%5.2d" in C.
    Can anyone help me

    You could use the DecimalFormat or NumberFormat to do the job.
    double number 1234.567;
    DecimalForamt df = new DecimalFormat("###.##");
    String s = df.format(number);or
    double number 1234.567;
    NumberFormat nf = NumberFormat.getNumberInstance();
    nf.setMaximumFractionDigits(2);
    /* if needed.
       nf.setMaximumIntegerDigits(value);
       nf.setMinimumFractionDigits(value);
       nf.setMinimumIntegerDigits(value); */
    String s = nf.format(number);I didn't test the codes but they should work. For more information, please consult the documentations.

Maybe you are looking for