Stock Analysis : Dead Stock : More than 60 Days.- Report

Dear SAPians
Good Evening
I need a SAP report i want to know if there is a SAP standard report i dontr want to have a Z-Report. My requirement is
<b>Stock Analysis : Dead Stock : More than 60 Days.</b>Required Fields are
<b>Item code   Description  S.Loc  Qty   Value.</b>
Pls ssuggest me .
Thank You
with regards
Moosa Anis
+91 9922 577 477 / +91 99608 47444

MC50 or MB5M use for dead stock

Similar Messages

  • More than one reports at the same time?

    Hello
    Is there any way that i can call more than one reports at the same time through the .FMX file. At the moment i can call only one report, if i need to call another report then i have to close the 1st report, then it will show me the 2nd report. Report Background Engine can run more than one reports at the same time?
    Nametullah kalair

    Yes i know, we can submit multiple - asynchronous- jobs, but the problem is, is not possible to open more than one previewer to see multiple reports at the same time for analysis.
    Regards,
    Nametullah kalair

  • How to show more than one report in a same Viewer or Form

    Dear all,
    I have develop many reports with CrystaReport XI and I'm using the CrystalReportViewer to show each of them in VB6. My Question is: Can I show more than one report in a same Viewer? if i need to show the report1.rpt and report2.rpt in a same window how can I do it?
    Sérgio Salazar - Brazilian VB developer

    No and Please re-post if this is still an issue to the Legacy Application Development SDKs Forum or purchase a case and have a dedicated support engineer work with you directly

  • How to show more than one report in a same Form

    Dear all,
    I have develop many reports with CrystaReport XI and I'm using the CrystalReportViewer to show each of them in VB6. My Question is: Can I show more than one report in a Viewer? if i need to show the report1.rpt and report2.rpt in a same window how can I do it?
    Sérgio Salazar - Brazilian VB developer

    I once had a project which involved alot of reports and on my mind I had the same idea; to display all reports with only one crviewer but was not able to. Instead what Idid was to create say 10 forms with a viewer on each and if the user wanted to produce extra reports, they had to close some of them. This worked out for me.

  • Viewing More than one report at a time

    Hi guys, i have an application developed with 6i forms, when i call reports, it shows up fine but users cannot open more than one report at a time. All opened reports are cued up.
    Is there any parameter i can set so that many reports can be viewed at the same time. Am using run_report_object to call reports.
    Thanks
    Jideofor

    Hi Darwin
    Yes best tool is FinalCut Pro and it's MultiCamera function.
    But one can do it in a fairly easy way in FinalCut Express
    • Drop Camera one clip into video track 1
    • Camera two => V-track 2
    • Camera three => V-track 3
    Double click on the clip in track 1.
    Now You see it in Viewer
    Turn on Image + Wireframe (above the picture in viewer window)
    Now shrink it to take up a Quater and move it up to the left hand corner
    Repeat with track 2 and three but move them into a free corner
    Now when You play TimeLine You see all three videos playing in concordance.
    Now You have to move them so that they sync. I use a photo flash during recording
    to get one white frame on all cameras
    Then to the edit.
    Turn on Toggle Clips Overlays [alt+W] - this turns on the transparicy line in each
    videoclip and audio level on those
    I use the transparicy line and the Pen tool to increase transparacy to 100% on the
    part of a clip I want visibly and drag down the other two to 0%
    When I've done this trough out the full TimeLine
    • I go into each Video track and restore size to 100% and that they fill window
    Now playback and see if You are satisfied.
    Still - You now have to figure out on which Audio that works best.
    Good Luck
    BUT in FinalCut Pro this is very much more better and most of all time saving.
    Yours Bengt W

  • Can't print more than 75 reports... Load report failed

    Hi,
    I have a problem: I can't print more than 75 reports without restarting my application.
    I'm using VB, Visual Studio 2005 and Crystal Reports Developer XI Release 2.
    It's a windows application.
    In the following examples I'm exporting to pdf but the same hapens if I put it on a viewer.
    I tried to do some tests to find out the problem. I don't have a solution yet
    Test 1:
    I made a cycle printing 100 times the same report. I used the code from an example that was in the BusinessObjects website and just put it into a cycle. At 75 I get the error "Load Report Failed"
       at CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.EnsureDocumentIsOpened()
       at CrystalDecisions.CrystalReports.Engine.ReportDocument.Load(String filename, OpenReportMethod openMethod, Int16 parentJob)
       at CrystalDecisions.CrystalReports.Engine.ReportClass.Load(String reportName, OpenReportMethod openMethod, Int16 parentJob)
       at CrystalDecisions.CrystalReports.Engine.ReportDocument.EnsureLoadReport()
    Dim ExportFolder As String = Application.StartupPath + "\export"
    If Not IO.Directory.Exists(ExportFolder) Then
    IO.Directory.CreateDirectory(ExportFolder)
    End If
    For i As Integer = 1 To 100
    Dim crReportDocument As ReportDocument
    Dim crDiskFileDestinationOptions As DiskFileDestinationOptions
    ''The path/location where the exported file will be saved
    Dim exportFilePath As String = ExportFolder + "\exported" & i & ".pdf"
    ''Create an instance of the Chart report
    crReportDocument = New Chart()
    ''Set the options for saving the exported file to disk
    crDiskFileDestinationOptions = New DiskFileDestinationOptions()
    crDiskFileDestinationOptions.DiskFileName = exportFilePath
    crReportDocument.ExportOptions.DestinationOptions = crDiskFileDestinationOptions
    crReportDocument.ExportOptions.ExportDestinationType = ExportDestinationType.DiskFile
    crReportDocument.ExportOptions.ExportFormatType = ExportFormatType.PortableDocFormat
    ''Export the report
    crReportDocument.Export()
    Next
    Test 2:
    I try to insert a "crReportDocument.Dispose() after the Export. It takes more than 1 minute doing the dispose and lots of time processing the 2nd report (more than 2 minutes)
    Dim ExportFolder As String = Application.StartupPath + "\export"
    If Not IO.Directory.Exists(ExportFolder) Then
    IO.Directory.CreateDirectory(ExportFolder)
    End If
    For i As Integer = 1 To 100
    Dim crReportDocument As ReportDocument
    Dim crDiskFileDestinationOptions As DiskFileDestinationOptions
    ''The path/location where the exported file will be saved
    Dim exportFilePath As String = ExportFolder + "\exported" & i & ".pdf"
    ''Create an instance of the Chart report
    crReportDocument = New Chart()
    ''Set the options for saving the exported file to disk
    crDiskFileDestinationOptions = New DiskFileDestinationOptions()
    crDiskFileDestinationOptions.DiskFileName = exportFilePath
    crReportDocument.ExportOptions.DestinationOptions = crDiskFileDestinationOptions
    crReportDocument.ExportOptions.ExportDestinationType = ExportDestinationType.DiskFile
    crReportDocument.ExportOptions.ExportFormatType = ExportFormatType.PortableDocFormat
    ''Export the report
    crReportDocument.Export()
    ' Dispose
    crReportDocument.Dispose()
    Next
    Test 3
    Same as Test3 but with ReportDocument.Close() before the dispose.
    Still doesn't work, Close takes too long, just like Dispose...
    Test 4
    I tried using a global variable with the ReportDocument.
    Instead of creating new instances of the ReportDocument, I keep using the same.
    It works fine if I use always the same report file, but if I try to print 2 different reports the 2nd returns the error "Load Report Failed" and takes too long loading before the error.
    Well, I made some researches on internet and I foud this, but still doesn't work with me, because Dispose always takes too long... 
    http://www.arquitecturadesoftware.org/blogs/hugobatista/archive/2006/02/22/236.aspx
    http://www.arquitecturadesoftware.org/blogs/hugobatista/archive/2006/05/23/328.aspx
    http://www.arquitecturadesoftware.org/blogs/hugobatista/archive/2007/04/05/CrystalReportsMemoryLeakFixByJerryCote.aspx
    Can anybody help?
    Thanks
    Isabel
    Edited by: Isabel Cabral on Aug 12, 2008 8:12 PM

    Already tried that, then I get another problem...
    After exporting the first report, takes 1 or 2 minutes doing the Close and the Dispose, and after that it takes too long trying to load the next report (after 1 hour I give up!).
    This is the code I'm using to do the tests:
            'Create the export folder
            Dim ExportFolder As String = Application.StartupPath + "\export"
            If Not IO.Directory.Exists(ExportFolder) Then
                IO.Directory.CreateDirectory(ExportFolder)
            End If
            For i As Integer = 1 To 100
                Dim crReportDocument As ReportDocument
                Dim crDiskFileDestinationOptions As DiskFileDestinationOptions
                ''The path/location where the exported file will be saved
                Dim exportFilePath As String = ExportFolder + "\exported" & i & ".pdf"
                ''Create an instance of the Chart report
                crReportDocument = New Chart()
                ''Set the options for saving the exported file to disk
                crDiskFileDestinationOptions = New DiskFileDestinationOptions()
                crDiskFileDestinationOptions.DiskFileName = exportFilePath
                crReportDocument.ExportOptions.DestinationOptions = crDiskFileDestinationOptions
                crReportDocument.ExportOptions.ExportDestinationType = ExportDestinationType.DiskFile
                crReportDocument.ExportOptions.ExportFormatType = ExportFormatType.PortableDocFormat
                ''Export the report
                crReportDocument.Export()
                'Close and dispose
                crReportDocument.Close()
                crReportDocument.Dispose()
            Next
    Thanks,
    Isabel

  • Is PDF output of more than one reports region with Apache FOP possible?

    Hi,
    I'm evaluating the possibilities of PDF output by means of the Apache FOP. I've installed the standalone OC4J, deployed the fop.war and configured my APEX 3.2 installation according to the various guides I found. Now I can generate PDF output of a reports region.
    I will have APEX pages containing more than one reports region. Is it possible to generate a PDF document of the whole page, not just of the individual reports regions? If so, then how?
    Thanks,
    Robert
    On a sidenote: Does anyone know where I can find the licensing model and fees for the standalone OC4J? They don't seem to be included in the [price list|http://www.oracle.com/corporate/pricing/technology-price-list.pdf].

    Hello Sue,
    >> The first report on Page 3 successfully opens Page 14 as a popup.
    Please show us the code you are using for the popup link (it’s not the template that causes it to open as a popup. The template only styles the page once it rendered).
    Regards,
    Arie.
    &diams; Please remember to mark appropriate posts as correct/helpful. For the long run, it will benefit us all.
    &diams; Author of Oracle Application Express 3.2 – The Essentials and More

  • Can we have  more than one report server ?

    Hi ,
    We have some products( built on oracle 10G and forms 10G) running and for it to run we have 5 application servers .
    The OS is Solaris
    Oracle version is 10G R1.
    We had till now one dedicated Report server .
    But now we need to have more than one report server .
    Can we have more than one report server attached at same time and in working condition ?
    Kindly advise .
    Regards
    SHUBH

    See Oracle® Application Server High Availability Guide
    http://download.oracle.com/docs/cd/B32110_01/core.1013/b32201/toc.htm
    Oracle® Application Server Enterprise Deployment Guide
    http://download.oracle.com/docs/cd/B32110_01/core.1013/b32125/toc.htm

  • Carls Auto Updating Report  - Updating more than one Report on a page.

    Does any one know how or adapted Carl's Auto Updating Report to work with more than one report on a page.
    If I simply add another html_PPR_Report_Page with the second report_id I get an Error : "gNode is null or not an object". using IE.
    function mon_Refresh()
    setTimeout("mon_Refresh()",5000);
    html_PPR_Report_Page (null,'R1736701112358007',$x('r_R1736701112358007').getAttribute('htmldb:href'))
    works fine but when I add the second call I get the "gNode is null or not an object". error.
    function mon_Refresh()
    setTimeout("mon_Refresh()",5000);
    html_PPR_Report_Page (null,'R1736701112358007',$x('r_R1736701112358007').getAttribute('htmldb:href'))
    html_PPR_Report_Page (null,'R1738006943370690',$x('r_R1738006943370690').getAttribute('htmldb:href'))
    Any help most appreciated.
    Anthony

    Hello,
    Looks like you might be running into our AJAX race condition take a look at this fix and see if it helps you out.
    Race condition in htmldb_get.js
    Carl

  • Documents Created Seen in more than one report globally

    Hi Experts,
      I would like to know whether the documents can be created globally? such that they can be seen in more than one queries in common.
      For better understanding my requirement is to know whether the documents can be created in such a way that they can be seen in common in more than one queries so that the business looking at one report should be able to see all the commentary/documents created on that particular Infoprovider. I hope I am clear in my question. Quick response is appreciated as this is an urgent requrement.
    Cheers,
    Sunitha.

    Hi,
      I know the documents are created on the characterisitcs combinations, but my requirement is to get the documents that are created on more than one query. That is I should be able to see the documents in my query created on all the queries defined on the Infoprovider.
      For that reason I am checking the document properties in RSA! to see whether the documetns are created on the query level or on the Infoprovider level.
    As you told the documents are created on the characterisitcs level but I am not able to see the docuemtns icon ordocuments on the characterisitics in the BEX .
    Regards.
    Sunitha

  • Running more than one report at a time using Developer Suite 10g(10.2.1.0)

    Hi all,
    We are using the Developer suite 10g(10.2.1.0). I'm finding it exciting to work with it. I'm facing the problem with report server. For example I'm trying to run two reports at a time from two different locations, the report server starts working on first report and the second report will be in queue. In 6i it was not the case. so i need such a scenario. where in the two users can take the reports concurrently instead of this FIFO method.
    Regards,
    Alok Dubey
    Edited by: Alok Dubey on Dec 15, 2008 5:22 PM

    Hello,
    By default, the reports server is configured with 2 kinds of engines :
    The default reports engine and the "URL engine" :
    For more details about the "URL engine " :
    http://download-uk.oracle.com/docs/cd/B14099_17/bi.1012/b14048/pbr_conf.htm#i1007633
    3.5 Configuring the URL Engine
    Thie "URL engine" has a minEngine=0 and maxIdle=30 :
    <engine id="rwURLEng" class="oracle.reports.urlengine.URLEngineImpl" initEngine="1" maxEngine="1" minEngine="0" engLife="50" maxIdle="30" callbackTimeOut="60000"/>
    It means that if the "URL engine" is not used, it will be stopped after 30 minutes.
    That's why you can see 2 engines just after having started the reports server and only 1 engine 30 minutes later
    Regards

  • Run More than one report in 6i

    while first report is on preview , how can i run another report in 6i
    i m getting this message when i run this statement
    Run_Product(REPORTS, 'D:\try.rdf', ASYNCHRONOUS, RUNTIME,
    FILESYSTEM, pl_id, NULL);
    'unable to run synchonous job concurrently with another report'
    how to solve it
    Edited by: user650554 on Oct 24, 2008 11:24 PM

    try using batch instead of runtime.

  • Printing more than one report in the viewer

    Post Author: gchambers01
    CA Forum: General
    I have 3 form letters I would like to print. Is there a way to print mutiple reports at the same time? I tried using the subreports but they need to run at different times in the report. One subreport is tied to the detail section of the first form. So when I print them the formatting in the subreports isn't correct. I've added link to on demand subreports for the time being.

    Is it a way to unique reference/rename the shuttles
    Well, each shuttle item will have its own item name, right? P1_SHUTTLE1, P1_SHUTTLE2, etc. Not sure I understand what you mean.

  • How to print more than one report

    Hi
    I want to print report A with parameter B then print report C with parameter B.
    I have tried subreports in various guises but with no luck.
    The issues are really that my sub report has different headers and footers to my first report.
    Is there any code that I could put in that calls another report in the same directory or am I missing something with subreports
    Any help much appreciated
    Thanks

    Hi,
      Insert a sub report in the report footer B section and goto > Section Expert of Report Footer B Section and check the option select new page before option.
    Regards,
    Vinay

  • Configuring more than one report server

    Hi ,
    I need to run reports simultaneously using so can any one please give information about configuring multiple report servers. please advise

    Hi All,
    Thanks for the responses.
    We had tried to store report server name in the database and accessed, that was for one AS.
    But we need to setup two AS (report server), one inside the firewall and the other outside. So we need to refer the report server name, based on the users using the apps. Since setting up the report server name for each user will involve lot of work at client site, we thought of gettng the server name dynamically from the called form.
    I hope the suggestion related to storing the report server name in env file and using tool_env.get_var should work. I will try out and get back on this.
    Once thanks for the suggestions.
    Thanks & Regards,
    Gopal.

