Stock in Warehouse Report - Printing Warehouse Name

Hi all,
My client is printing the Stock in Warehouse Report and wants to pull in the warehouse name in the report.
They are only ever generating this report for 1 warehouse.
When I look at the standard template I cannot see how even the waerehouse code is pulled in to the report.
The only fields I see are text fields.
I have tried adding a database field related to or linked to another field but I cant seem to get it to work.
Any advice greatly appreciated.
Thanks,

I believe you are talking about Inventory in Warehouse Report
Try the following:
Add a Formula field and check
Field_045 == "Whse:"
Add a database field as you seem to have done and select the Warehouse Name from the OWHS table and set the
Link to: on the above formula field and
Relate to on Field_046  ...................................this field is the Item Description field where the Warehouse Code is displayed
Check this out.
OR
If it only one warehouse Add a text field and hardcode the Warehouse Name

Similar Messages

  • Inserting Totals on the Stock in Warehouse report

    Hi all
    I want to knwo what code or formula must I use to total the stock in warehouse report .
    This report must print each warehouse report on separate papers.
    Thanks

    Hi All
    Managed to sort out the totaling had to insert formula ColSUm

  • Adding field to Stock in Warehouse Report

    Hi Experts,
    My customer would like to add the field "Description in Foreign" language to the Stock in Warehouse report.
    When I look at the existing fields on the report, they are not of the Source Type "Database" but Free Text !  Does this mean the report cannot be amended?
    I have tried to add the field regardless, but the table OITM is not available from the Database dropdown list.  I find this odd as it is a Stock in Warehouse report.
    Please help.
    Greig

    hi greig,
    Have u entered item description in foreign language in item master ?
    You can add UDF to standard reports like Stock in warehouse report ?
    Reports are linked with PLD dynamically,U can't link datbase field in PLD template,Report is linked internally with free text.
    Better develop query based report(ie. Query Print Layout designer).
    Jeyakanthan

  • Extra field on Stock In Warehouse Report

    Hi Experts,
    Is it possible to add an extra field to the Stock In Warehouse Report?  I want to show the Item's Sales Weight, but when I add the field, the weight of the first item is just repeated for every item.
    I have had to use Alt & Shift to access the table OITM table.
    Thanks
    Greig

    hi greig,
    Have u entered item description in foreign language in item master ?
    You can add UDF to standard reports like Stock in warehouse report ?
    Reports are linked with PLD dynamically,U can't link datbase field in PLD template,Report is linked internally with free text.
    Better develop query based report(ie. Query Print Layout designer).
    Jeyakanthan

  • Stock in warehouse report - value not displayed.

    In the "Stock in warehouse report" I selected this option: Price source = Last purchase price.
    In the report, for an item, the value in the field "Item Price" is not displayed.
    This item has a good receipt (with value) in this year.
    Why the value is not displayed?
    Thanks
    Paolo

    Paolo...
    1.  Did that receipt get paid for with an AP Invoice (when last purchase price is updated)?
    and
    2.  Did you run an Inventory Audit Report before running the Inventory in Warehouse Report?
    To see this maybe you can go into SAP OEC DEMO and create a new item, then create a PO - run the two reports, copy to Goods Receipt PO - run the two reports, and then copy to AP Invoice - run the two reports.  You will see the difference.
    Accounting point - an item is not really valued until the AP Invoice is processed.  Only then do you know what the actual purchase cost is for a product.
    Regards - Zal

  • Can we add new field to inventory Warehouse Report

    I have to add new field name "Desc in Frgn from Item master data" to   inventory Warehouse Report
    How can I do that

    Hello,
    IN print out (PLD) yes, in SAP b1 form not possible.
    Regards
    János

  • Similar to Inventory In Warehouse Report

    Hai To All,
              I want to create report similar to Inventory In WareHouse Report.How to do that.....???? Does anyone have idea about that???How to write query like creating subtotal??????????/
    Regards,
    Anitha

    Hi Anitha,
    To Create a Query like Inventory In Warehouse Report big challenge.
    If you want to create a query have a subtotal inside, you must have to set up a column to store the sorting values. The MS SQL sorts 0.....9..A....Z, so we will use this (of course in alfabetical order at nvarchar type columns)
    For example:
    i want to display warehouse information, itemcode, stock, average price, stockvalue in a Query, and want to create subtotals by warehouse.
    Query Source:
    select T0.WhsCode, T0.ItemCode, T0.OnHand, T0.AvgPrice,
    T0.AvgPrice*T0.OnHand as Total FROM OITW T0 where T0.OnHand != 0
    Let's create a composit sorting colum from Warehousecode and itemcode and special sign _ (underscore)
    [whscode]_0_[itemcode] will be the first,
    [whscode]_z_[itemcode] will be the last
    1.st row will be the warehouse code:
    SELECT T0.WhsCode+'_0_', T0.WhsCode, 'Warehouse:'+T0.WhsCode, NULL, NULL,NULL
      FROM OITW T0 Group By T0.WhsCode
    2.nd will normal query with the soring key at the begining
    SELECT T0.WhsCode+'_1_'+T0.ItemCode as SortCode, T0.WhsCode, T0.ItemCode, T0.OnHand,
    T0.AvgPrice,T0.AvgPrice*T0.OnHand as Total FROM OITW T0 where T0.OnHand != 0
    3.rd will the the subtotal of the warehouse
    SELECT T0.WhsCode+'_8_', T0.WhsCode, 'Subtotal of '+T0.WhsCode, NULL, NULL,
    sum(T0.AvgPrice*T0.OnHand) as Total FROM OITW T0 Group By T0.WhsCode
    4.th will be and empty line
    SELECT T0.WhsCode+'_9_', T0.WhsCode, NULL, NULL, NULL,NULL FROM OITW T0 Group By
    T0.WhsCode
    5.th will the the total of sum
    SELECT 'ZZ'+'_Z_', NULL, 'Total', NULL, NULL,sum(T0.AvgPrice*T0.OnHand) FROM OITW T0
    END:
    Now we have everything, let's put inside them (UNION). Be Sure, the normal query is at the first, because the UNION statement will use the column names of it.
    SELECT T1.ItemCode, T1.OnHand, T1.AvgPrice, T1.Total FROM
      SELECT T0.WhsCode+'_1_'+T0.ItemCode as SortCode,
        T0.WhsCode, T0.ItemCode, T0.OnHand, T0.AvgPrice,T0.AvgPrice*T0.OnHand as Total
        FROM OITW T0 where T0.OnHand != 0
    UNION ALL
      SELECT T0.WhsCode+'_8_', T0.WhsCode, 'Subtotal of '+T0.WhsCode, NULL, NULL,
        sum(T0.AvgPrice*T0.OnHand) as Total FROM OITW T0 Group By T0.WhsCode
    UNION ALL
      SELECT T0.WhsCode+'_9_', T0.WhsCode, NULL, NULL, NULL,NULL
        FROM OITW T0 Group By T0.WhsCode
    UNION ALL
      SELECT T0.WhsCode+'_0_', T0.WhsCode, 'Warehouse:'+T0.WhsCode, NULL, NULL,NULL
        FROM OITW T0 Group By T0.WhsCode
    UNION ALL
      SELECT 'ZZ'+'_Z_', NULL, 'Total', NULL, NULL,sum(T0.AvgPrice*T0.OnHand) FROM OITW T0
    ) T1
    order by SortCode
    Regards,
    J.

  • Inventory in warehouse report

    Hi all,
    Let's say I'm on january 25th and I'd like to run the Inventory in Warehouse Report  as per january 10th. Is there a way to acess the code of the report to run the query for a specific date (not for the current date as I'm getting it) ?
    Any idea would be appreciated.
    Best regards,

    Douglas,
    To get the code of this report you will have to use SQL Server Profiler.  Just start the service before trigerring the report and stop it there after and you should get the SQL.
    Another better way, would be to create a report by querying the OINM (warehouse journal) table. This table records all warehouse transaction and also has the date.
    <Font Color="Blue" Size=3>To understand the OINM table run this query
    </Font>
    SELECT T0.TransNum AS 'Transaction Number', T0.DocDate AS 'Posting Date', T0.ItemCode AS 'Item No.', T0.Dscription AS 'Item Description', T0.InQty AS 'Receipt Quantity', T0.OutQty AS 'Issue Quantity', T0.Warehouse AS 'Warehouse Code', T0.Balance AS 'Stock Balance' FROM  [dbo\].[OINM\] T0  WHERE T0.ItemCode = 'A00001' ORDER BY T0.TransNum
    <Font Color="Blue" Size=3>To get the stock by date, use the query below
    </Font>
    SELECT TOP 1 T0.ItemCode AS 'Item No.', T0.DocDate, T0.Balance AS 'Stock Balance' FROM  [dbo\].[OINM\] T0 
    WHERE T0.DocDate = '[%0\]'
    ORDER BY T0.TransNum DESC
    Note I have added '[%0\]' parameter for date selection presuming you will use this within SAP.
    Suda

  • Custom Warehouse report

    Hi,
    I would like to know how to create a report on the following criteria:
    1. User prompted to enter(from list of warehouses) warehouse name. Multiple warehouses can be selected.
    2. Based on the warehouse, the warehouse name, and its details are reflected on the report with each warehouse as a group.
    3. The title of records display on each page header
    Thank you.
    Regards
    Aziz

    Hi,
    1. Create a dynamic Parameter in the report on Warehouse field and set the "Allow Multiple values" to True
    2. In the record selection restrict the warehouses based on parameter values like
    Warehouse in {?Parameter}
    3. Place Warehourse name and deatils in the deatils section
    4. Create a group based on Warehouse Name.
    5. Place the Title on the Page header section.
    --Praveen G

  • Warehouse report in Item group wise

    Dear Experts,
    In Warehouse report i need the breakup in item group wise.
    Now Warehouse report show all item's and item's details. But now i need all group along with that group item details.
    Ex:
    Group 1
    Item A - 50
    Item B - 70
    Item C - 120
    Item N - 100
    Group 2
    Item AA - 50
    Item BB - 70
    Item CC - 120
    Item NN - 100
    Group 2
    Item AA - 50
    Item BB - 70
    Item CC - 120
    Item NN - 100
    How to get this report. any solution
    Thanks and Regards,
    Chandru

    Try the following query as you will not be able to manipulate or change the standard warehouse report to your requirements:
    SELECT T2.[ItmsGrpNam], T0.[WhsCode], MAX(T0.[ItemCode]) AS [ItemCode], MAX(T1.[ItemName]) AS [Item Name], SUM(T0.[OnHand]) AS [OnHand] FROM OITW T0  INNER JOIN OITM T1 ON T0.ItemCode = T1.ItemCode INNER JOIN OITB T2 ON T1.ItmsGrpCod = T2.ItmsGrpCod GROUP BY T2.[ItmsGrpNam], T0.[WhsCode] ORDER BY T2.[ItmsGrpNam], T0.[WhsCode]
    Kind regards
    Peter

  • Benefits of SAP Business Warehouse Reporting compared with the Query-tools?

    Hello experts,
    I've been creating reports with SAP Query tools, but been faced with few problems. First of all, there are restricted possibilities in terms of joining tables, and thus I cannot include all the data required for the report.
    One solution for this would have been to create separate queries and join the data together in Excel. The problem with this is that there exists no common field that would make sense as for a selection criterion. If the selection criterion is different in different queries, there is the danger of combining false data together, which would eventually result with distorted data. 
    So I was wondering, could anyone briefly tell me if SAP Business Warehouse reporting would solve these problems? And what other benefits would it provide compared with the SAP Query? I'd urgently need to know if it would be a beneficial investment for the company, since I haven't found solutions for the problems occurred in the creation of reports.
    Thank you in advance for you help!
    Maria

    The answers are yes - and thousands of companies have gone down this route
    Puttingin BW is a strategic aim of the comapny and not to be thought about and discussed in a BI forum such as this
    The costs of implementation and hardware will no doubt make your eyes water.
    To be quite honest SAP BI is a "no brainer" as most of the new e-SOA and new R3 modules reply on BW for their reporting needs

  • Receivables - ARDLP Report Not Printing Country Name

    AR Report ARDLP for concurrent program Dunning Letter Generate is not printing Country Name on send to and remit to part of the letter. Though the package 'arp_addr_label_pkg.format_address' is giving the output with the country name(when I ran the package in SQL Developer) but when I run the report it is not giving the country name. What could be the reason?
    Thanks,
    Sravanthi

    Thankyou very much Nagamohan. It is printing the country now on the dunning letters. I think it was because of settings in system options though the default country was set, print home country was unchecked. When I reran the process it printed the country.
    The Statement print program also had the same issue. Now after the changing the system options, it is printing the country in the send to address but not in the remit to address if the countries are same for both send to and remit to. If they are different it is printing in both the places. Eg. If it is United Kingdom in both send to and remit to, its printing only in send to. If its united states in send to and united kingdom in remit to then its printing in the remit to area. Any idea on this?
    Thanks,
    Sravanthi

  • Print group name on a page of Report

    I have sorted my data on my report, printing a group on each page of my report.
    On each page, i would like to print the name of the current group (easy) but also the name of the previous page group. How can i do that ?
    Using GroupName()...?

    duplicate - please do not post multiple times

  • Labview 5.1, I don't succeed to print a report (error 41002) using the full printer path name. Could you provide me examples? Thanks

    I already tried the tips given by the Document ID: 1VNE8JR5, but without any success.
    When I don't provide a printer name (or path), the Report is printed on the default printer. This printing works fine under Win98, but it doesn't work on WinNT or WinXP.

    Hello Randy,
    Thank you for your answer.
    My network printer name is "R&DHP4000TN" and the printer server name is: "SERVEUR_BDC".
    So I think the full path of the printer should be:
    "\\SERVEUR_BDC\R&DHP4000TN"
    Maybe, the printer name is too long, or the "&" is not correctly interpreted?
    What's your opinion about this ?
    Thanks
    Kind Regards
    Denis

  • How to include the UDF of items master data into PLD (Inventory in Warehouse Report (Detailed))

    Hi,
    Is there a way to include the UDF in the items master data into the <<Inventory In Warehouse Report (Detailed)>> PLD?
    I checked the default layout and found out all the column source type is "free text" and the content is #Item, how do I know the value of the UDF?
    Thanks

    Hi,
    Some of the standard reports are hardcoded in sap. Not possible to add UDF field in PLD.
    Also refer this thread Variables -  Sap business one
    Thanks & Regards,
    Nagarajan

