Inventory Transfer Report By WHS

Hi,
Can anybody help me to create a cutom Query for stock transfer report from one Warehouse to Another warehouse by range of dates with Value for each Inventory Transfer.
Regards
Sumanth

Hello Sindhi,
I would suggest you to use the stockprice field that contains the item cost of the item and multiply it by the qty.
Please try this query and let me know if it helps you.
SELECT sum (T0.[Quantity]*T0.[INMPrice]) FROM WTR1 T0  INNER JOIN OWTR T1 ON T0.DocEntry = T1.DocEntry WHERE T1.[DocDate] between '01.01.10' and getdate()
INMPrice is the item cost, quantity is the quantity on that row in the document. As you want the query to work for a date range I added the where.
Regards,
Marcella Rivi
SAP Business One Forums Team

Similar Messages

  • Inventory Transfer Report

    Hi experts,
       I want to retrieve data inventory transfer like
       Suppose Wh01 And Wh02
        I have done inventory transfer from Wh01 to Wh02 And Vice versa for I001
        I want in report like for subcontracting inventory transfer.....
    Regards,
    Sandy

    Hello Sir,
        Thanks for reply to me....
       But i want another result
    Scenario Like this-
       I am transferring I001 from wh01 to wh02 via inventory transfer Quantities suppose 10
       Now i transferring same item I001 from wh02 to wh01 via inventory transfer Quantities 8
    Then My report should shows following Fields
    DocNum  Series  CardCode    FromWhs    Towhs   InQuntities_In_Wh02  Out_QuntitiesIn_Wh02
    And Also 
    InQuntiies_In_Wh01     OutQuantitiesIn_Who2    Remaining_Qty
    I hope you guys will understand what i want ???
    like PurchaseVsSale report
    Regards,
    Sandy

  • Inventory transfer two report preview

    Dear Experts,
    Kindly help me upon our problem. We are generating a report for inventory transfer using our customized report that is set on default. The problem arises when we are clicking the preview 2 Report are generated, one is from our customized rpt file then the other is from the system report for Batch number (pld) format.
    Below is the result screenshot for the said problem. Sorry for blurring some important data, for company privacy. Thank you so much for your great help.
    Best Regards,
    jza

    Hi ,
      Go To
    1.Administration-->System Initialization-->Print Preferences
    2.Print Preferences->Per Document-->Document-->Inventory Transfer
    3.When Batch/Serial No. Exist, Print-->Doument Only.
    -Rajesh N

  • Inventory Transfer  Query Reports

    Hi experts
    Stock Transfer on DEMO basis(Goods send on Demo and Retrun to office after Demo completes ) In customer Wise Reports
    Our solution:
    we  have created 2 warehouse .
    1. physical warehouse.
    2.demo warehouse.
    we are using  "Inventory Transfer"
    but  our client 
    asking Reports is
    Header 1
    Header 2
    Header 3
    Header 4
    Header 5
    Header 6
    Header 7
    Header 8
    Header 9
    Doc number
    customer Name
    Item Name
    warehouse2
    warehouse1
    DEMO Date
    Item Return Date
    Remarks

    Hi,
    Try this query with batch number:
    SELECT T0.[DocNum], T0.[CardName], T1.[ItemCode], T1.[Dscription], T1.[Quantity], T4.[DistNumber],  case when T0.[Filler] = 'open' then T0.[DocDate] end as 'Sent date', case when T0.[Filler] = 'REJ_FG' then T0.[DocDate] end as 'Returned date' ,  T0.[Filler] as 'Warehouse 1', T1.[WhsCode] as 'Warehouse 2' FROM OWTR T0  INNER JOIN WTR1 T1 ON T0.DocEntry = T1.DocEntry left join  OITL T2 on t1.docentry = T2.[ApplyEntry] and  T1.[LineNum]  = T2.[ApplyLine] and T2.[ApplyType] = 67 INNER JOIN ITL1 T3 ON T2.LogEntry = T3.LogEntry left join  OBTN T4 on T4.[ItemCode]  =  T3.[ItemCode]  and T3.[MdAbsEntry]  =  t4.[absentry] WHERE T0.[CardCode] = [%0] GROUP BY T0.[DocNum], T0.[DocDate], T0.[CardName], T1.[ItemCode], T1.[Dscription], T1.[Quantity], T4.[DistNumber], T0.[Filler], T1.[WhsCode]
    Thanks & Regards,
    Nagarajan

  • Error while posting report in inventory transfer from draft

    hi, 
             we have entered all the details in inventory transfer at the row level.Due to editing purpose we have saved it as draft.but now while posting the document it displayed the error as "No Matching records found".
    ca anybody tell what is the reason????
    regards priya

    Hi Priya,
    Please go through note 1112941
    https://service.sap.com/sap/support/notes/1112941
    If itu2019s not the case, please help collect error in detail.
    Hope it helps.
    Regards,
    Jacqueline Jiang
    SAP Business One Forums Team

  • Difference Between Inventory Audit Report & Inventory Positing List Report

    Dear all,
    Please tell me the difference  between these twoInventory Audit Report & Inventory Positing List Report, Because I find difference , when observe Closing and Opening Stock Quantity on 1.4.10 audit report showing 610 units but on 1.4.10 posting list showing 973 units of opening stock
    Why so happen ? can anybody explain............
    Thank you
    Komanduri

    Hi......
    Please read below.....
    Inventory Audit:
    This report provides an audit trail for the posted inventory transactions in the chart of accounts.
    You use this report to make comparisons between the accounting view (inventory balance accounts)
    and the logistics view (inventory value displayed by the audit report). The report explains the value changes in inventory accounts.
    Inventory Posting List:
    The inventory posting list provides an overview of all postings in the system, based on various selection criteria and sort options. You can generate a report for specified warehouses based on one of the following selection criteria:
    Item
    Business partner
    Other: Enables you to specify a selection criterion such as warehouse or sales employee.
    Inventory Transfer:
    You use this function to transfer inventory from one warehouse to another. An inventory transfer can also be carried out as a consignment for a customer. The items are then stored in the customeru2019s warehouse and are sold from here.
    You cannot change the table after it has been added. If you display an existing inventory transfer later on, none of the fields in the table are active.
    You can, therefore, only correct an inventory transfer table that has not been entered correctly by entering a compensatory goods movement later.
    For more detail please refer help file in SAP.....
    Regards,
    Rahul

  • Re:Query For Inventory Transfer..!!!

    Dear Members,
    My Scenario is,
    I want to take a report for inventory transfer that contains
    1. Itemcode
    2.Item description
    3.quantity
    4.inventory quantity on the previous day.
    I have taken the tables owtr,wtr1,oitm and oitw.But the issue is if my document date is like 30.11.2010 i want the inventory quantity value as  on 29.11.2010.
    I need only query not SAP Reports.Plz suggest a suitable query for this issue.
    With Regards,
    Revathy

    Hi Revathy,
    You have to use OINM table to get your desired Stock on past dates.
    Have a look at these queries.
    1. Stock per itemwise
    select t1.ItemCode,max(t1.dscription) [Name],(sum(isnull(t1.InQty,0)) - sum(isnull(t1.OutQty,0)) ) [ClsStock],(sum(t1.transvalue)) [ClsValue]
    from OINM t1
    where  t1.DocDate <= '[%1]'
    group by
    t1.ItemCode
    2.Stock per item per warehouse wise
    select t1.ItemCode,max(t1.dscription) [Name],t1.warehouse [Warehouse],
    (select whsname from owhs o1 where ((o1.whscode) = (t1.warehouse))) [WarehouseName],
    (sum(isnull(t1.InQty,0)) - sum(isnull(t1.OutQty,0)) ) [ClsStock],(sum(t1.transvalue)) [ClsValue]
    from OINM t1
    where t1.DocDate <= '[%1]'
    group by
    t1.ItemCode,t1.warehouse
    Regards,
    Bala
    Edited by: Balakumar Viswanathan on Dec 10, 2010 5:22 PM

  • Need Inventory transfer query with bIn location information

    Dear Team,
    Please help me to create the query for inventory transfers with bin location information.
    WTR19 field is empty so that i have checked with tables OINM,OILM,OBTL
    But how can i link this tables..?
    Regards
    Sanu.

    Dear AndakondaRamudu,
    In the mentioned link i had already checked .I need the item movement bin transactions report inventory transfer using a parameter with UDF..
    Regards
    Ajith

  • Problems with Draft - Inventory Transfer - SDK 2007

    Hi all, I have problems making a Draft document of a Inventory Transfer using the DIAPI, I know that the draft of inventory transfers is new in SBO 2007 and I have the correct version of the DIAPI installed, the problem is that I can't find the property "FromWarehouse", into the Draft Object.
    Thanks for help.

    Note that the header of this forum specifies:
    This forum is dedicated to development and deployment of .Net applications that connect and interact with BusinessObjects Enterprise, BusinessObjects Edge, or Crystal Reports Server. This includes the development of applications using the BusinessObjects Enterprise, Report Application Server, Report Engine, and Web Services SDKs.
    I do not think your query concerns any of the above mentioned products? If that is the case, please post to the correct forum.
    Ludek

  • Field integration between Inventory Transfer and Sales Order?

    Dear Gurus,
    Hope to find you well, we have to redefine our processes of sales. Now stock from a remote site will be transferred to inventory in transit warehouse recorded. Truck Number(UDF) and Document Number  (Inventory Transfer) will be used to trace inventory status and creating Crystal Reporting from Stock Uploading till the A/R Invoice are created. My Query is how can this be achieved in SAP B1 2007 A Patch 10. Please advice. Its very important for us.
    Please find trail that will help you understand:
    Process Mapping Help Needed
    Faisal
    Edited by: Faisal Baloch on Nov 17, 2011 7:02 AM

    Dear Faisal,
    Unlike the higher package, B1 has no option to link between Inventory Transfer and Sales Order. You have to add UDF and manually maintain the link.
    Thanks,
    Gordon

  • Inventory Transfer Postings

    Dear Sir/ Madam
    I choose set G/L Accounts by Warehouse Wise for some items as well as Item Group wise for some Items. When I Go to inventory Transfer for those items which are wear house wise mapped the stock accounts given to warehouse get affected.
        Can I choose accounts as per clientu2019s requirement in inventory transfer transaction?
    Different stock accounts for different items which are mapped as warehouse wise

    hi,
    Choose any one of it either item group / warehouse but not both.
    It will difficult to analyze journal postings when u choose both & cause problems in taking reports.
    Configure g/l acct's according to business requirement..
    In stock transfer to warehouse get debited,from warehouse get credited,both of them are stock accounts.
    Jeyakanthan

  • Approval Query on Inventory Transfer

    Hi All,
    I want an Approval Procedure to be invoked when a Particular User post a Inventory Transfer. The Scenario is the user will transfer goods from his Warehouse to 2 different Warehouse. For Eg: Stores and Despatch.
    He will make a separate Inventory Transfer to transfer goods to Stores and another entry to transfer goods to Despatch.
    If he Transfer Goods to Stores, it has to be approved by Stores Department User.
    If he Transfer Goods to Despatch , it has to be approved by Despatch Department User.
    I tried using Query in Approval Procedure. Not able to get correct way it shoud work.
    Help Needed...
    Thanks in Advance....
    Marikannan

    Hi Thanks for the reply...  I have created the UDF for those. I used the Following Query.. But it doesnt work. Any issue with my query...
    DECLARE @whs AS NVARCHAR(20)
    SET @whs = (SELECT $[$18.1.0])
    DECLARE @reas AS NVARCHAR(20)
    SET @reas = (SELECT $[$u_po_ref.1.0])
    SELECT DISTINCT 'TRUE' FROM OWTR Z1 WHERE @reas = 'DSPT' AND @whs = 'QLTY'
    I Use @whs for Filler field in OWTR
    I User @reas for UDF in OWTR
    Thanks... Marikannan
    Edited by: Marikannan Balu on Apr 22, 2010 8:11 AM

  • Inventory aging report for vehicle parts

    Hello Guys,
    I need to prepare an inventory aging report for Vehicle parts.
    We already have new vehice ad used vehicle's inventory aging reports created by somebody else.
    I am very new to sap-bi.
    I am very confused about designing same cz i checked with the fields ad they are a ittle different from the fields which are there in above two reports.
    I have downloaded 0ic_c03 from business content but do not know how to prepare its datasource......
    Please tell me how should i go about it.
    Thanks & Regards,
    Dolly

    Hi Dolly,
    What is your question? It's almost impossible to provide an answer without any information.
    Perhaps you should try to ask in your company for some help.
    Cheers

  • Inventory audit report and Inventory GL balance - Not matching

    Team
    I taken the report from Inventory audit report , this is not matching with inventory charts of accounts balance.
    What may be the error
    How to close old topics, how to provide the points for good suggestion. My points also not increased , what I need to do increase my points.
    Thanks
    Anantha Desai

    Hi,
    1. Please check if any manual JE posted to that GL account
    2. How to close old topics
    There are two way close discussions:
    ----> If you got right answer, you can choose "correct answer" option in replies.
    ----> If you get an idea or suggestions, you can choose "Helpful answers" and need to close manually by choosing "Assumed answered:.
    how to provide the points for good suggestion
    Please choose "helpful answer" and "Like" option for good suggestions
    My points also not increased , what I need to do increase my points.
    Points will be increased, if you provide right suggestions, ideas and answers to other member discussion.
    Refer this document for further details:
    http://scn.sap.com/community/support/blog/2013/04/03/how-to-close-a-discussion-and-why
    Thanks & Regards,
    Nagarajan

  • Inventory Audit Report - Not followed FIFO and Batch management

    I have created an Item say XYZ, with Batch management and valuation methode FIFO.
    Then I have created a batch say 1 with posting of opening balance transaction with posting date as 1st April 2009.
    Now when I post an A/R Invoice with posting date as 19th May 2009 in which I have selected above batch.
    I have also posted some more purchase transaction for same item before 19th May 2009 that is the date of sales invoice.
    Now when I see Inventory Audit Report, system has not picked up the cost column as per Batch selection in A/R Invoice, and also not as per FIFO, but it has followed the system date of transaction for deriving cost as per FIFO.
    Can anybody throw light on this ?
    BR
    Samir Gandhi

    Dear Samir Gandhi,
    Irrespective of posting date you use for document posting, with FIFO Method system will arrange all the inventory posting in layers with First inventory posting will form the base for first inventory movement out and so on
    Example:
    1st Entry:(Opening Balances)
    posting date : 01/04/09    Item : XYZ    quantity : 5   Unit cost price : 100
    2nd Entry: Purchase
    posting date : 01/05/09    Item : XYZ    quantity : 5   Unit cost price : 105
    3rd Entry: Purchase
    posting date :25/04/09    Item : XYZ    quantity : 5   Unit cost price : 90
    Layers created :
    1.    Item : XYZ    quantity : 5   Unit cost price : 100
    2.     Item : XYZ    quantity : 5   Unit cost price : 105
    3.     Item : XYZ    quantity : 5   Unit cost price : 90
    4th Entry : Sales
    Item : XYZ    quantity : 8  
    So here cost of goods sold will be : ( 5x100)+ ( 3x105) = 815
    and it wont be  ( 5x100)+ ( 3x90) =770 if that's what you are expecting
    Regards,
    Mukesh

Maybe you are looking for

  • Phone not working after line move and number change

    Hi. I just removed my line on my on plan and changed my number. Now my phone will not work such as making calls.

  • Security Deposit Payment and Clearing!

    Hi Experts, We have an requirement when the cash security deposit is processed/released in SAP ISU it should hit the liability ledger account and not the bank clearing account. As per SAP standard functionlity when the cash security deposit request i

  • Remove duplicate records in the Footer

    Hello all: I only want to print the final result(distinct records) in the footer section, therefore, the header and details sections are suppressed. However, I'm showing duplicate records in the footer section. How do I suppress the duplicate records

  • Where is OAS 4.0.8

    All the examples of the jdev 3.0 docs are developed for oas 4.0.8 where i can download this version, all that i can find is oas 4.0.7 .... Regards , Nacho null

  • Which port is better usb or  gigabit ethernet?

    My Canon printer has USB 2.0 and an Ethernet port. Is there a performance or functionality preference? My Airport Extreme base station has both types of ports as well.