Total Value for 1 KF

Hi Experts,
I want total sum value for only one key figure. In my report i have qty, sales unit price, Ext price as per my requirment i need total value for only Unit price. i tried but i am getting total sum value for all KF.
How can i achive this?
Thanks
Venkat

Hi,
All my key figures are having 0currency, but as per my requirment i used NODIM option in report level.
My enduser Requirment is: He dont want $ symber for values but he want $ symbel for total Value.
Ex: Ext Amount
          10
          20
          30
Total  $ 60
Thanks
David

Similar Messages

  • FM returns wrong total value for Limit type PO's

    Hi all,
    I am working on SRM 5.0 (SP13) ECS.
    I have implemented the BADI "BBP_WFL_APPROVAL_BADI" for determining the Approvers for PO whenevr a PO is changed.If the diference between the Old PO value and new PO value is > 1000 and the approval text field(custom text under "Documents" link) is set to "YES",then the WF approval is required and the approvers are determined.
    The above logic works fine for the Standard type PO's where the difference between the old value and new value is determined using FM "BBP_PD_PO_GETDETAIL"  by passing the GUID (for the change version and the active vesion) obtained at runtime in the BADI.
    However for the limit type PO's,whenevr I change the total value for the Limit item,I see that the FM "BBP_PD_PO_GETDETAIL" doesnt return the changed value but  always returns blank!
    Bcause I need to check bth the values i.e. Custom text set to "YES" as well as Total value diff ,I cant use the start conditions in tcode SWB_COND.ALso I need to fetch the approvers based on the price diff so I need this value at runtime in the BADI using the FM "BBP_PD_PO_GETDETAIL".
    Please advise why the FM is not returning the changed values for the Limit type PO and is there any other way(other table/FM) to get the changed value at runtime for the LIMIT type PO.
    Thanks for your time.
    Edited by: Rads1234 on Nov 18, 2010 4:39 AM

    Thanks for the rpely.
    Yes.I am using the GUID available at runtime in the  BADI "BBP_WFL_APPROV_BADI" which is the current change version GUID.I tried using that GUID to get the data from both FM as well as CDHDR and CDPOS tables.
    I think this is something related to LImit type PO because for Standard type PO's the FM returns the corretc changed value (as in the screen) for the change version GUID.I fail to understand why the changed values are shwon on the screen but are not stored anywhere in the system before actually ordering the PO!

  • Total value for Pending Sales order

    Hi All,
    Kindly tell where we can find the total value for the pending sales order. I think that there should be standard t-code for the same.
    Thanks & Regards
    Points will be rewarded

    Dear,
    One more problem has been highlighted of mismatch inthe values of Billing document and MC01 reporting.
    We have dispatched material for one customer for value Rs. 105000 and the same is shown as 20375 in the MC01 report. This is the First line item in the billing document.
    Kindly suggest the course of action or alternate solution.
    Thanks

  • Is it possible to get the total value for column and assign to other field

    hi,
    Is it possible to get the total value of particular column and assign that value to another field?
    How to do this?
    Thanks in advance,
    SAN

    Afridi,
    My extended controller class code:
    package xxhr.oracle.apps.per.selfservice.appraisals.webui;
    import oracle.apps.fnd.framework.OAApplicationModule;
    import oracle.apps.fnd.framework.OAException;
    import oracle.apps.fnd.framework.OAViewObject;
    import oracle.apps.fnd.framework.webui.OAPageContext;
    import oracle.apps.fnd.framework.webui.beans.OAWebBean;
    import oracle.apps.fnd.framework.webui.beans.message.OAMessageStyledTextBean;
    import oracle.apps.per.selfservice.appraisals.webui.OverviewPageCO;
    import oracle.jbo.Row;
    public class XXOverviewPageCO extends OverviewPageCO {
    public XXOverviewPageCO() {
    public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processFormRequest(pageContext, webBean);
    if(pageContext.getParameter("XXCalcAvgButton")!=null){
    throw new OAException("welcome",OAException.INFORMATION);
    //getSum(pageContext, webBean);
    private String getSum(OAPageContext pageContext, OAWebBean webBean) {
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    OAViewObject ratvo = (OAViewObject)am.findViewObject("CompetenceElementsVO");
    OAViewObject valuevo = (OAViewObject)am.findViewObject("PerRatingLevelsVO");
    Integer Sum = new Integer("0");
    int numofRows = ratvo.getRowCount();
    for (int x = 0; x < numofRows; x++) {
    Object Rating =
    ratvo.getRowAtRangeIndex(x).getAttribute("ProficiencyLevelId");
    if(Rating!=null) {
    int numofRowsforvalue = valuevo.getRowCount();
    for(int i=0;i<numofRowsforvalue;i++){
    if(valuevo.getRowAtRangeIndex(i).getAttribute("RatingLevelId").equals(Rating)){
    Object StepValue=valuevo.getRowAtRangeIndex(i).getAttribute("StepValue");
    Sum = new Integer(StepValue.toString()) + Sum;
    OAMessageStyledTextBean displayCompAvg=(OAMessageStyledTextBean)webBean.findChildRecursive("XXCompAvgText");
    displayCompAvg.setValue(pageContext,Sum);
    return null;
    But it is not affecting in the page.
    Can you please tell me what is the problem.

  • Total value for PO not displayed

    Hi,
    While creating a SSP PO, the total value is not displayed. Please suggest.
    Regards,
    Anand.

    Dear Poster
    Your thread has had no response since it's creation over
    2 weeks ago, therefore, I recommend that you either:
    - Rephrase the question.
    - Provide additional Information to prompt a response.
    - Close the thread if the answer is already known.
    Thank you for your compliance in this regard.
    Jason Boggans
    SAP SRM SDN Moderator

  • Formula to provide a varaible the total value for a group

    Hi,
    I need to create a formula which outputs the value for a single group. For example, two groups are:
    Group: Year
         Group: Products
    I only need to place in the footer the total for year 2012, product jam. The report contains dteails for many products and years.
    Any one help me with this formula?
    Cheers,

    Hi Leo,
    Create this formula and place it on the Group Header 2. You may suppress this formula as we don't really need to display it.
    WhilePrintingRecords;
    numbervar summ;
    if {Year} = 2012 and {Product} = "Jam" then
        summ := Sum ({Product}, {Year}))
    Note. If the {Year} field is a date field, then you need to use a function to extract the year like:
    Year({Year_field}) = 2012
    Create another formula to display the sum and Place it on the Report Footer:
    WhilePrintingRecords;
    numbervar summ;
    Hope this helps!
    -Abhilash

  • How To use the page total value for conditional formatting

    Hi
    I am very new to xml publisher report.. I have calculated the report total like this--
    <?add-page-total:pt;'ENT_AMT'?> now i display it in a table colomn by using the syntax
    <?show-page-total:pt;'#,##0.00'?>
    Now what i want to do is if the value of the page total is greater than 1000 the color of that coloumn in the table will change. But by any means i cannot access the value and do the condition checking..
    Plz help..
    Thanks and Regards
    Joydeep Mitra

    Hi Mitra,
    You can use this if you want to change the color of a cell:
    <?if:total>1000?><xsl:attribute xdofo:ctx="block" name="background-color">red
    </xsl:attribute><?end if?>
    Regards,
    Marius

  • Limit total value for dynamic text

    Hi,
    I've got two buttons: one which increases the value of a
    dynamic text box by 1, and one which decreases the same text by 1.
    I need to set a limit on the value of the dynamic text box, to -35
    to +35.
    The code I've got so far:
    //set inital value of text box
    trial1_txt.text = 0;
    //control the increase button
    this.Increase_btn.onPress = function(){
    trial1_txt.text++;
    //control the decrease button
    this.Decrease_btn.onPress = function(){
    trial1_txt,text--;
    Any help would be greatly appreciated! I'm SOOOOO stuck on
    this one!
    Thanks!

    Thank you! That works perfectly:-)

  • Changing totals value in hierarchical alv for a particular level/row

    Hi,
    I am displaying a hierarchical ALV having 4 levels.
    Using field catalog, totals for all dynamic columns are found out.
    I have a requirement not to display totals value for first and second levels.
    And if possible, to display another value.
    Tried using CL_GUI_ALV_TREE->change_node.
    But it not updating.
    Please suggest a solution.
    Thanks,
    Nisha Vengal.

    Hi Ten Mariga,
                     I wonder why the second select Query is needed at all instead you can use
    ---> Not Needed
    FORM DATA_RETRIEVAL1.
    SELECT * FROM zcontact INTO TABLE it_zcontact WHERE id EQ wa_zcontact-id.
    ENDFORM.
    ----> Instead you can do
       READ TABLE it_zcontact INTO wa_zcontact INDEX p_seltab-tabindex.
      Append wa_zcontact to Second_table.
    And you can use the Second_table to display the second ALV. The second Select Query will affect the performance too.
    Cheers,
    Krishnakumar B.

  • Problem in formatting Total Value in advanced table

    I want to format Total Value for each column to USD format i am able to do for Column values but for Total Value i am not able to make it, i reffered all the previous threads and tried nothing worked out, can any one help me out its very urgent
    Thanks
    Babu

    First thing is as Tapash has pointed out, How did you do it which is not working? Second point is that there is straight forward mention of this scenario in Advanced table section of the Dev guide. Have a look.
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • URGENT: Mask on Total value

    Hi all,
    I have a customer who needs to format the Total value on a classic table to show it with 4 decimal places like this 10,500.0000. In order to achieve such requirement I tried the following code in 'processRequest' method, but no success.
    OATableBean tableBean = (OATableBean)webBean.findChildRecursive("AllocationDataTable");
    if(tableBean != null) {
    tableBean.prepareForRendering(pageContext);
    OAMessageStyledTextBean total = (OAMessageStyledTextBean)tableBean.findChildRecursive("UnitLandedCost");
    if (total != null) {
    oracle.cabo.ui.validate.Formatter formatter = new OADecimalValidater("#,##0.0000;#,##0.0000","#,##0.0000;#,##0.0000");
    total.setAttributeValue(ON_SUBMIT_VALIDATER_ATTR, formatter);
    Please, can anyone comment what is wrong? Workarounds?
    Thanks.
    Eduardo

    I did manage to solve this. My fields are VARCHAR2 to start with. So in the AM I save the final tota for the column in a view table (SprintTotals) .
    Then in the controller, I retrieve the saved total.
    OAViewObject voRow = (OAViewObject)am.findViewObject("SprintTotalsVO1");
    voRow.setWhereClause(null);
    voRow.executeQuery();
    Row row1 = voRow.first();
    String docs = "";
    if(row1 != null )
    System.out.println("in calls");
    docs = (String) (voRow.getCurrentRow()).getAttribute("*Totalcurchg*");
    System.out.println("docs = " + docs);
    //The following code handles the formatting
    OAMessageStyledTextBean regUSDAmtBean=(OAMessageStyledTextBean)webBean.findIndexedChildRecursive("*Totalcurchg*");
    Formatter formatter2 = new OADecimalValidater("$#,##0.00;($#,##0.00)","$#,##0.00;($#,##0.00)");
    regUSDAmtBean.setAttributeValue(*ON_SUBMIT_VALIDATER_ATTR*, formatter2);
    This line displays the total value for the field. It uses the actual value that is stored in docs
    regUSDAmtBean.setAttributeValue(*TABULAR_FUNCTION_VALUE_ATTR, docs* );
    This setting allows for the dollar sign in the column data and the total value. This procedure requires that the EO is defined first.
    The only problem I have let is right aligning the total value.

  • DP  Proportional factors total value.

    Hello,
    In DP i want know how it calculates the Proportional value?
    Example :I have given Key Figure History as Basis for Proportional calculation with period 01092008 to 31122008
    In Calcu prop for i have given period 01092009 to 31122009.
    I have one material and two location say X and Y.
    When i execute i get total value for each period is 10,000 at material level and at location level it splits properly that sum of both location is 10,000 but if change the history data sum at Material level always shows 10,000.
    whether this 10,000 value is fixed some where?
    I am know how proportional value at location is calculated i want know whether this 10,000 value is fixed some where?
    Kindly let me know?
    Thanks,
    Nikhil

    Hi Nikhil,
    10000 is indeed the default value.
    If this value is too small for you (if you have some rounding issue) can increase it.
    Have a look at note 425741.
    I hope it helps
    Julien

  • Trying to use VLOOKUP to return total value

    How can I use vlookup to return total value while referencing another sheet/table?
    I have:
    =IF(ISERROR(VLOOKUP($B$3:$B$25,Transactions :: $D$3:$E$50,2,FALSE)),"$0.00",VLOOKUP($B$3:$B$25,Transactions :: $D$3:$E$50,2,FALSE))
    This works great as far as returning "0" if nothing of $$ or item.  I am using this for a budget template I've built, but using the vlookup to return actual $$ amounts from a checkbook register page I've built into the budget template.
    Example, the formula I am using does find the items and value from the checkbook register sheet(separate sheet), but it is not returning the total value for the item.  I am asking it to find "Gas" in the checkbook register sheet and return total value for "Gas".  It returns only one value, $30, but I have 3 entries for "Gas" in my checkbook register sheet, so it should return $90.
    I tried to use the =IF(ISNA(VLOOKUP array that I would use in Excel, but the ISNA does not work in iWorks.
    Any suggetions?
    Thanks,
    -Bill

    Hi Jerry,
    Yes that worked!
    =SUMIF(Transactions :: $D$3:$D$50,B4,Transactions :: $E$3:$E$50)
    Thanks for your help.
    -Bill

  • PO Total value Unchaged With Deleted Lines Items

    Hello;
    I have a question about total value of purchase orders where lines have been deleted. the PO was created, saved and deleted four of the line items (not locked), yet the total value for release is still includes the deleted lines. I tried to replicate the same problem but I couldn't, can someone help me. Thanks
    Ibou

    Dear Ibou,
    External purchasing documents (i.e. purchasing documents other than requisitions) are released at header level. Item-by-item release is not possible.
    Hence, it will take total value when you release.
    Hope this will resolve your query.
    Regards,
    Naveen.

  • Combinations with Best Total value without Exceeding a maximum cost

    Hello,
    I have an interesting problem I am trying to solve and I am wondering if TSQL, or another tool like SSAS would be a good option for this. I am trying to find out the best performance from 8 parts while staying under a specific budget. Below is a generic
    example:
    I have to find the best combination of the following:
    3 Part A
    3 Part B
    1 Part C
    1 Part D(can be either A, B, or C)
    The raw data that I will be using will look something like this:
    Part #  |  Price   |  Value  | ID
    A          |  $22     |  44      |   1
    A          |  $21     |  42      |   2
    B          |  $20     |  41      |   3
    C          |  $18     |  37      |   4
    B          |  $17     |  35      |   5
    B          |  $2       |  1        |   200
    I will have over 200 combinations of parts in total (some A, some B, some C).
    In addition, I will have to find the best optimal total value for 100$ or less. It will be like Use it or Lose it 100$ so you want to be as close as possible without going over. 
    I am looking for something that can find out the optimal and rank it according to total value in a relatively quick amount of time. I know there are a lot of possibilities for this.
    The end result will be something like this:
    Total Value | Total Cost | A1 | A2 | A3 | B1 | B2 | B3 | C1 | D1
    240           |   100        | 1  |  6 |  15 | 2  |  5 | 20 |  4 |  3
    Let me know if you have any questions. Hopefully this makes some sense.

    CREATE TABLE [dbo].[OptimalCombo](
    [ID] [float] NULL,
    [Price] [money] NULL,
    [Value] [float] NULL,
    [Part] [nvarchar](255) NULL,
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('1',convert(money,'22.16'),'42.7302','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('2',convert(money,'21.67'),'42.0798','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('3',convert(money,'20.42'),'40.7089','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('4',convert(money,'16.05'),'34.4474','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('5',convert(money,'11.66'),'33.9312','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('6',convert(money,'18.27'),'33.7518','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('7',convert(money,'18.57'),'32.5026','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('8',convert(money,'13.64'),'32.0993','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('9',convert(money,'15.16'),'31.8969','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('10',convert(money,'11.87'),'31.6139','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('11',convert(money,'15.22'),'31.3825','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('12',convert(money,'18.77'),'31.2071','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('13',convert(money,'12.96'),'31.1526','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('14',convert(money,'14.22'),'30.2834','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('15',convert(money,'14.57'),'30.2159','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('16',convert(money,'14.89'),'30.1422','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('17',convert(money,'15.42'),'30.0975','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('18',convert(money,'15.26'),'29.9128','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('19',convert(money,'10.87'),'29.5804','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('20',convert(money,'12.38'),'29.0499','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('21',convert(money,'15.23'),'28.8299','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('22',convert(money,'12.87'),'28.8112','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('23',convert(money,'17.05'),'28.6106','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('24',convert(money,'14.62'),'28.4499','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('25',convert(money,'11.71'),'28.4443','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('26',convert(money,'13.84'),'27.4249','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('27',convert(money,'14.68'),'27.1489','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('28',convert(money,'11.50'),'27.0866','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('29',convert(money,'12.69'),'27.0484','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('30',convert(money,'12.51'),'27.0121','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('31',convert(money,'14.02'),'26.4007','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('32',convert(money,'13.61'),'26.0659','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('33',convert(money,'10.31'),'25.1806','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('34',convert(money,'13.62'),'24.8248','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('35',convert(money,'13.42'),'24.6756','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('36',convert(money,'11.82'),'24.4752','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('37',convert(money,'10.95'),'24.0582','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('38',convert(money,'14.26'),'23.4754','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('39',convert(money,'9.62'),'23.4578','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('40',convert(money,'9.80'),'23.3932','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('41',convert(money,'7.91'),'22.7474','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('42',convert(money,'9.96'),'22.5954','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('43',convert(money,'9.13'),'22.2856','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('44',convert(money,'13.54'),'22.2192','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('45',convert(money,'11.01'),'21.8734','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('46',convert(money,'9.06'),'21.809','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('47',convert(money,'10.56'),'21.7806','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('48',convert(money,'10.10'),'21.5777','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('49',convert(money,'9.17'),'21.5588','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('50',convert(money,'8.31'),'21.4629','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('51',convert(money,'8.66'),'20.9096','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('52',convert(money,'12.33'),'20.7805','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('53',convert(money,'12.18'),'20.7249','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('54',convert(money,'10.90'),'20.7121','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('55',convert(money,'9.66'),'20.6709','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('56',convert(money,'10.14'),'20.5873','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('57',convert(money,'10.11'),'20.5527','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('58',convert(money,'11.63'),'20.5245','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('59',convert(money,'8.91'),'20.3243','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('60',convert(money,'7.33'),'19.9983','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('61',convert(money,'12.44'),'19.9376','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('62',convert(money,'10.39'),'19.8531','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('63',convert(money,'9.49'),'19.7441','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('64',convert(money,'10.41'),'19.54','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('65',convert(money,'9.28'),'19.4863','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('66',convert(money,'9.93'),'19.3653','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('67',convert(money,'10.63'),'18.7178','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('68',convert(money,'8.73'),'18.7176','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('69',convert(money,'8.77'),'18.6663','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('70',convert(money,'6.81'),'18.4952','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('71',convert(money,'9.34'),'18.4944','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('72',convert(money,'10.93'),'18.3211','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('73',convert(money,'0.00'),'18.0332','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('74',convert(money,'10.09'),'17.5418','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('75',convert(money,'6.46'),'17.5339','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('76',convert(money,'8.18'),'17.3633','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('77',convert(money,'7.92'),'16.4754','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('78',convert(money,'6.36'),'16.374','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('79',convert(money,'9.20'),'16.2018','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('80',convert(money,'10.09'),'16.2013','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('81',convert(money,'8.78'),'15.7496','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('82',convert(money,'4.95'),'15.6086','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('83',convert(money,'8.20'),'15.4618','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('84',convert(money,'7.63'),'15.3775','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('85',convert(money,'7.06'),'15.2405','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('86',convert(money,'8.18'),'15.2229','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('87',convert(money,'6.88'),'15.1594','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('88',convert(money,'7.46'),'15.0574','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('89',convert(money,'9.97'),'14.4833','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('90',convert(money,'8.45'),'14.3658','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('91',convert(money,'5.54'),'14.353','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('92',convert(money,'4.72'),'14.2415','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('93',convert(money,'10.08'),'14.0523','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('94',convert(money,'7.65'),'13.8778','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('95',convert(money,'7.35'),'13.7063','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('96',convert(money,'5.19'),'13.3039','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('97',convert(money,'7.29'),'13.1952','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('98',convert(money,'7.64'),'13.188','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('99',convert(money,'7.74'),'13.0517','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('100',convert(money,'2.62'),'12.9761','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('101',convert(money,'4.35'),'12.834','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('102',convert(money,'6.46'),'12.5904','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('103',convert(money,'9.53'),'12.5893','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('104',convert(money,'5.91'),'12.4486','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('105',convert(money,'6.80'),'12.2639','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('106',convert(money,'6.69'),'12.2329','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('107',convert(money,'6.37'),'12.2204','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('108',convert(money,'7.36'),'11.9331','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('109',convert(money,'7.63'),'11.5979','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('110',convert(money,'5.67'),'11.57','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('111',convert(money,'6.52'),'11.5695','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('112',convert(money,'6.74'),'11.5054','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('113',convert(money,'6.37'),'10.979','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('114',convert(money,'6.24'),'10.9037','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('115',convert(money,'9.18'),'10.8605','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('116',convert(money,'6.54'),'10.8433','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('117',convert(money,'6.21'),'10.6319','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('118',convert(money,'6.78'),'10.5205','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('119',convert(money,'5.35'),'10.1602','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('120',convert(money,'7.21'),'10.135','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('121',convert(money,'5.03'),'9.96296','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('122',convert(money,'6.48'),'9.95423','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('123',convert(money,'7.31'),'9.94387','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('124',convert(money,'5.03'),'9.71744','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('125',convert(money,'6.30'),'9.63011','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('126',convert(money,'6.06'),'9.60822','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('127',convert(money,'4.96'),'9.54318','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('128',convert(money,'3.65'),'9.36709','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('129',convert(money,'6.38'),'9.26422','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('130',convert(money,'4.13'),'9.11232','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('131',convert(money,'4.79'),'9.08303','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('132',convert(money,'7.17'),'8.94436','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('133',convert(money,'6.48'),'8.89934','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('134',convert(money,'5.65'),'8.87636','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('135',convert(money,'4.27'),'8.87305','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('136',convert(money,'7.83'),'8.73056','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('137',convert(money,'6.13'),'7.96018','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('138',convert(money,'6.28'),'7.911','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('139',convert(money,'4.13'),'7.61774','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('140',convert(money,'5.94'),'7.39469','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('141',convert(money,'4.22'),'6.85944','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('142',convert(money,'3.34'),'6.81982','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('143',convert(money,'6.60'),'6.56834','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('144',convert(money,'5.77'),'6.4892','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('145',convert(money,'3.08'),'5.64715','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('146',convert(money,'4.38'),'5.36118','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('147',convert(money,'3.39'),'5.28177','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('148',convert(money,'6.22'),'5.18103','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('149',convert(money,'5.10'),'5.15438','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('150',convert(money,'6.68'),'5.05164','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('151',convert(money,'5.72'),'5.0001','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('152',convert(money,'8.56'),'4.33456','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('153',convert(money,'5.03'),'4.01306','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('154',convert(money,'5.59'),'3.41515','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('155',convert(money,'0.00'),'3.30027','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('182',convert(money,'12.78'),'0','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('181',convert(money,'8.39'),'0','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('180',convert(money,'15.53'),'0','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('179',convert(money,'10.40'),'0','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('178',convert(money,'16.09'),'0','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('177',convert(money,'7.49'),'0','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('176',convert(money,'3.50'),'0','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('175',convert(money,'6.70'),'0','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('174',convert(money,'8.26'),'0','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('173',convert(money,'0.00'),'0','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('172',convert(money,'0.00'),'0','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('171',convert(money,'9.07'),'0','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('170',convert(money,'13.61'),'0','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('161',convert(money,'9.17'),'0','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('168',convert(money,'7.23'),'0','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('167',convert(money,'0.00'),'0','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('166',convert(money,'6.11'),'0','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('165',convert(money,'7.86'),'0','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('164',convert(money,'0.00'),'0','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('163',convert(money,'7.52'),'0','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('162',convert(money,'8.75'),'0','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('183',convert(money,'5.05'),'0','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('160',convert(money,'0.00'),'0','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('159',convert(money,'0.00'),'0','C')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('158',convert(money,'10.27'),'0','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('157',convert(money,'6.85'),'0','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('156',convert(money,'0.00'),'0','B')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('169',convert(money,'8.08'),'0','A')
    INSERT OptimalCombo(ID,Price,Value,Part) VALUES('184',convert(money,'4.45'),'0','B')
    DML and DDL for the Raw table above.

Maybe you are looking for

  • Budgeting in Purchasing?

    I want to know whether budgeting is available in oracle purchasing? Regards sudharshan

  • Monitor HTTP Sessions

    Hi, I want to monitor all http sessions on the SAP Portal. For this I know two possibilities - In the Visual Administrator -> Security Provider you can access the login sessions, but these are only the sessions of the authenticated users - In the Net

  • Need help with Timer function

    I am using a timer class for my application such that when i log in, i immediately call the timer.start function from the Timer.java class. The problem i am having, is that when this timer expires, it calls an exit function, but i want it to restart

  • CAD agent & Supervisor

    Hi,    We are planning to deploy UCCE componenets on main site and Voice Gateway plus CAD Agents/Supervisor at branch site. in case of CAD desktop monitoring option there will be two rtp streams from branch to CAD server or that would be point to poi

  • Stop todos in ical from showing up in mail

    is there any way to stop the todos i enter into ical from showing up in mail as well. im asking because im using Geek Tool and when i put the todos on the desktop the url comes out as being in mail and it wont let me just delete it. i have tried putt