Report to display number of items sold by state

Hello experts,
I would need a report with the following paramters:
Deliver doc number,posting date,ship to state,item number,item desc,quantity.Is it possible to have the selection for the date range?
Thanks

Hello Gordon,
This is what I noticed.
This query shows the ship to state for the order if they are not on the User defined fields on a delivery document.
Let me be more clear
This query is displaying only the customers where the ship to address is entered in the BP master data.If the ship to address is entered at the sales order level it is not displaying the ship to state.
I hope this makes sense
Thanks

Similar Messages

  • Reports to display vendor open items by payment methods

    Hi Gurus,
    Is there any reports to display vendor open items by payment methods?
    Thanks i

    Hi,
      Use FBl1N or F.41
    Goto Dynamic selections, Select payment method give that and execute. It will give you the report payment methd wise.
    Regards,
    Radhika.

  • How display number of row in select statement

    How can I display number of row in select statement?
    Table
    data1 data2
    xxx ccd
    wss qwe
    qws uij
    I need get from SELECT statement:
    1 xxx ccd
    2 wss qwe
    3 qws uij

    user13734495 wrote:
    Thank you from answer.
    Statement
    select rownum rn, data1, data2 from table
    is good.
    And what have I do went I use
    select rownum rn, data1, data2 from table order by data1
    and I get
    3 qws uij
    2 wss qwe
    1 xxx ccd
    I need
    1 qws uij
    2 wss qwe
    3 xxx ccdhence the importance of describing the complete problem.
    select
      rownum,
      data1,
      data2
    from(
      select
        data1,
        data2
      from
        table
      order by
        data1)

  • Does Anyone Know How to Display Number of Items in a Folder?

    After "upgrading" to Lion, none of my folder display the number of items in the folder --a nice bit of information that was available in earlier versions of the operating system.  Is there an automatic way to see that information? [I imagine there are other really inconvenient ways, but is there a nice CONVENIENT setting I haven't figured out?]  THANKS.

    From your View menu in Finder choose "Show status bar"
    EDIT: Also there is QuickLook which is no longer on the toolbar of the Finder window but you can choose from "Customize Toolbar".

  • Display number of items in Get Info results?

    Our studio has finally made the jump to OS-X (Tiger) from OS-9. (Okay... I'll admit we had a bit of an "encounter" with Windows XP in the interim...)
    Part of our production workflow sees 1000's of folders/files routinely moved around from various media - CF card to hard-drive, DVD to external hard-drive etc. As part of our SOP, after a large transfer of important files, we check both the source drive/folder and the destination drive/folder to ensure the item count is the same.
    In OS-9, Apple accomodated this step in the Get Info window by showing the number of items in any given volume or folder. In OS-X, it seems to be gone. Surely I'm missing something...
    If Apple truly has done away with this feature (bad move from a production standpoint IMHO) is there a third-party patch or app that can display the number of items in any given folder or volume?
    Thanks-
    j
    G5   Mac OS X (10.4.5)  
    G5   Mac OS X (10.4.5)  

    I made an Automator action, which I can access with a control click on any folder.
    1. Launch Automator, click on Finder in the Library, then drag the "Get Selected Finder Items" from Actions into construction area
    2. Click on Automator in the Libray, select Run Applescript in Actions and drag it into the work area
    3. Paste in this Applescript:
    tell application "Finder"
    count every file of entire contents of (selection as alias) --files only
    display dialog ((the result) as string) & " Files" & "." buttons {"OK"} default button 1
    end tell
    4. Go to menu item File and select Save As Plugin, fill in the name and have it as a plug-in for Finder. It will be saved to
    "/Users/username/Library/Workflows/Applications/Finder/FileCount.workflow"
    which will appear in the Automator section of your control click contextual menu.
    This counts files only. If you want to include files and folders you will need to change the Applescript.
    Francine
    Francine
    Schwieder

  • Query that displays  number of orders shipped in state of Texas

    Hello experts,
    I would need a report that displays the following
    Deliver doc Number,Posting date,Item Number,Item Description and the ship to state to be "Texas".
    If possible we also need a date selection range parameter that would help filter the report.
    Thanks
    Edited by: Sheena Lin on Apr 14, 2011 9:39 PM
    Edited by: Sheena Lin on Apr 14, 2011 9:41 PM

    Hi,
    Try this:
    SELECT T0.DocNum, T0.DocDate, T1.ItemCode, T1.Dscription
    FROM ODLN T0
    INNER JOIN DLN1 T1 ON T0.DocEntry = T1.DocEntry
    WHERE T0.Address2 LIKE '%TX%' AND T0.DocDate > [%0]
    AND T0.DocDate < [%1]
    Thanks,
    Gordon

  • Need a report that display number of SR without Activities

    If I want to show number of SR without activity, is there any good solution?
    my solution:
    Report 1: Service Request History
    Owner, service number
    put advanced filter : that service number is not equal to any SR in Report2
    Report 2:Activity History
    Service Number , Activity subject(it will show those SR with activities)
    then Report1 will show those detail SR without activity
    but the performance is so bad, it costs lot of time to run it.......
    anybody has any idea?
    Thanks
    Amanda

    Hi,
    Take a look at Combined analysis.
    In Step 1 of the the reports designer - (Siebel Answers), Expand the Advanced Section.
    Select the combine with Similar Analysis.
    You then do the first report for All SR's. The second report for All SR's with Activities.
    Then use the "minus" to only return the SR's without Activities.
    I will warn you though, combined analysis is quite complex and challenging.....GOOD LUCK
    Regards
    Minesh Patel
    Innoveer Solutions

  • ColumnChart - display number of items per time interval

    I have a collection of objects. Each object has a "time"
    property of type Date.
    I need to display a ColumnChart which shows one column
    representing the number of objects in a time interval. For example
    if I had 5 objects:
    2 have a "time" of 3:00:00
    1 has a "time" of 3:00:12
    2 have a "time" of 3:00:17
    And my time interval should be 10 seconds...then I would have
    to columns one representing 3:00:00 - 3:00:09 and one representing
    3:00:10 - 3:00:19. The first column would have a y-value of 2 and
    the second column would have a y-value of 3.
    Any suggestions on how to do this? Should I maintain a
    Dictionary that maps a time to a count? and bind my chart to that
    Dictionary?

    "anoweb" <[email protected]> wrote in
    message
    news:g93s6o$oca$[email protected]..
    >I have a collection of objects. Each object has a "time"
    property of type
    >Date.
    >
    > I need to display a ColumnChart which shows one column
    representing the
    > number
    > of objects in a time interval. For example if I had 5
    objects:
    > 2 have a "time" of 3:00:00
    > 1 has a "time" of 3:00:12
    > 2 have a "time" of 3:00:17
    >
    > And my time interval should be 10 seconds...then I would
    have to columns
    > one
    > representing 3:00:00 - 3:00:09 and one representing
    3:00:10 - 3:00:19.
    > The
    > first column would have a y-value of 2 and the second
    column would have a
    > y-value of 3.
    >
    > Any suggestions on how to do this? Should I maintain a
    Dictionary that
    > maps a
    > time to a count? and bind my chart to that Dictionary?
    Use a dataFunction.
    HTH;
    Amy

  • Query for serial number for items sold

    hi,
    I want a query which would show serial numbers for Product A and Product B which were sold. I know that following tables will be used
    SELECT T0.[CardCode], T0.Docnum,T0.[DocDate], T0.[CardName],T1.Quantity,T1.[ItemCode],T6.DistNumber
    FROM ORDR T0  INNER JOIN RDR1 T1 ON T0.DocEntry = T1.DocEntry
    inner join DLN1 T4 on T1.DocEntry=T4.BaseEntry
    inner join ODLN T7 on T4.DocEntry=T7.DocEntry
    inner join OSRN T6 on T4.itemcode=t6.itemcode
    WHERE T1.[ItemCode] in ('ProductA','ProductB') and  T0.[CardName] like'% naaveol%' and T0.CANCELED<>'Y'
    group by T0.[CardCode],T0.[CardName], T0.[DocDate],T1.[ItemCode] ,T0.Docnum,T6.DistNumber,T1.Quantity
    Howerver I am doing some thing wrong and it is showing alot more records than it should. basically what I was trying to do was to get
    item code
    serial num
    quantity
    for the items mentioned  sold to the particular business partner.
    Your help will be greatly appreciated

    Hi again.......
    Please try this.......
    SELECT T0.CardCode, T0.Docnum,T0.DocDate, T0.CardName,T1.Quantity,T1.ItemCode,T4.DistNumber
    from ODLN T0 inner join DLN1 T1 on T0.DocEntry=T1.DocEntry
    left outer join SRI1 I1 on T1.ItemCode=I1.ItemCode   and (T1.DocEntry=I1.BaseEntry and T1.ObjType=I1.BaseType)
    left outer join OSRN T4 on T4.ItemCode=I1.ItemCode and I1.SysSerial=T4.SysNumber
    Regards,
    Rahul

  • Please Help! I need a report: Total Items sold from each Supplier.

    Dear experts
    I would like to build a Query\Report that will show the TOTAL amount of items sold (in invoices) from each supplier.
    This is not possible in the reports section, because it is not your regular Salles per cards\items report.
    I want the report to show a sum per line. meaning:
    I have totally sold from Supplier:'XYZ'  5,123 items (no matter which ones) at a total of 75,540$
    I would like the report to show ALL suppliers , thus the reason i want it to show 1 supplier-per line.
    I couldnt figure out how to write this Query and if its even possible to make a 'sum per line' report. (like the ones that you output with default report section).
    Personally , I found it really odd that it is not in the default reports option, It is higly common for organization to check Who is its Top supplier (in sales) in order to decied how to continue doing buisness with him.
    Could any of you experts assist me in writing this Supplier-Sales-Report?
    Thank you in advanced,
    D.Medalion

    Hi Medalion,
    Have you tried using sales analysis reports. Yyou can view items sold to particular customer in that report too. You need to click on items-->tick individual display and tick group by customers. This would give your desired format. Is there anyrhing else that you are looking for ??
    You may also check these to get an idea;
    Re: Query for top 5 items/customers
    Query for top 5 items
    This would require s user id and pass word
    https://websmp205.sap-ag.de/~sapidb/011000358700001172792006E
    Thanks,
    Joseph
    Edited by: Joseph Antony on Aug 6, 2010 11:19 AM

  • Reg: Displaying all the items of main window in the same page itself.

    All,
    I am developing an SAp Script form which is using five windows. Out of which third window is the main window. In the main window i am displaying details of item sold. The form prints perfectly when the number of items is with in the limit of the main window height. When it exceeds the main window height a second page with the same format of the first page is displayed with the remaining items in main window. ie 1,2,4,5 window is repeated in both pages.
    I want to display all the items of the main window in the first page itsel and if it exceeds first page show the remainng items in the next page and then display 4th and 5th window. IS it posiible using SAp script. Am i to do some configuration for this?
    Note: I have assigned Next page to first page itself.

    Thanks Anji.
    I understood about display of first and second windows.
    About main window and Fourth and Fifth window i still have doubt. I have given specific height to main window and after that put the fourth and fifth window with specific height in first page itself. So what happens is that When mainwindow overflows it will print up to specified height in the first page. Then prints the Fourth and Fifth window in first page. Then it goes to second window prints the remaining items in main window then again displays fourth and fifth window. Could you please find a solution for this too.
    Regs
    Rakesh

  • Crystal Report: Items sold by customer

    Experts,
    I am creating a crystal report to return items sold by customer.
    1) The report should allows me to choose date range, and if there is no date range selected, it should return all items sold, customer ID and name
    2) The report should also let me pick customer ID, and if there is no customer ID selected, it should return all items sold to customer.
    Please help me out.
    Thanks so much.

    Hi Phong,
    Please check below links.
    Optional Parameters in Crystal Reports
    Optional parameter, no values
    Crystal Reports Parameter display &amp;quot;All&amp;quot; when no value is passed in parameter? - Stack Overflow
    Any you can also create Option Parameter while creating Parameter in Crystal Report by Selecting Option option to TRUE in Parameter.
    Hope this helps
    Regards::::
    Atul Chakraborty

  • Items Sold Report

    We would like to create a report that shows how many items we have sold and percentage of each size sold in a specific color combination.
    We are a clothing company so ideally this report can be in a matrix format for a particular style -- showing the colors on vertical axis and sizes on the horizontal axis. 
    Within each color / size cross section (cell) would be the # of pieces sold and % sold in that size for that color. 
    I'm not sure if SAP will allow a report like this to be built.  If not, is there any way we can generate a query that has this type of information but just not in the matrix format?
    So, we would see the following:
    Item Code...Units Sold...% Of That Size Sold For Each Style/Color Combination
    For example --
    0737BKSMALL....20....15% (this is the percent of size small that has been sold in Black)
    Any ideas?
    Thanks,
    Mike

    Hi,
    What I mean by "% Of That Size Sold For Each Style/Color Combination" is this.  Let's say we have a style of shirt available in 3 colors: Navy, White, Black.  There are a total of 100 Navy pieces sold.  However, only 10 of those sold are in size Small and sizes for each color range from S-L.  So, 10% would be the "% Of That Size Sold For That Style In The Color Navy. 
    Our item codes are all defined in the following way -- they are 9 characters in length.
    The first 4 characters define the style.  The next 2 charcters define the color.  The last 3 characters define the size.
    So, in writing this Query, I was wondering if there was any way that for the last column of info (% Of That Size Sold For Each Style/Color Combination), it could somehow add up the total pieces sold for the first 6 characters in the Item Code that match.  That would give the total sold in the Style/Color combination.  This number would then be used as the denominator for all Item Codes with the same first 6 characters.   
    Make sense?
    Thanks,
    Mike

  • How to submit a bug report for OSB? - restore fails if number of items per page is changed from the default of 30

    In the OSB web gui, one of my users found that if the number of items per page is changed from the default of 30, the restore of the file will fail.  He tested this using recent versions of Firefox and IE.  We have verified this to also be the case using Chrome.
    In a directory containing over 100,000 files, moving 30 at a time to find the one to be restored is a very frustrating user experience.
    How do I file a bug report for this issue?  Is there a workaround for this bug to enable my users to more easily find the file to restore without being restricted to the default of 30 items per page?

    Yes there is a bug in the webtool in the current release. You can use the commandline obtool to do the restore, that is much faster and works fine.
    Thanks
    Rich

  • Invoices report that displays also the VAT number

    Hi
    I am looking for invoices report that displays also the customer/vendor name and its VAT registration number.
    The customer invoices are SD invoices (can be displayed using the FI) and the supplier invoices are MM or FI invoices.
    It is relevant for the supplier invoices (MM/FI) and for the customer invoices (two seperate reports)
    Thanks
    Ofer

    Hi Edgar,
    As per my understanding, std SAP report won't fulfill your requirement. Best approach would be a custom report where you can update the required fields.
    Regards,
    Chandru

