Display Total table with 3 decimal places

Hi people,

I wanted to display table Total for a column in the table with 3 Decimals.I have used the code below to set to 3 decimal places, but his does not work.

In the application process:

Formatter formatter = new OADecimalValidater ("#, ##0.000;(#,##0.000)","#, ##0.000;(#,##0.000)");

OAAdvancedTableBean expTable = (OAAdvancedTableBean) webBean.findIndexedChildRecursive ("ExpenseDtlsRN");

If (expTable! = null)
{
OATableFooterBean footerBean = (OATableFooterBean) expTable.getFooter ();
System.out.println ("footerBean:" + footerBean);
If (footerBean! = null)
{
OATotalRowBean totalRowBean = (OATotalRowBean) footerBean.getTotal ();
System.out.println ("Formattotal:" + totalRowBean);

totalRowBean.setAttributeValue (ON_SUBMIT_VALIDATER_ATTR, trainer);

}
}

Please help me I need very urgent.

Hi people,

I found the solution

Formatter formatter = new OADecimalValidater ("#, ##0.000;(#,##0.000)","#, ##0.000;(#,##0.000)");

    OAColumnBean ocb = (OAColumnBean) webBean.findChildRecursive ("column29816");
    ocb.setAttributeValue (ON_SUBMIT_VALIDATER_ATTR, formatter);

It worked for me

Tags: Oracle Applications