Maybe you are looking for

  • How can I transfer licenses from one account to another?

    Since the 90s I've created a few different accounts (different email addresses) and have licenses scattered across a couple. I'd love to get those licenses merged into one. Can anyone help me with this?

  • Cannot print duplex with adobe acrobat reader 9.1.3 on centos 5.3

    Hi, I am managing some linux servers for users and I am using Centos 5.3 and acrobat reader 9.1.3 appears not able to print duplex I tried multiple documents on multiple printers (configured via cups). Thing is that evince (http://projects.gnome.org/

  • Ad Banner Problem with Firefox but fine with IE

    Hello Ajax, I have created my second websites name greencityaac.com under my L:\aacix\greencityaac. When it underconstruction I save all the files under location aacix folder and I have no problem to browse greencityaac web on either Firefox or IE. B

  • Time Machine (backupd) crashes with Segmentation fault

    I've had to wipe my TimeMachine backup to create a larger space for it. Now I'm facing this error, and I haven't got any backup anymore. Frightening. Here's my problem: Jun 22 11:19:45 computer com.apple.backupd[2682]: Starting standard backup Jun 22

  • CUCM Device Registration Search

    Was curious to know if it is possible to search using CCMadmin to search and see what devices are registered to which subscribers?  I have not found an easy search/filter in call managers UI to find what I am looking for.  All devices should be regis