Report to extract the total Amount that we spent for materials

Hi Guru's,
I was trying to find a report that gives all the following information by Company Code. Out put should have the following fields:
1)Vendor Name,
2) Vendor Number,
3)Company Code,
4) Payment Terms Code From Vendor Master,
5) Payment Terms Description,
6)Material Number,
7)Material Description and
8) Amount Spend for last 12 months
I would appreciate any inputs on these kind of reports.
Thanks
Nath..........

Sridhar,
Thanks for your response but I am not getting Material number using report FBL1N and also I in the amount column I was looking for the total amount (total spent during the whole year) by Vendor, Company Code and Material. I am trying to execute this for three different company codes. So, will FBL1N work for us to get these total amounts.
Thanks
Nath

Similar Messages

  • How can I view the total amount I've spent on apps

    How can I see how much I've spent on apps?

    You'll have to view the purchase history:
    http://support.apple.com/kb/HT2727
    and add up the prices yourself to get a total.
    Regards.

  • HT1222 How do I increase the total amount of space I have on iPhone for things like iTunes n more music n like MusicTube n YouTube. Thank you in advance for any help that can be given.

    I am running out of usage space. How do I increase the total amount of space I have on my iPhone4S: for things like programs & apps such as, iTunes & more music & like MusicTube & YouTube. The only reason I have any space now is because the music that I had downloaded and synced onto my phone from iTunes I had to take it all off. I would really really love to be able to put my music back onto my iPhone. Currently I'm using apps like Spotify, AOLradio, and MusicTube to listen to music. Thank you so very much in advance for any help that may be given!

    Also to add to my original question: is what I'm asking even a possibility??? Meaning is there even a way to get more usage space? Or do I have to just continue to work within the confines that apple has preset on the phone?

  • Extracting the total in dollars from a form

    Hi,
    I have a order form with fields for 5 products, each product can be ordered in single qty or a case with a sub total field plus a grand total and I'm trying to figure out how to extract the total & grand total amounts (in dollars) into the php form handler file so the amounts are sent back to the visitor and the site owner.
    Thanks in advance

    I searched around this morning and found the below javascript from http://www.mcfedries.com/javascript/ordertotals.asp which I adapted below for the wines selections. No styling but I think it has possibilities and more than one wine selection can be chosen.
    Only thing I can't get the script to do is write the 'order_total' to a form input field which could then be collected via php and sent to the email address. At moment the script writes the total to <div>
    <div id="order_total" style="text-align: right">$0.00</div>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Calculating Order Form Totals in  JavaScript</title>
    <style>
    input {
        width: 60px;
    #orderForm {
        width: 600px;
        margin: 0 auto;
    </style>
    </head>
    <script language="JavaScript" type="text/javascript">
    <!--
    /* This script is Copyright (c) Paul McFedries and
    Logophilia Limited (http://www.mcfedries.com/).
    Permission is granted to use this script as long as
    this Copyright notice remains in place.*/
    function CalculateTotal(frm) {
        var order_total = 0
        // Run through all the form fields
        for (var i=0; i < frm.elements.length; ++i) {
            // Get the current field
            form_field = frm.elements[i]
            // Get the field's name
            form_name = form_field.name
            // Is it a "product" field?
            if (form_name.substring(0,4) == "PROD") {
                // If so, extract the price from the name
                item_price = parseFloat(form_name.substring(form_name.lastIndexOf("_") + 1))
                // Get the quantity
                item_quantity = parseInt(form_field.value)
                // Update the order total
                if (item_quantity >= 0) {
                    order_total += item_quantity * item_price
        // Display the total rounded to two decimal places
        document.getElementById("order_total").firstChild.data = "$" + round_decimals(order_total, 2)
    function round_decimals(original_number, decimals) {
        var result1 = original_number * Math.pow(10, decimals)
        var result2 = Math.round(result1)
        var result3 = result2 / Math.pow(10, decimals)
        return pad_with_zeros(result3, decimals)
    function pad_with_zeros(rounded_value, decimal_places) {
        // Convert the number to a string
        var value_string = rounded_value.toString()
        // Locate the decimal point
        var decimal_location = value_string.indexOf(".")
        // Is there a decimal point?
        if (decimal_location == -1) {
            // If no, then all decimal places will be padded with 0s
            decimal_part_length = 0
            // If decimal_places is greater than zero, tack on a decimal point
            value_string += decimal_places > 0 ? "." : ""
        else {
            // If yes, then only the extra decimal places will be padded with 0s
            decimal_part_length = value_string.length - decimal_location - 1
        // Calculate the number of decimal places that need to be padded with 0s
        var pad_total = decimal_places - decimal_part_length
        if (pad_total > 0) {
            // Pad the string with 0s
            for (var counter = 1; counter <= pad_total; counter++)
                value_string += "0"
        return value_string
    //-->
    </script>
    <body>
    <div id="orderForm">
    <form>
    <table width="600" cellspacing="0" cellpadding="0" border="0">
    <tr>
    <td width="200">Type of vine</td>
    <td width="80">Number<br>
    of single bottles</td>
    <td>Price<br>per<br>bottle</td>
    <td width="80">Number<br>of full<br> cases</td>
    <td>Price<br>per<br>case</td>
    </tr>
    <tr>
    <td><input type="checkbox" name="chardonnay_2011" id="chardonnay_2011" />Chardonnay 2011</td>
    <td><Input type="text" name="PROD_Chardonnay2011Bottles_20.00" onChange="CalculateTotal(this.form)"></td>
    <td>$20.00</td>
    <td><Input type="text" name="PROD_Chardonnay2011Cases_204.00" onChange="CalculateTotal(this.form)"></td>
    <td>$204.00</td>
    </tr>
    <tr>
    <td><input type="checkbox" name="pinoGris_2011" id="pinoGris_2011" />Pino Gris 2011</td>
    <td><Input type="text" name="PROD_PinoGris2011Bottles_21.00" onChange="CalculateTotal(this.form)"></td>
    <td>$21.00</td>
    <td><Input type="text" name="PROD_PinoGris2011Cases_228.00" onChange="CalculateTotal(this.form)"></td>
    <td>$228.00</td>
    </tr>
    <tr>
    <td><input type="checkbox" name="sauvigonBlanc_2011" id="sauvigonBlanc_2011" />Sauvigon Blanc 2011</td>
    <td><Input type="text" name="PROD_SauvigonBlanc2011Bottles_20.00" onChange="CalculateTotal(this.form)"></td>
    <td>$20.00</td>
    <td><Input type="text" name="PROD_SauvigonBlanc2011Cases_204.00" onChange="CalculateTotal(this.form)"></td>
    <td>$204.00</td>
    </tr>
    <tr>
    <td><input type="checkbox" name="riesling_2012" id="riesling_2012" />Riesling 2012</td>
    <td><Input type="text" name="PROD_Riesling2012Bottles_20.00" onChange="CalculateTotal(this.form)"></td>
    <td>$20.00</td>
    <td><Input type="text" name="PROD_Riesling2012Cases_204.00" onChange="CalculateTotal(this.form)"></td>
    <td>$204.00</td>
    </tr>
    <tr>
    <td><input type="checkbox" name="pinoNoir_2009" id="pinoNoir_2009" />Pinot Noir 2009</td>
    <td><Input type="text" name="PROD_PinotNoir2009Bottles_25.00" onChange="CalculateTotal(this.form)"></td>
    <td>$25.00</td>
    <td><Input type="text" name="PROD_PinotNoir2009Cases_250.00" onChange="CalculateTotal(this.form)"></td>
    <td>$250.00</td>
    </tr>
    </table>
    <input style="width: 120px;"  type="reset" reset value="clear form">
    </form>
    <div style="text-align: right">Total:</div>
    <div id="order_total" style="text-align: right">$0.00</div>
    </div>
    </body>
    </html>

  • PO Condition type to be included in the total amount of PO

    Hi,
    I have a PO conditiont type configured with the ff. attributes:
    1. Condition Class is Discount or surcharge.
    2. Calculation type is percentage.
    3. Cond. category is delivery costs.
    I want to include the additional cost of this condition in the total amount of the PO. How will I configure the condition type to behave this way?

    Hi,
    Go to SPRO- MM - Purchasing - Conditions - Define Price determination Process - Define calculation schema
    Select the pricing procedure and go to the control data add the new condition type that you have configured as an additional step in the pricing procedure before the total amount.
    Regards
    Merwyn

  • Summary filed to show the total amount

    Hi ,
    Version : Jdeveloper 11.1.1.5
    Table : Revenue ( Columns - RevId ,InAmount, OutAmount)
    Based on the Table i Created Entity Object and Based On Entity I Created View Object (RevenueVOW)
    I Created one method --> RevenueVOW to show Create Mode and 4 new Records to show
    how i will create summary field to show the total amount on InAmount
    ( In forms and reports we will create formula column)
    Thanks
    shk

    HI,
    Did you try with groovy expression
    Check
    Sum of field in af:table

  • Get the Total Amount Paid of an A/R Invoice

    Hi to All.,
    Im doing a Report where in i should show the total amount paid in an A/R Invoice
    But my Problem is i dont know what table to get it ..
    thx in advance ..

    Hi!
    Try my query here. I'm using this to get my AR Balance base on the date I enter.
    The table I use here were OITR and ITR1 (table of internal reconciliation).
    SELECT
    T0.DocNum,
    T0.DocDate,
    T0.DocTotal,
    isnull(T3.ReconSum,0) as 'Paid to Date',
    ((T0.[DocTotal]) -isnull(T3.reconsum,0)) Balance
    FROM OINV T0 
    LEFT OUTER JOIN (
    SELECT a1.[SrcObjTyp],sum(isnull(a1.[ReconSum],0)) as 'ReconSum',a1.[SrcObjAbs] from OITR a0 INNER JOIN ITR1 a1 ON a0.ReconNum = a1.ReconNum and (a0.ReconDate < [%0]) and a0.iscard='C'
    GROUP BY a1.[SrcObjTyp],a1.[SrcObjAbs]) T3 on T0.[ObjType]=T3.[SrcObjTyp] and  T0.Docentry=T3.[SrcObjAbs]
    where T0.DocDate < [%0] and T0.DocTotal >0
    Hope this helps!
    Regards,

  • Adobe - How to make fix layout but the total amount in the main is flexible

    Hi to all,
    Need help, i am new with adobe forms and do some search but i didnt find one.
    the problem is this the main/content area is display with a box then a total at the end. Now when the document is only 1 page then the total will be display in the page 1. If document has 2 pages then the total will be shown in page 2. remeber that this total is diplay in fix postion. what i did right now is the total amount will be displayed both pages. please see details below.
    main / content area
    |   description     |         amount |.
    |   description     |         amount |.
    |   description     |         amount |.
    |                          |                     |.
    |                          |                     |.
    |                          |                     |.
    |                          |                     |.
    |                          |                     |.
    | total                   |        amount|   -
    > fix position. cant use flowed. if positioned the total will appear all pages
    thanks in advance
    regards,
    Etrafanob
    Edited by: Etrafanob on Dec 2, 2009 4:16 PM

    Hi,
      yes the layout and requirement sounds crazy thats why i have a problem on it.
    actually my master pages contains the fix box with TOTAL and TOTAL AMOUNT at the end.
    the spell word of the amount and the signatory.
    under design view i only flag the description and amount of line item flowed to trigger the second page.
    now hence the total and total amount is in fix position under master pages. it will appear on all pages.
    how will i make fix position but it will appear only on last page.
    thanks
    best regards,
    etrafanob
    Edited by: Etrafanob on Dec 2, 2009 5:17 PM

  • Report to find the retainage amount per each supplier site

    Hi All
    Is there a report to find the retainage amount per each supplier site ?
    Regards;

    Hi.
    The Withholding Tax by Supplier Report shows both supplier and site.
    Octavio

  • I just downloaded itunes 11.. and now i cant find out how to display duplicates and also it doesnt show the total amount of songs in my library...anybody know..???

    I just downloaded itunes 11 and now i cant find the display duplicates..and it doesnt show the total amount of songs in my library..anybody know..??

    Two Windows scripts to make playlists of Duplicates and Exact Duplicates. Use shift-delete to remove selected tracks from the library as well as the playlist.
    There is also my DeDuper script if you don't want to do it by hand. Please take note of the warning to backup your library before deduping. See this thread for background.
    tt2

  • PO is getting released even if the total amount is less than the last PO am

    Purchase Order is getting released even if the total amount is less than the last PO amount. The release strategy is only working for the first Purchase Order and if the PO amount is greater than the last PO amount.
    Please let me know how to correct this scenario (release strategy).
    Regards,
    Prishu

    Hi,
    Release strategy has nothing do with the previous PO amount. May be, Co-incidently the amount in previous PO which you are referring and the characteristics value maintained in the release strategy is same.
    1) Please go in release strategy by the path mentioned below
    IMG u2013 Material Management u2013 Purchasing u2013 Purchase Requisition u2013 Release Procedure u2013 Procedure with Classification u2013 Set Up Procedure with Classification
    2) Then go to release strategy. Here the total available release strategies would be displayed. Double click the strategy which is getting reflected in the PO you want and go the classifiction tab. There you will get the PO value. Based on this characteristic value the respective release streategy gets refelected.
    I hope this clarifies.
    Regards
    sachin

  • Count the total amount of records returned

    Is there a way in DW to count and display the total amount of records in my DB table?
    Eg: I might have 10,000 records in my database, but only 55 match the SELECT statement, so I want to show a visual counter saying '55 articles in this section' on my page.

    Choose one of these  function appropriate to the api you are using:
    http://php.net/manual/en/function.mysql-num-rows.php

  • How can I see the total amount of songs in itunes?

    How Can I see the total amount of songs I have in itunes 11.0.1.12?  Totally different from older version.

    From the menu bar, select "View' then "Show Status Bar"

  • How to distribute a % of the total amount to a partner in a contract?

    Is there any way to distribute a % of the total amount to a partner, say a forwarding agent in a contract?
    Thanks & regards,
    Gokul.

    Play the video with Quicktime Player where the controls do not show when you use the space bar to stop the playing.  The forward and back keys will advance/retreat the video till you get the exact frame to make the screenshot of. 
    OT

  • Can Verizon add the pay date to the e-mail that is sent for billing reminder.

    Can Verizon add the pay date to the e-mail that is sent for billing reminder.
    Then you would have to sign on to look that up.
      Your current bill
      for your account ending in 4609-00001 is now available online in My Verizon
      Total Balance Due:
      $261.11
      Keep in mind that
      payments and/or adjustments made to your account after your bill was
      generated will not be reflected in the amount shown above.

    The email is quite direct. Log on to my verizon at www.verizonwireless.com and on the front page it tells you your due date.
    as a rule unless you requested paperless billing, you will get a paper invoice in the mail as well.
    it is due before or on your account closing date. My service runs from the 5th. of the month until the 4th. of the next month so the bill must be paid on the 4th. at the latest. (if paying on line)
    if you pay by check you have to mail it at least five days in order for it to reach the payment processing center, or you can pay at any verizon wireless corporate store via check, credit card or bank debit card.

Maybe you are looking for

  • Is it possible to use two External HD to back up through time machine

    when I go to System preferences and then select disk I am given three options 2 external HD's and time machine, I am currently not using Time Capsule can I choose the 2 external HD's so one backs up the other or is this only possible to use an extern

  • How to make Web Dynpro Search work using CAF Entity Service Method

    Hallo everybody, I'm facing a problem regarding CAF Method and I really need some help. The Method I want use is a "Search by Key" method, which I already testet in Composite Application and it has worked. But wenn I try to add the CAF Model in Web D

  • How can I resolve error -54

    I keep getting an error in tunes saying, "The itunes library file cannot be saved. An unknown error has ocurred. (-54) How can i resolve it?

  • Problems loading 0FIAR_C03 infoprovider

    The load to ODS is ok, but when i tried to "Upload ODS data in data target" i got the error message: "Data source 80FIAR_O03 has to be replicated" to fix this error the help says: "Copy data source again and then activate the transfer rules..." I did

  • How to make fully use of the new function of Tiger, "Secure Printing"?

    Hi, There, i don't know about the Secure Printing very well. Does it mean that a username and a password are needed when anyone wants to print documents on MAC OS X? If it does, how to set the username and password on MAC OS X? Any idea or suggestion