Similar Questions

  • I have a basic calculation, but I can't figure out how to make the total tower with two decimal places

    Here is the code I use. I looked everywhere, but I couldn't find answers on how to round specific numbers, not total String.

    Multitouch.inputMode = MultitouchInputMode.TOUCH_POINT;

    gccalculate.addEventListener (TouchEvent.TOUCH_TAP, fl_TapHandler_21);

    function fl_TapHandler_21(event:TouchEvent):void

    {

    var a: number = Number (input1.text) * Number (input2.text) *.01 * Number (input3.text).

    total.set_Text = String (a);

    }

    use toFixed():

    Multitouch.inputMode = MultitouchInputMode.TOUCH_POINT;

    gccalculate.addEventListener (TouchEvent.TOUCH_TAP, fl_TapHandler_21);

    function fl_TapHandler_21(event:TouchEvent):void

    {

    var a: number = Number (input1.text) * Number (input2.text) *.01 * Number (input3.text).

    total.set_Text = a.toFixed (2);

    }

  • View all numbers with 2 decimal places.

    Hi all

    We have a requirement in our code where we want all numbers must be displayed to 2 decimal places.

    For example: If a number is 21.234 then it should be displayed as 21.23
    If a number is 21.289 then it should be displayed as 21,28
    If a number is 21 so it should be displayed as 21.00

    Can someone help me please how do in a SQL query.

    Kind regards
    Shruti

    Hi, Shruti,

    This shows a couple of things you can do:

    COLUMN     trnc     FORMAT     999999.99
    
    WITH     got_x     AS
    (
         SELECT     empno / 1000     AS x
         FROM     scott.emp
    )
    SELECT     x
    ,     TO_CHAR (x,            '999999.99')     AS tc
    ,     TO_CHAR (TRUNC (x, 2), '999999.99')     AS trnc_tc
    ,     TRUNC (x, 2)                              AS trnc
    FROM     got_x
    ;
    

    Output:

    `        X TC         TRNC_TC          TRNC
    ---------- ---------- ---------- ----------
         7.369       7.37       7.36       7.36
         7.499       7.50       7.49       7.49
         7.521       7.52       7.52       7.52
         7.566       7.57       7.56       7.56
         7.654       7.65       7.65       7.65
         7.698       7.70       7.69       7.69
         7.782       7.78       7.78       7.78
         7.788       7.79       7.78       7.78
         7.839       7.84       7.83       7.83
         7.844       7.84       7.84       7.84
         7.876       7.88       7.87       7.87
           7.9       7.90       7.90       7.90
         7.902       7.90       7.90       7.90
         7.934       7.93       7.93       7.93
    

    Column x is the number, such as SQL * more it displays by default. Note there is as many digits after the decimal point are needed.
    TC column shows how TO_CHAR can put in shape the number with exactly 2 digits after the decimal point. This automatically rounds the number nearest multiple de.01, so on the first line (for example) 7.369 gets displayed as 7.37.

    user11272043 wrote:
    ... If a number is 21.289 then it should be displayed as 21,28

    You (apparently) still want the number rounded to 0, then the tc column isn't quite what you want.
    Column trnc_tc is exactly what you asked for, with the number rounded to 0 (when a rouning is possible) and 2 digits after the decimal point.
    TC column is also exactly what you asked, but he uses the language SQL * Plus formatting rather than SQL. In addition, TRNC column is a NUMBER, while the column trnc_tc is a VARCHAR2, because TO_CHAR, as its name implies, returns a VARCHAR2.

    SQL * more order

    SET   NUMFORMAT  999999.99
    

    change the default format for all the number of columns. If you use it, you can ignore it for individual columns using TO_CHAR (since it returns a VARCHAR2, the FORMATNUM does not apply), or an order of the COLUMN. Also, if you use the VALUE FORMATNUM 999999.99, you must still explicitly TRUNC each number, otherwise 21.289 will come out as 21.29, 21.28. not.

  • Display total records with the last record

    Hi all

    I have the following tables:

    create the table TRY_date_detail

    (

    item_date date,

    number of item_order

    );

    create the table TRY_date_master

    (

    date of master_date,

    number of date_amount

    );

    Insert all

    IN TRY_date_detail values (to_date('01-01-2011','DD-MM-YYYY'), 1)

    IN TRY_date_detail values (to_date('01-01-2011','DD-MM-YYYY'), 2).

    IN TRY_date_detail values (to_date('01-01-2011','DD-MM-YYYY'), 3)

    IN TRY_date_detail values (to_date('01-01-2011','DD-MM-YYYY'), 4)

    IN TRY_date_detail values (to_date('01-01-2011','DD-MM-YYYY'), 5)

    IN TRY_date_master values (to_date('01-01-2011','DD-MM-YYYY'), 6432)

    IN TRY_date_master values (to_date('01-01-2011','DD-MM-YYYY'), 1111)

    IN TRY_date_detail values (to_date('11-08-2012','DD-MM-YYYY'), 11)

    IN TRY_date_detail values (to_date('11-08-2012','DD-MM-YYYY'), 12)

    IN TRY_date_detail values (to_date('11-08-2012','DD-MM-YYYY'), 13)

    IN TRY_date_detail values (to_date('11-08-2012','DD-MM-YYYY'), 14)

    IN TRY_date_master values (to_date('11-08-2012','DD-MM-YYYY'), 8913)

    IN TRY_date_detail values (to_date('09-03-2014','DD-MM-YYYY'), 21)

    IN TRY_date_detail values (to_date('09-03-2014','DD-MM-YYYY'), 22)

    IN TRY_date_detail values (to_date('09-03-2014','DD-MM-YYYY'), 23)

    IN TRY_date_master values (to_date('09-03-2014','DD-MM-YYYY'), 1234)

    IN TRY_date_detail values (to_date('11-03-2014','DD-MM-YYYY'), 33)

    Select * twice;

    -My query is:

    SELECT ITEM_DATE, ITEM_ORDER, DATE_AMOUNT NULL

    OF TRY_date_detail

    WHERE ITEM_DATE IN (SELECT DISTINCT master_date OF TRY_date_master)

    UNION

    SELECT MASTER_DATE, NULL, SUM (DATE_AMOUNT)

    OF TRY_DATE_MASTER

    MASTER_DATE GROUP;

    -My query result:

    ITEM_DATE ITEM_ORDER DATE_AMOUNT

    January 1, 11 12:00:00 AM 1 (null)

    January 1, 11 12:00:00 AM 2 (null)

    January 1, 11 12:00:00 AM 3 (null)

    January 1, 11 12:00:00 AM 4 (null)

    January 1, 11 12:00:00 AM 5 (null)

    January 1, 11 12:00:00 AM (null) 7543

    11 Aug 12 12:00:00 AM 11 (null)

    11 Aug 12 12:00:00 AM 12 (null)

    August 11, 12 noon 13 (null)

    11 Aug 12 12:00 14 (null)

    11 Aug 12 12:00:00 AM (null) 8913

    9 March 14 12:00:00 AM 21 (null)

    9 March 14 12:00:00 AM 22 (null)

    9 March 14 12:00:00 AM 23 (null)

    9 March 14 12:00:00 AM (null) 1234

    -What I need, is to display the Date_amount with the last line of each date as follows:

    ITEM_DATE ITEM_ORDER DATE_AMOUNT

    January 1, 11 12:00:00 AM 1 (null)

    January 1, 11 12:00:00 AM 2 (null)

    January 1, 11 12:00:00 AM 3 (null)

    January 1, 11 12:00:00 AM 4 (null)

    January 1, 11 12:00:00 AM 5 7543

    11 Aug 12 12:00:00 AM 11 (null)

    11 Aug 12 12:00:00 AM 12 (null)

    August 11, 12 noon 13 (null)

    August 11, 12 12 00 14 8913 h

    9 March 14 12:00:00 AM 21 (null)

    9 March 14 12:00:00 AM 22 (null)

    9 March 14 12:00:00 AM 23 1234

    Thank you

    Ferro

    You have to JOIN to the table two

    SQL> select item_date
      2       , item_order
      3       , decode(rno, cnt, date_amount) date_amount
      4    from (
      5          select item_date
      6               , item_order
      7               , date_amount
      8               , row_number() over(partition by item_date order by item_order) rno
      9               , count(*) over(partition by item_date) cnt
     10            from try_date_detail
     11            join (
     12                   select master_date, sum(date_amount) date_amount
     13                     from try_date_master
     14                    group
     15                       by master_date
     16                 )
     17              on item_date = master_date
     18         );
    
    ITEM_DATE           ITEM_ORDER DATE_AMOUNT
    ------------------- ---------- -----------
    01/01/2011 00:00:00          1
    01/01/2011 00:00:00          2
    01/01/2011 00:00:00          3
    01/01/2011 00:00:00          4
    01/01/2011 00:00:00          5        7543
    11/08/2012 00:00:00         11
    11/08/2012 00:00:00         12
    11/08/2012 00:00:00         13
    11/08/2012 00:00:00         14        8913
    09/03/2014 00:00:00         21
    09/03/2014 00:00:00         22
    09/03/2014 00:00:00         23        1234
    
    12 rows selected.
    
    SQL>
    
  • How to tour calculations with two decimal places (scaling of the form)

    Hello

    I created an order form where customers enter the amount of product that they want to order and the form shows the total amount payable (including transport and sales tax). According to the user input, the amount total resulting sometimes contains more than two decimal places. How do I turn calculations to two decimal places? Is it possible to do this form on the scale?

    I'm new to using Acrobat for calculations. Any help would be greatly appreciated! Thank you...

    This should be:

    Event.Value = util.printf ("%.2f", event.value);

  • budgeted units with 2 decimal places.

    Is there a way to show unit budget up to 2 decimal places, normally when assign us values to automatically round of P6v7 decimal values.

    Go to Edition-> preferences-> units of time user-> in Format of the units, select decimal 2 drop down...

  • Digital formatting with Variable decimal places

    Acrobat 9 Pro, Windows XP

    I have created a form that has a number of text box form fields that must be numeric only by the applicant of the form. However, for any field data of this type, the number of digits that can be entered can vary from 0 to 3 and the applicant wants all decimal unnecessary to appear in the final output (for example, an entry "1.2" does not appear as "1,200"). The standard number formatting properties always show all decimals, so I know that it is not this way. No calculations will be made with one of these entries - the applicant form is simply enter data and then printing to make it readable for the end user.

    I know that the following line of JavaScript in the hit limit the digital input only Custom property, but how do I change the syntax to allow a decimal writing:

    Event.RC = (! event.change | / ^ \d$/.test(event.change))

    I probably also need a script to format for decimals, but I don't know where to look in the JavaScript for Acrobat QAnywhere or the JavaScript reference DND.

    Thanks in advance for any help.

    OK, here's a link to an example: https://workspaces.acrobat.com/?d=Xf5mboqmkpf-zRxB9MVAJw

    The code that is called in Format typing of the text events field and is in a JavaScript at the level of the document named "format". Post again if you have any questions.

  • Display a number with a decimal other que.00

    I have a question I want the result to display a number any that is not equal to, 00. For example, it returns 4.50 and 10 h 00. I want to see all that are not equal to, 00 only. So in this case it would return only 4.50. If it helps any amount of unit is my total inventory and the quantity of cases are the number of units per carton. I'm identification and partial cases.

    Here are the current instruction, but I don't know how to change this option to return the results I want.

    Inventory. «Unit Qty ' / inventory.» ' "Case Qty.

    Try this:

    For simplicity, is that your first column a B be your second column.

    (1) in your workspace, get another column and click the fx button.

    (2) type this:

    A / B - TRUNCATION (A/B, 0)

    (3) now, filter on this column, select the operand "not equal to/no in" and set it to 0.

    This will give you all lines that do not have 0 as the rest of the quotient A/b.

  • channel search and move decimal places

    Hello

    I'm writing the code looking for a fractional string in an array and convert MV V in order to be properly compared to the other fractional numbers of string in the table.

    I have a chart that displays x iterations each with a column of minimum and maximum, including several types of decimal strings (negative/positive with several decimal places) each end with mV and V (example of a string:-725.543mV).

    Then, I divided the table in columns that contain the minimum and maximum values for each iteration. I want to compare the minimum values for each iteration and find the minimum, and do the same thing with the maximum values.

    Unfortunately, the way that I do, when I convert a fractional string numbering it removes label the unit V or mV but does not convert the number of mV V. so he compares - 725.543mV with - 52.334V as - 725.543 &-52.334, declaring the minimum value mV. I need the program to recognize that mV is less than V, or search in each table for the values marked with mV and move the decimal place is to the standard format of V.

    The unit label is actually a part of the string and not the screen (as you can see in the code that I have attached) and I understand that it is a little tricky in the way I need to do. But it's a dumbed down piece of code that I have possibly fit in my largest program that reads the values and their units of several different types of oscilloscopes. The laid out the values as strings as they appear on the screen and don't make the difference between mV and V unless they are asked for units that the tags right on the end of the output string.

    I'm sorry for the great post. SO to sum up, I need to find a table to ensure that all values have the same units, if they are not I need to convert each value of the unit appropriate, then output the max and min to the resulting table. my code is attached. Thank you for your help.

  • How to make the calculation script to show 2 decimal places and stop rounding down to integers?

    Hello. First of all, thank you to those of you who have helped me create an interactive PDF file last year that worked perfectly if only integers are entered. This year, my client wants to show two decimal places in the calculations, and I'm back in this forum hoping to find the same expertise to make it happen.

    My form includes 43 fields for various monthly expenses. The sign of dollar for each field is part of the content of the form, not part of the scope of formatting. Users enter values directly in these fields, and the fields are formatted to display two decimal places. Each of these includes a the following validation script:

    Event.RC =! (event.value & & + event.value < 0);


    To the right of each of these fees, the fields are yes/no boxes ( expense Typecalled) that answer the question, "is this essential expense? The value of exports for Yes's 'essential', and the value of exports is "discretionary".


    A value entered in all areas of expenditure is directed to the field Total expenses by checking Yes or field Total discretionary spending by clicking No. two of these total fields are formatted to display two decimal places. In addition to long calculation scripts, the two totals fields include this custom validation script:

    If (event.value == "0") {event.value = util.printx ("", event.value)}

    Here's the problem: when values with two decimal places are entered in any area of expenditure, the calculation in two fields of total script rounded to the whole number closest. When 10.99 is entered in a field of expenditure and the Yes checkbox is checked, the value 10.00 is displayed in the field Total expenses . I want to display 10.99.

    For testing purposes, I inserted a new text field and did a simple calculation in choosing the fields of the somme and the values displayed correctly. The problem is definitely with the script in the two fields in total .


    I can drop the scripts of math here, but they are long and I'm not sure what the Protocol is super-long positions. I could also download the file, but I never did it and will need to understand this.

    Thank you for taking the time to read this. If you can help me, very well!

    To explicitly convert the field values for numbers, do something like this instead:

    var expense0 = + getField('monthly$.0').value,

    depenses1 = + getField('monthly$.1').value,

    etc.

  • Showing results with one decimal two. Force the decimal.

    Hello

    Im a simple computing of writing device.

    You enter a digit, press one of the two buttons to multiply by a number, and then the result is displayed. The result is copied hide the result from the button you press on and visa versa.

    I'm having a problem to display the result with a decimal point two constant.

    I'm using strings and so do not know how to do this.

    Here is my code:

    import flash.events.MouseEvent;

    restrict entry to only numbers textfield

    txtInput.Restrict = "0-9";

    restrict the input textfield only a two-digit

    txtinput.maxChars = 6;

    event listeners

    btnW.addEventListener (MouseEvent.CLICK, WHandler);

    btnC.addEventListener (MouseEvent.CLICK, CHandler);

    btnW.addEventListener (MouseEvent.CLICK, hideC);

    btnC.addEventListener (MouseEvent.CLICK, hideW);

    functions

    function WHandler (e:MouseEvent): void

    {

    calculation of white

    var answerW:Number = Number (txtinput.text) * Number (0.90);

    txtWResult.text = answerW.toString ();

    }

    function of CHandler (e:MouseEvent): void

    {

    calculation of the color

    var answerC:Number = Number (txtinput.text) * Number (0.99).

    txtCResult.text = answerC.toString ();

    }

    function hideC (e:MouseEvent): void

    {

    Hide the result color

    txtCResult.visible = false;

    txtWResult.visible = true;

    }

    function hideW (e:MouseEvent): void

    {

    Hide the white result

    txtWResult.visible = false;

    txtCResult.visible = true;

    }

    After having had a look online I found these two resources:

    http://helpx.Adobe.com/Flash/KB/rounding-specific-decimal-places-Flash.html

    and

    http://StackOverflow.com/questions/11469321/decimals-to-one-decimal-place-in-AS3

    But I'm confused when combining these techniques with ropes.

    Any help would be greatly appreciated,

    Thanks in advance

    Mr B

    Use the toFixed() class number instead of the toString() method.  The result is a string that contains the number of decimal places you specify.

    var answerW:Number = Number (txtinput.text) * Number (0.90);

    txtWResult.text = answerW.toFixed (2);

    var answerC:Number = Number (txtinput.text) * Number (0.99).

    txtCResult.text = answerC.toFixed (2);

  • Tour of metric to two decimal places by using [math]: tour

    I use the following psobject to extract performance data, but I have around two of the measures with two decimal places. Usually, I would use [math]: round ($var, 2) but I do not know how to integrate this into the code and settings, I need are AvgMem and AvgCPU.

    $groups | % {

    New-object PSObject-property @ {}

    'TimeIndex' = $_. Group [0]. TimeStamp

    "AvgMem" = $_. Group | where {$_.} MetricId - eq "mem.usage.average"} | Measure-object-property value - average | Select - ExpandProperty average

    "AvgCPU" = $_. Group | where {$_.} MetricId - eq "cpu.usage.average"} | Measure-object-property value - average | Select - ExpandProperty average

    'TotalMemory' = $TotalMemory.Split(".") | Select - index 0

    'TotalCPU' = ((Get-cluster_$cluster_|_get-vmhost_|_%_{$_}_|_measure-object-property_cputotalmhz-sum).sum)

    "Cluster" = $cluster

    'Data center' = $DC

    "vCenter' = $vcenter
    "Home" = $VMSummary.Hostname

    }

    }

    Any help is appreciated

    Thanks in advance

    Do you have one loan try like this

    $groups | % {

    New-object PSObject-property @ {}

    'TimeIndex' = $_. Group [0]. TimeStamp

    "AvgMem" = [math]: Round (($_.)) Group | where {$_.} MetricId - eq "mem.usage.average"} | Measure-object-property value - average | Select average - ExpandProperty), 2)

    "AvgCPU" = [math]: Round (($_.)) Group | where {$_.} MetricId - eq "cpu.usage.average"} | Measure-object-property value - average | Select average - ExpandProperty), 2)

    'TotalMemory' = $TotalMemory.Split(".") | Select - index 0

    'TotalCPU' = ((Get-cluster_$cluster_|_get-vmhost_|_%_{$_}_|_measure-object-property_cputotalmhz-sum).sum)

    "Cluster" = $cluster

    'Data center' = $DC

    "vCenter' = $vcenter

    "Home" = $VMSummary.Hostname

    }

    }

  • Limitation of DISTANCE to two decimal places

    I pretty much get the Google Maps API, talking to my SQL database. For the results of my research, I have SQL code:

    SELECT *, (3959 * acos (cos (radians (".")))) $POST ["latitude"]. (radians (lat)))) * cos * cos ((LNG) radians: radians (".")) $POST ["longitude"]. ")) + sin (radians (". "))" $_POST ["latitude"]. ")) * sin (radians (lat))) AS distance FROM VenuesGeocodes1 HAVING distance < 100 ORDER BY LIMIT 0, 30;"

    That works very well, but will display the distance to 15 decimal places, which is an exaggeration full.

    How can I limit that to only two decimal places? I thought I just needed to change the distance to distance (10.2), but he doesn't like it.

    If anyone can let me know what need would be much appreciated.

    Thank you.

    If you use PHP, you can do it like this:

    $grandtotal = number_format($grandtotal,2,'.',',');

  • Generate a random number with a decimal point

    I searched all over the internet and cannot find how to generate a random number that had a decimal.

    I'm trying to randomly generate numbers between 12.0 and 13.0.

    Here is my code... I know its bad because of Math.round and Math.random, but I can't seem to find something that deals with a decimal...

    addEventListener (Event.ENTER_FRAME, fl_EnterFrameHandler_1);

    function fl_EnterFrameHandler_1(event:Event):void
    {
    Volt.Text = Math.round (Math.random () * (1) + 12) m:System.NET.SocketAddress.ToString ();
    }

    Any suggestions?

    -Pat

    Try this,

    addEventListener(Event.ENTER_FRAME, fl_EnterFrameHandler_1);
    
    function fl_EnterFrameHandler_1(event:Event):void
    {
    
         var rndNum:Number = int(Math.random()*10)/10; // Generate random num with 1 decimal place
         var newVal:Number = newVal + 12;
         volt.text = newVal.toString();
    }
    

    If you want 2 decimal places then replace the 10 per 100.

  • Query to find records with more than 2 decimal places.

    I have written the below query to find records with more than 2 decimal places, but it is returning records with decimal places 1 & 2. 
    The datatype of the AMT column is NUMBER (without any precision).
    
    SELECT amt  FROM amount_table
     WHERE substr(amt, instr(amt, '.')) LIKE '.%'
           AND length(substr(amt, instr(amt, '.') + 1)) > 2
    Output:-

    AMT

    * 41591.1*
    * 275684.82*
    * 64491.59*
    * 3320.01*
    * 6273.68*
    * 27814.18*
    * 30326.79*
    131.8413635
    162.5352898
    208.5203816
    8863.314632
    22551.27856
    74.716992
    890.0158441
    2622.299682
    831.6683841
    * 1743.14*
    2328.195877
    3132.453438
    5159.827334
    3.236234727
    37.784
    Thanks

    Hello

    user1585440 wrote:

    when i inserted fee_amt as 41591.0999999999  it is displayed as 41591.1 in the output i.e,
    
    insert into amount_table (line_number,fee_amt) values (100,41591.0999999999);
    
    select fee_amt from amount_table  where line_number = 100. this query shows the output as below
    
    fee_amt
    
    41591.1
    
    The fee_amt column has number as datatype (without precision)
    
    Why it is automatically shown rounded off as 41591.1? 
    

    Published by: user1585440 on December 28, 2010 04:50

    You use SQL * more your front end?

    SQL * Plus has a fixed width to display all columns. The default for numbers is 10 characters. If necessary, SQL * Plus will be round a number or the use of scientific notation, to represent the number of the expected number of characters.
    You can use the SQL * more "SET NUMLARGEUR" to change the default view for all the numbers of orders, or "COLUMN" to set a sepcific format in an individual column.
    If you explicitly convert your channel numbers in a query, SQL * Plus adjusts the column width to whatever is needed. For example

    SELECT  TO_CHAR (fee_amt, 'TM')     AS fee_amt_d
    

    "TM" is the default format; You can call TO_CHAR with a single argument, if you prefer.

Maybe you are looking for

  • Cannot load Disqus comments even in safe mode

    Even in Safe Mode with all add-ons disabled, I can't load the Disqus comments on any site. I also tried the activation of third party cookies and pop-up windows and ensured that all my plug-ins are up-to-date. I don't know what else to try. I get the

  • error when updating the BIOS

    I got a HP Pavilion a1542n. So I installed XP SP3, which is done and was trying to install drivers and other things. I went to hp.com, getting to where I can * beep * to this screen to select the Safe Mode, Normal Mode again and again and again.Then

  • Good zoom for 60 d

    70%

  • Prior experience

    Do I need to have programming experience before working with Cold Fusion? If so, what programming languages I need to know? (Thank you!)

  • Spool file CSV/Excel/text using ODI

    Hi allI'm working on the ODI 11 g.We have a few packages of reports that we intend to implement in order to provide charges for numbers of campaign as follows:Number of campaignName of the campaignName of the productStart dateEnd dateTotal leads of C