Maybe you are looking for

  • Problem with date format using TEXT_CONVERT_XLS_TO_SAP

    I'm using fm TEXT_CONVERT_XLS_TO_SAP to upload an xls file. I've the following problem the date in the spreadsheet is 01.01.2010 the result in the internal table after using the fm is 01.jan.2010. What must i do to get 01.01.2010 in the internal tabl

  • No link to report purchased app problems

    I just got another iTunes email that confirmed my purchase. It was for an App Add on that was supposed to be Free. The title in the app add-on also uses the words FREE TODAY but I was charged 99 cents. So I followed the link which opened iTunes and f

  • New Shuffle always shuffle the same songs in the same order

    Just bought a shuffle for Marathon training. Loaded about 150 songs on it (about 1/2 full). I go on 1-3 hours runs. It might be my imagination but the shuffle sequence doesn't seem very random. I seem to hear the same songs in the same order each tim

  • Database Connection Hangs - getConnection()

    Dear Friends, i have a serious problem with a database connectivity, now the issue is,i have written the code to connect to the databaseserver which is in some remote place,it loads the driver,that's the oracle driver,but when it comes to DriverManag

  • Setting Netflix audio/subtitles on AppleTV

    So the AppleTV 4.4.3 update finally added Netflix for Mexico and it works fine, except for one little problem: When I tried to watch a movie, the language was set to "Portuguese", when I usually have it set to "English" when I watch it on the web. Ho