Maybe you are looking for

  • Ringtone option not showing up for certain songs in itunes

    Ok, so some of my songs that I purchased on itunes are now ringtone eligible and the bell isn't showing up in my itunes. I have the most up to date version of itunes. I don't understand why a song that I have purchased in the last month that original

  • 10.9 laptop doesn't print to shared printer

    I had a 10.7 MacBook Air which printed just fine to a Lexmark 500n color printer shared from an olg G4 powerbook laptop. I upgraded it to a 10.9 MacBook Air, and added the printer as usual. When I print, it goes through the process and the file event

  • Default Applications

    Newbie question here - how do I change the default application to start when I open a file in Finder? I've installed NeoOffice and want it to be the default application for .doc files. Right now when I open a .doc file in Finder, it starts the TextEd

  • Newbie questioni on XPath

    Hi all, I'm a newbie in JAVA programming and encountered a problem in XPath. My XML file is in the form like below: <Parent index="1"> <Child name="A">11111</Child> <Parent index="2"> <Child name="A">00000</Child> I managed to get the value of the ch

  • JFileChooser language problem

    Hi, I have changed the various text fields of the JFileChooser to my language, e.g. UIManager.put("FileChooser.fileNameHeaderText", "string"); but i'm facing a strange problem. When the JFileChooser opens and i select the Details view, everything see