Tcode SD related for displaying a report with completed deliveries

Dear SAP Experts,
I would like to ask you a question.
Is there any Tcode for displaying a report with all the completed outbound deliveries (8000++) or posted goods issues (4900++) with the relevant net values of the relevant sales orders, BEFORE the creation of the relevant billing documents.
Great Thanks in Advance
Kind Regards
John

You can use transaction VF04 - Billing due list.

Similar Messages

  • Displaying a report with 250 000 rows in BI Publisher 11.1.1.6 == very slow

    Hi,
    I try to display a report with 250 000 rows in bi publisher 11.1.1.6.
    Running the SQL Request in TOAD take 20s.
    From bi publisher 11.1.1.6 this operation take more than 2 hour without result.
    The temp file show an xml file which increase (53 M to 70M to 100 M)
    I configure jvm (1.6_029) with the following parameters : Xms512m - Xmx2048 -XX:MaxPermSize=3072m
    My configuration is the following :
    REHL5 64bits
    8G RAM
    100G file system and 50 GB tmp file for bi publisher
    4 CPU
    Jdk Parameters:
    Xms512m -Xmx2048m -XX:MaxPermSize=3072m -XX:UseParallelGC.
    Total CPU usage : 25%
    Live Threads : 85 threads
    Used : 665 Mb
    Commited : 908 Mb
    GC time :
    8.047 s on PS MarkSweep (3 collections)
    8.625 s on PS Scavenge (242 collections)
    Any idea to increase performance or other will be appreciate.
    Thank you
    Mams

    If you are generating a PDF output, select "PDF Compression" option in the properties. Ensure you reduce all the log levels to "Low". Ensure there are no (or minimal) calculations/formulas in the report template.

  • Display apex report with subqueries

    How to display apex report with main query contains sub quires and sub query returns multiple values . Showing error sub query returns multiple rows.

    There is really two ways you can go about this. What it sounds to me like your dealing with is a master detail arrangement. What you probably need is two dependent reports where you pass a selected value from one report to a page item then key off that value for the 2nd report's query.
    Otherwise you could move the sub-query into the from portion of your master query and just pick the fields. This would then join the main query on the sub-query. At that point if you set your fields up correctly, you could use APEX grouping to group the results together and remove extra rows of data.

  • Blank not Zero for Display in report

    Hi,
    For a Particular Calculated Key Figure X, I get a Zero value using a logic such as
    if Y=0; X=0.
    For Display in Report, Currently it shos the vakue as Zero. I want to show it as a blank vaklue instead.
    Could you suggest how to achiev this ?
    I can not suppress Zero becuase for the other Key Figures in the report, i should show 0 as 0 only.
    Please acknowledge
    Regards
    Shweta

    Hi,
    In the query designer, go to query properties, the button is just before the check query button.  In the Display tab, in the section Number format, you have a setting for Zero Value Display.  Click on the options and select, Suppress Zeros.  You also have the option of showing the zero as something else.
    This setting is different from the Suppress zero setting, which will suppress the line when all key figures are zero.
    Rgds

  • Report for display the list with details of quantity stock order etc

    Can anybody give the code to display a list with details of quantity stock for specific materials in specific plants or storage locations based on the input values like plant, storage location, material and product hierarchy entered on the selection screen?

    Yes it is possible.
    we can try doing this by user exsits. with one of our client we have added a new tab in MIGO transaction.
    For details on user exsits user below links
    Check out the below links
    http://www.sap-img.com/abap/what-is-user-exits.htm
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.sapgenie.com/abap/code/abap26.htm
    here is the user exit examples..
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/6378ef94-0501-0010-19a5-972687ddc9ef
    all the user exits for sd
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/erplo/sd%2buser%2bexits
    Regards

  • Cannot display Crystal Report with ActiveX Viewer

    I am using SmartViewerActivex.asp in a classic ASP website to display Crystal Reports and the report will not load. 
    I get a blank grey screen with only the toolbar showing but able to export out with data intact.
    I am  using CR9, running in Windows Server 2012 R2 IIS 8.5.
    I've already spent about 2 weeks and have not found an answer. Please HELP!

    Unfortunately, no help available. I suspect when CR 9 released in 2002, Win Server 2012 was not even a twinkle in Bill's eye. E.g.; you are looking for CR 9 to be 10+ years forward compatible. In other words, it is not supported on WIN server 2012.
    Possible option is to upgrade to CR XI R2 (v. 11.5). There you have a weak prayer and hope. With luck it may work. Note that CR XI r2 was the last version of CR to include the AcitiveX viewer. And CR XI R2 has been out of support for over 2 years now.
    Best bet: CR SDK for VS .NET or CR SDK for Java. This would mean a new app...
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow us on Twitter

  • Error in displaying hierachry report with TableView and Tableiterator

    Hello,
    I tried to create a BSP as shown in this tutorial:
    /people/vijaybabu.dudla/blog/2008/08/04/display-hierarchy-report-in-bsp-using-tableview-and-tableview-iterator
    When starting the BSP I get an error that a field symbol is not assigned in the method get_column_name.
    When debugging the method get_column_name I can see that row_ref is initial. So the field symbols <row> and <col> are not assigned to any values, which causes the error some lines below.
    METHOD get_column_value .
    *-To get the Column values which is used in the Interator
      FIELD-SYMBOLS: <row> TYPE ANY, <col> TYPE ANY, <cur> TYPE ANY.
      ASSIGN row_ref->* TO <row>.
      ASSIGN COMPONENT column_name OF STRUCTURE <row> TO <col>.
      DATA tempchar(240) TYPE c.
      IF currency IS NOT INITIAL.
        ASSIGN COMPONENT currency OF STRUCTURE <row> TO <cur>.
        WRITE <col> CURRENCY <cur> TO tempchar.
        MOVE tempchar TO column_value.
        CONCATENATE column_value ` ` <cur> INTO column_value.
      ELSE.
        WRITE <col> TO tempchar.
        MOVE tempchar TO column_value.
      ENDIF.
      CONDENSE column_value.
    ENDMETHOD.
    Any help?
    Thank you

    Hi Patrick,
    Thank you for the answer.
    Unfortunately there is still the error with the unassigned field symbol after implementing the render_row_start method.
    Any help?
    Edit: It works now. There was an error with a wrong variable name (stupig mistake.)
    Thanks for the help!
    Edited by: Robert Karlovic on Mar 5, 2009 10:29 AM

  • Inputs required  for Displaying whole Report  in Single Currency only

    Hi All,
    Actually in R/3 Transactions are recorded in different currencies like 1)USD
                    2)AUD,CAD,EURO(Non-USD or FCC)
    Firstly,
    I need to display whole report in USD only. I have to convert all other currencies to USD (What are the posssible options and how to handle Currency Conversion)
    Second Scenario
    Moreover I have to provide Selection Screen options for Query in  such a way that query  has to display like below
    1) USD only.( If I give USD in selection screen of query it has to Retreive USD data only)
    2)FCC(NON-USD) only.(It has to retreive AUD,CAD,EURO etc only)
    3)Doc Currency (if i give whatever currency like it that may be USD or CAD or AUD that only should be retreived.)
    How to handle the above Selection criteria
    As iam not aware of the above Pls be very clear.
    Regards,
    C.V.

    Hi,
    If you shift the display mode of FF7B to standard Overview (F9) or click balance on display currency, the values will be shown in selected display currency in the entry screen.
    The pre-requisiste for getting correct value is to maintain the curr conversion table daily using OB08.
    Regards
    Prasad AV

  • BO fails to display cloned reports with DATE_TIME data in View mode

    Problem: We create a table using Rebean API. The table contains cells displaying DATE_TIME data (Detail). The cellu2019s formula is correct and the Applet shows the data alright. But when in view mode, there stand u201CINPUT_DATE_TIMEu201D text. If we open the report in the Applet and just click the cellu2019s formula without changing anything, the report starts to draw itself properly in view mode too.
    We have to manually touch cloned reports with DATE_TIME values.  Didn't find anything same in the search..
    Can anyone help with this problem?
    Great thanks,
    Oleg

    Hi Oleg,
    It may help if you post the code that you are using to create the block (table) with the DATE_TIME data.
    Please include the code from when you open/create the WebI document up to the point when you save the WebI document.
    Regards,
    Dan

  • "Block EDIT option*" for all WEBI Reports with Administrator Account

    Hi,
    I had opening CMC with Administrator Account.Due to some reasons i want to "Block EDIT option" for all WEBI Reports.Just Viewing is sufficient.In the same way for Universe"Blocking EDIT object option".Instead of Administrator guide reference (chap no 18 &19)option.Could you help in steps resolving issue.Thanks in advance.
    Regards,
    Swapna.

    Hi Swapna,
    You could perform the following steps:
    1. Login to CMC.
    2. Go to Folders >> Manage >> Top Level Security
    3. Click on Add Principal and add the user or group for which you have to set the security.
    4. Click on assign Security >> Advanced tab >> Add/Remove Rights.
    5. Select Content >> Web Intelligence Report
    6. assignt "Edit Object" right as denied and click on apply ok.
    This would help you to block edit option for only webi reports and all the webi reports in your environment.
    Regards,
    Nakul

  • Getting 'Skipped for Optimization' job state with %complete less than 100 - PWA PS 2010

    I am getting Job State = Skipped for Optimization for
    Job Type = Status Update with %Complete = 16%.. Now this job type shouldn't be skipped for optimization as per the understanding that MS is intelligently skipping duplicate jobs. Moreover there are no pre and post jobs in queue for
    the same project. What could be the reason here? using PWA PS 2010

    Eaman,
    I saw that you posted  the question in another thread as well. If you see Brian's reply from here, the Status Update job could also be skipped, and it is not necessarily a duplicate job.
    See here: http://social.technet.microsoft.com/Forums/projectserver/en-US/cefa327b-2ada-4a50-aacf-b9d1f2082a45/status-update-skipped-for-optimization-job-state-at-20-in-project-server-queue?forum=projectserver2010general
    Prasanna Adavi,PMP,MCTS,MCITP,MCT http://thinkepm.blogspot.com

  • Webdynpro development in for Displaying Tax report in ESS.

    Dear Expert,
    I am working with EP 7.0 and ERP 200r specifically on ESS.
    In the business package for ESS there is no standard iView that shows Tax report.
    Now I want to develop an iView (in Web Dynpro) that displays fetches tax report from R/3 from transaction pc00_n20_laps_lpo.
    Suggest from your experience  how to achieve it.
    Regards

    what are you looking at when you say tax report ... if you are looking at something like form 16 but every month then you can use the fms available and you can take an approach that is taken for payslip please.

  • Concat rows into one string for display on report

    I have a result set having 1 column and multiple rows.
    On the report I just want to display all the rows comma separated.
    For example:
    Name
    RAM
    GURU
    Sundar
    Shyam
    Inba
    KalaiOutput:
    "RAM, GURU, Sundar, Shyam, Inba, Kalai"Any help appreciated
    Thanks.

    Hi,
    it's ok like this.
    The result will be your return value.
    The reason is that if you choose context instead of value that you could have more than one return value.
    In your case you could use the code of Rohit and then just map it like
    input (with context E1EDPT1) -> UDF -> target
    Regards
    Patrick

  • How can I use web service call for edit a report with SSRS in Java Struts2 web application

    Hello im new in SSRS technologie and I would like make web service call at my SSRS server. Is sombody can help me ?
    - What API should I import in my project ? I use Maven can I found this API on Maven repository ?
    - I would like have an sample of code which initialize the ReportingService, do the call and process result.
    We use the SQL Server ReportingService 2008 R2 and currently we made HTTP call like this : http://<ssr_server>/ReportServer/Pages/ReportViewer.aspx?%2fSSRS_OMB%2fMyReport&rs:Command=Render&MyParam=<value>
    Regards

    Hi ombinte,
    SQL Server Reporting Services provides access to the full functionality of the report server through the Report Server Web service. Because the Report Server Web service is an XML Web service which uses Simple Object Access Protocol (SOAP) over Hypertext Transfer
    Protocol (HTTP), any SOAP-aware application or development tool can communicate with the SSRS web service.
    There are three primary ways to develop Reporting Services applications based on the Web service, please see:
    Develop applications using Microsoft Visual Studio and the Microsoft .NET Framework SDK.
    Develop applications using the rs utility (RS.exe), the Reporting Services script environment.
    Develop applications using any SOAP-enabled set of development tools.
    For more information about Report Server Web Service, you can refer to the following document:
    http://technet.microsoft.com/en-us/library/ms152787.aspx
    Hope this helps.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Displaying the Report with Period, Qtr and Year in a side by side view

    We have a requirement on which user wants to see report data with respect to week, Period, Quarter and Half Yearly views side by side in the same report on selecting a Period in the Prompt.
    Dividing this to multiple reports for Week, Period,Qtr and Half year is not a Solution as Customer is not ok.
    Project is using OBIEE 10.1.3.4.1 as a reporting tool.
    Regards
    Subhadipta Samantray

    Hi,
    if you are looking for the below format
    week|factvalue|month|factvalue|quarter|factvalue|year|factvalue with one prompt
    then revert back. Else revert back with the proper format required.
    Regards
    MuRam.

Maybe you are looking for

  • Locked out of macbook air after updating to mountain lion? please help

    i finally finished downloading and installing mountain lion this afternoon. i went to restart after install and now im locked out. i seem to be locked out by an old find my phone 4digit pin. iv tryed holding cmd and r when booting but it brings up an

  • Is this a bug or did I craft this incorrectly?

    Is this a bug? It seems as if when I have installed adobe with IE7 it renders the text in this file in such a way that it is truncated? Image here -- click on me --- If it is not a bug can someone educate me how this should be fixed? and also why it

  • Help!! ID app blocked.

    Password and security Forget and blocked Please send information to.  [email protected] thank you

  • Error -2096 when loading iTune 7.6 and 7.6.1 or Quicktime

    I am running Windows Server 2003 (32-bit) and until version 7.6 my itunes and quicktime were working fine. As of 7.6 and 7.6.1, I'm getting this error when running itunes or quicktime. Neither itunes nor quicktime are running in compatibility mode. I

  • Limiting the no. of EJB instances??

    hi there.. am building a J2EE application where i want to limit the no. of instances created of one of my session beans,"FreeInfoBean", to only one instance no matter what is the no. of users visits my site; in other words, i wana have only "one" bea