Purchase Variance Tracking

Hi Everyone,
My customer's accountant is looking for a report that would track the Purchase Variance Account.
For example, our customer is using Moving Average as their Valuation Method.  They may receive items using A/P Goods Receipt PO's and may ship it out on a customer delivery before receiving the A/P Invoice in the mail and entering it into SAP.  When this occurs, any price difference is booked to the Purchase Variance Account instead of the Inventory Account.  This makes sense as you do not want to adjust the value of your inventory as you no longer actually have it in inventory.
I also know that you may run a general ledger report by the purchase variance account and see a list of all of the invoices, production orders, etc. that have hit this account.  However, my customer's accountant would like more details.  He would like to know the specific item that is causing the variance.  Some of their invoices have more than 100 lines, so to do this manually is challenging.
Is there anyway to create this report?  Or is there already a standard one that I have not found? 
I appreciate your help.
Amanda

Hi again,
Last entry I think.
Like I said earlier, the where statement is not correct when it is pasted in here because of the site.
SELECT
case
when  cast (T0.TransType as nvarchar (16)) = '18' then 'AP Invoice'
when  cast (T0.TransType as nvarchar (16)) = '21' then 'Goods Return'
when  cast (T0.TransType as nvarchar (16)) = '20' then 'Goods Receipt PO'
when  cast (T0.TransType as nvarchar (16)) = '19' then 'AP Credit Note'
else  cast (T0.TransType as nvarchar (16))
end as 'Document type',
T0.BASE_REF as 'Document Number', 
T0.ItemCode,
T0.Warehouse,
T0.InQty,
T0.OutQty,
case
when T0.PriceDifAc = '_SYS00000000151' then '40110000001'
when T0.PriceDifAc = '_SYS00000000405' then '40110011101'
when T0.PriceDifAc = '_SYS00000000406' then '40110011201'
when T0.PriceDifAc = '_SYS00000000407' then '40110022001'
when T0.PriceDifAc = '_SYS00000000408' then '40110090001'
when T0.PriceDifAc = '_SYS00000000409' then '40110091001'
when T0.PriceDifAc = '_SYS00000000410' then '40110091101'
when T0.PriceDifAc = '_SYS00000000411' then '40110091201'
when T0.PriceDifAc = '_SYS00000000412' then '40110092001'
when T0.PriceDifAc = '_SYS00000000687' then '40110011001'
when T0.PriceDifAc = '_SYS00000000728' then '40110000002'
when T0.PriceDifAc = '_SYS00000000729' then '40110011002'
when T0.PriceDifAc = '_SYS00000000730' then '40110011102'
when T0.PriceDifAc = '_SYS00000000731' then '40110011202'
when T0.PriceDifAc = '_SYS00000000732' then '40110022002'
when T0.PriceDifAc = '_SYS00000000733' then '40110090002'
when T0.PriceDifAc = '_SYS00000000734' then '40110091002'
when T0.PriceDifAc = '_SYS00000000735' then '40110091102'
when T0.PriceDifAc = '_SYS00000000736' then '40110091202'
when T0.PriceDifAc = '_SYS00000000737' then '40110092002'
else T0.PriceDifAc
end as 'Price Difference Account',
T0.PriceDiff,
case
when T0.[VarianceAc] = '_SYS00000000151' then '40110000001'
when T0.[VarianceAc] = '_SYS00000000405' then '40110011101'
when T0.[VarianceAc] = '_SYS00000000406' then '40110011201'
when T0.[VarianceAc] = '_SYS00000000407' then '40110022001'
when T0.[VarianceAc] = '_SYS00000000408' then '40110090001'
when T0.[VarianceAc] = '_SYS00000000409' then '40110091001'
when T0.[VarianceAc] = '_SYS00000000410' then '40110091101'
when T0.[VarianceAc] = '_SYS00000000411' then '40110091201'
when T0.[VarianceAc] = '_SYS00000000412' then '40110092001'
when T0.[VarianceAc] = '_SYS00000000687' then '40110011001'
when T0.[VarianceAc] = '_SYS00000000728' then '40110000002'
when T0.[VarianceAc] = '_SYS00000000729' then '40110011002'
when T0.[VarianceAc] = '_SYS00000000730' then '40110011102'
when T0.[VarianceAc] = '_SYS00000000731' then '40110011202'
when T0.[VarianceAc] = '_SYS00000000732' then '40110022002'
when T0.[VarianceAc] = '_SYS00000000733' then '40110090002'
when T0.[VarianceAc] = '_SYS00000000734' then '40110091002'
when T0.[VarianceAc] = '_SYS00000000735' then '40110091102'
when T0.[VarianceAc] = '_SYS00000000736' then '40110091202'
when T0.[VarianceAc] = '_SYS00000000737' then '40110092002'
else T0.[VarianceAc]
end as 'Variance Account',
T0.[VarVal],
case
when T0.[NegStckAct] = '_SYS00000000151' then '40110000001'
when T0.[NegStckAct] = '_SYS00000000405' then '40110011101'
when T0.[NegStckAct] = '_SYS00000000406' then '40110011201'
when T0.[NegStckAct] = '_SYS00000000407' then '40110022001'
when T0.[NegStckAct] = '_SYS00000000408' then '40110090001'
when T0.[NegStckAct] = '_SYS00000000409' then '40110091001'
when T0.[NegStckAct] = '_SYS00000000410' then '40110091101'
when T0.[NegStckAct] = '_SYS00000000411' then '40110091201'
when T0.[NegStckAct] = '_SYS00000000412' then '40110092001'
when T0.[NegStckAct] = '_SYS00000000687' then '40110011001'
when T0.[NegStckAct] = '_SYS00000000728' then '40110000002'
when T0.[NegStckAct] = '_SYS00000000729' then '40110011002'
when T0.[NegStckAct] = '_SYS00000000730' then '40110011102'
when T0.[NegStckAct] = '_SYS00000000731' then '40110011202'
when T0.[NegStckAct] = '_SYS00000000732' then '40110022002'
when T0.[NegStckAct] = '_SYS00000000733' then '40110090002'
when T0.[NegStckAct] = '_SYS00000000734' then '40110091002'
when T0.[NegStckAct] = '_SYS00000000735' then '40110091102'
when T0.[NegStckAct] = '_SYS00000000736' then '40110091202'
when T0.[NegStckAct] = '_SYS00000000737' then '40110092002'
else T0.[NegStckAct]
end as 'Negative Stock Account',
T0.[NegInvAdjs],
sum(T0.PriceDiff + T0.[VarVal] + T0.[NegInvAdjs]) as 'Total Expense not on COGS'
From OINM T0 
WHERE T0.PriceDiff + T0.[VarVal] + T0.[NegInvAdjs] <> 0
GROUP BY
T0.BASE_REF,
T0.TransType,
T0.ItemCode,
T0.Warehouse,
T0.InQty,
T0.OutQty,
T0.PriceDifAc,
T0.PriceDiff,
T0.[VarianceAc],
T0.[NegStckAct],
T0.[VarVal],
T0.[NegInvAdjs]
this is quite a clumpsy query because it is not really possible to link OACT and OINM when looking for more than 1 account. the structure is very repetitive and should be simple to use for other purposes.
That's it.
Jesper

Similar Messages

  • I have purchased a track from itunes and it hasn't fully downloaded properly

    I have purchased a track from itunes and it will not fully download

    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Try deleting and redownloading
    Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • PUrchase Variance

    Hi,
    i have a problem... i have check it, but until know not found the solution..
    I have a PO and that PO is already MIGO and MIRO. for Example :
    in PO
    item A      qty 190     price : 1.3020 USD
    in purchase order history
    MIGO   -
    > qty : 190       Amount : 247.3800
    MIRO   -
    > qty : 190       Amount : 247.3800
    but when i check in the FI Document of MIGO > in the Accounting Document, when i check it, there is a purchase variance with data like below :
    item  Acc Type    PK              account   cost center          Desc                            Amount            Curr         Profit Center
    *19        M                 89          151000                            Inv of Raw Material     252.4339             USD          *
    20        S                 96          238000                            Gd Rcvd/In Rcvd             247.3800-     USD          
    21        S                 96          598000     1930               Purchase Price Var     5.0539-             USD          1930
    How come Inv of Raw Material is 252.4339 ??, because in my Purchase Order, price of its material is 1.3020 and qty is 190, so total is 247.3800.
    Any idea how to check it and solve this problem ???
    Thanks,
    Tok
    Edited by: toktok on Mar 31, 2011 4:12 PM

    Hi KV
    Purchase Price Variance arise for materials with Standard Price Control i.e. S. Suggested solution to your problem is simply change the Price Control to "V".
    But be careful, before doing this in MM, please check with your FI Guys for financial impact.
    Rgrds
    Riz

  • HT201272 How do I remove DRM-protected tracks?  I've purchased iTunes match and followed all of the directions for redownloading and I still can't play some of my tracks on the DJay 2 app.  Please help!  Do I need to purchase these tracks all over again?

    How do I remove the DRM-Protection from tracks so that I can play them on my DJay 2 app.  I've followed the directions for removal and it's not working...
    Will I have to purchase these tracks again?

    Apple's official advice is here... HT2905 - How to find and remove duplicate items in your iTunes library. It is a manual process and the article fails to explain some of the potential pitfalls.
    Use Shift > View > Show Exact Duplicate Items to display duplicates as this is normally a more useful selection. You need to manually select all but one of each group of identical tracks to remove. Sorting the list by Date Added may make it easier to select the appropriate tracks, however this works best when performed immediately after the dupes have been created.  If you have multiple entries in iTunes connected to the same file on the hard drive then don't send to the recycle bin. This can happen, for example, if you start iTunes with a disconnected external drive, then connect it, reimport from your media folder, then restart iTunes.
    Use my DeDuper script if you're not sure, don't want to do it by hand, or want to preserve ratings, play counts and playlist membership. See this thread for background. Please take note of the warning to backup your library before deduping, whether you do so by hand or using my script, in case something goes wrong.
    (If you don't see the menu bar press ALT to show it temporarily or CTRL+B to keep it displayed)
    tt2

  • I want to bulk purchase single tracks, how do i go about this without buying and paying each time

    I want to bulk purchase single tracks for my ipod, how do i go about this without buying and paying each time, can i not amass a number of tracks and then go to checkout. It seems to want to charge me each time. Help!

    Put them in your wishlist

  • Production order variance and purchase variance go to one business area.

    Hi Experts,
    I have a issue while Purchase order we have ordered 3000 qty and while goods receipt we posted 300000 qty and same was issed for prodction order instead of 3000 and got variance.  Then afterward purchase order qty was rectified with correct qty then purchase variance happed.  The production order variance is getting offsetting by purchase order variance and no effect on gross profit.
    Now my question is production variance is going one business area and purchase variance is going another business area. It should not be like that.  Both should be showed only one business area.  Please provide solution. 
    Thanks in advance.
    Balu

    Dear Balu,
    You can try OKB9 wherein you need to select the indicator 'BAlrn' against the cost elements of Purchase price difference account. Then select the line item and click the folder 'Detail for business area/valuation area' and input your business area. Thereby you can capture this variance in same business area, even if any other business area is entered or derived differently.
    Further, if your production variance account is also a cost element, you can direct the postings to the same business area, we can do the same as explained above. If not, we have to think of another configuration or work around. Pl let me know.
    Trust this helps much!
    Regards,
    Ashok SINGH

  • When I try to purchase a track, nothing happens when I click "buy". What am I doing wrong?

    So I'm trying to purchase a track from the itunes store. I click on "buy" and nothing happens. Am I doing something wrong, because it's such a long time since I bought a track on itunes that I've probably forgotten what to do.

    Go check your computer against the Minimum System Specifications for AE CC.  I think you will find that your machine isn't up to snuff.  Time to upgrade!

  • Music Store purchase problem / track labelling wrong

    I purchased 2 tracks from the UK iTunes stores. The artist was Misty's Big Adventure and the tracks were the 2 b-sides to the "Story of Love EP". The track "I Buried the Neighbours" is fine, its the track "My Tired Eyes", its the wrong track.
    Once downloaded I played the track and although it's titled "My Tried Eyes" it's actually the EP's title track "The Story of Love", I know this because I have the "Story of Love" on the album which I own on cd.
    The store is wrongly selling the same track twice under 2 different names.
    iTunes has messed up somewhere and I need to know how I go about getting a refund, or the track replaced with the right one.
    Thanks James

    James, fill in the form at the bottom of the page:
    http://www.apple.com/support/itunes/musicstore/songs/
    Be sure to provide them with the names of the incorrect songs so they will be able to correct the problem.

  • Purchased iTunes tracks distorts video

    I recently completed an iMovie project with video clips and stills (Ken Burns effect). When I added audio tracks from my iTunes Library, they all worked fine except for the ones I had purchased from the iTunes music store. The related videos and stills associated with the purchased audio tracks were choppy, distorted and sometime would freeze, although the actual audio tracks sounded great. When I deleted the purchased tracks, or added audio tracks from the Library that I had copied from my own CD's, the video and stills worked fine. Is there a simple fix or am I stuck with some format or other glitch that happens when I buy something from the iTunes music store? Thanks for your thoughts.

    Hi starstar:
    Welcome to the discussions!
    Your best bet is to burn the purchased music to an audio cd and re-import that way. The purchased music is protected and will need to be transfered that way.
    Sue

  • HT1725 Purchased 3 tracks from album, but only one track has downloaded properly

    Purchased 3 tracks from album, but only one track has completely downloaded, but system says that all 3 downloaded, how can I complete tracks?

    Welcome to the Apple Community.
    Try deleting the problematic file (electing to remove original file if/when prompted) and then re-downloading the file from the iTunes store.
    You can re-download content purchased from the iTunes store (availability varies depending on location) using the purchased option from the Quick Links section in the top right corner of the iTunes homepage in your iTunes application on your computer.
    You can re-download content purchased from the iTunes store (availability varies depending on location) using the purchased option at the bottom of the screen of the iTunes app (or video app) on your iOS device.
    If the problem re-occurs, select the content which is causing a problem and use the 'Report a problem' button in Your Purchase History using your computer.

  • INCOMPLETE PURCHASES MISSING TRACK/ALBUM/ARTIST DATA (generic song files)

    For the past 6 weeks, across the past 2 iTunes versions +(7.4.3 + previous)+ Purchases from the iTunes Store are downloading incorrectly.
    All purchased tracks download, as evidenced by the iTunes Store > PURCHASES section.
    However, these purchases are incomplete in: iTunes, therefore my iPod, and most critically: on my hard-drive.
    ITUNES:
    When viewed within Library > Music, most of these new tracks will display BLANKS.
    All elements for the core data: Artist, Album & Track will be blank
    The tracks are all functional in that i can play them, which sometimes means i can identify the core data.
    However, the purchases CANNOT be updated via GET INFO. The info i supply is never written/displayed in iTunes Library.
    IPOD
    Just like in iTunes Music Library, these incomplete tracks play on my iPod. But again: are BLANK-BLANK-BLANK generic.
    HARD-DRIVE +(windows file system)+
    Artist & Album folders are rarely created. Instead, the "Unknown Artist" folder will be filled with generic files:
    "01 download 1.m4p" where both numbers keep incrementing so that they're unique.
    The files can be re-named in the XP file system, but i have over 100 tracks like this, for which i've paid.
    *APPLE SUPPORT COMMENTS*
    I submitted an Apple Support form, which after a few days generated a ticket. However, i was directed to phone Apple Support.
    On the phone, Apple Support stated that my iPod was out of warranty for free support, and i would need to pay $30 for Support.
    This issue is manifesting independently of the iPod. This is a CONTENT issue within iTunes.
    I requested this be escalated to iTunes Store Support, as these are defective files.
    I cannot be expected to manually re-name all these tracks. Any additional purchases will continue to manifest this issue.
    *MY SUGGESTIONS:*
    I STRONGLY suggest you submit a form-request to Apple Support: http://www.apple.com/support/itunes/store/download/
    Even though you too may be directed to the toll-free Phone Support, this will at least generate a ticket for the issue you're experiencing.
    Then, call the 800 number and give them all the details.
    Tell them this is occurring between iTunes and your HD.
    Tell them these incomplete/incorrect downloads are faulty goods and need to be addressed.
    *GOOD LUCK!*

    In connection with the above question - I have found a sorting guide in the N82 FAQ, but I can not make it work on my phone - can anyone else?
    http://europe.nokia.com/search5/displaytopic.jsp?wsid=1001&topicid=N82en0101F859912

  • Breakdown of Purchase variance

    anyone know whether we have any standard Purchase price var. report, which can show vendor account group, exchange rate variance, freight variance, indicator that vendor is local , inter-company or overseas?

    any idea?

  • Purchasing & Order Tracking for New Independent Requirements

    Could anyone tell us how they are currently handling new independent requirements that are not available in the system?
    We are looking at a solution for our purchasing organization for engineering demands where a user needs to purchase a part or service which does not exist in SAP. Currently the user is manually procuring the item. We would like to come up with an automated solution so there will be better inventory tracking and reporting.
    Part of our problem is that the item does not exist in the material master in SAP hence cannot be purchased through the system. Do we have to insist that all part be loaded into the system, but then this would slow down the up-front buying process thereby affecting engineering design.
    Any thoughts/ ideas or best practices would be much appreciated.

    Hello Fred,
    You can purchase materials and services without master.
    - by free text entry
    - by select items from OCI enabled supplier catalog
    Regards,
    Masa

  • GRPO not posting to Purchase Variance Account

    SBO Version: 8.82 PL05
    Forum,
    I have the following scenario:
    The Goods Return was not created from a Goods Receipt PO, however its value was €249.83  and this is the value shown on
    the open item list.
    The journal posting relating to this return details a value of €260.77. Thus we have an imbalance between the open item list
    and our general ledger.
    The €260.77 represents the standard cost of the returns and this is the value we would have expected to have been credited to stock. €249.83 should have been debited to Accruals GRNI Stock and the difference should have been written off to Purchase Price Variance and historically we can demonstrate that this is what has happened.
    Would anyone be able to assist?
    Orla

    Hi Orla,
    If the Goods Return is independent from GRPO, do they share the same posting date?
    Thanks,
    Gordon

  • Purchase order - tracking nos.

    Hi All,
    In Purch.Order, there is a column for Tracking nos. I want this field to be automatically updated per item in the following scenarios
    1.When i convert a p-req to a PO, i want the p-req nos to be automatically entered by the system in this field per item
    2. When i create a internal request using ME51N & convert it into a PO using ME21N, i want the tracking nos field to contain the Internal Request nos.
    What customizing settings do i need to do in-order to achieve this?
    Vivek

    Hi,
    The PR number is updated in PO at Purchase Requisition No. field when you convert PR into PO. Then why you require this field to be updated in tracking number? I suppose that the tracking number is used to track the POs raised e.g. by User Name, Department Name.
    If anyway you want the field to be updated automatically while converting PR to PO, then this is not available in Standard SAP. You will have to do customization by writing programming.
    Regards,
    Prashant Kolhatkar

Maybe you are looking for

  • What is this kernel panic?

    hi guys, please help me to understand what is this kernel panic (it happened after wake from sleep, and i haven't any external device on usb): thanks Interval Since Last Panic Report:  177350 sec Panics Since Last Report:          1 Anonymous UUID:  

  • Integrate EP iVew with weblogic, problem with IE7

    hi We are integrating EP iViews within weblogic. We offer iView urls and Weblogic embed EP iViews in iFrame, which we click the link tree, different view shows in the iFrame rightside. The problem is: using IE6, iViews displays fine. while using IE7,

  • Recover songs from iPhone in recovery mode?

    Whenever I open my iPhone, it ask me to plug in to iTunes. When I do, it says to me that I need to do a restore before using it... However if I do this, I will lost all my sons, as I don't have access to the original computer with all the songs... Is

  • Color Palette custom color deployment

    Hello, I'm using Forms 9.0.4. I created a custom color called 'tooltext' in the default color palette. Then I created a Visual Attribute called TOOLTIP_VA that used 'tooltext' as its background. Finally I set the Visual Attribute for some of my Toolt

  • Hissing Noise Returns after Exporting files from Audition

    I have edited 40 wave files that had awful hissing in them for a project at work. I saved the files as I did them but when I went back to play them after exporting the hissing had returned to ALL the files! Is anyone else having this problem?