New report to analyze MRP result.

Hi all,
Is there any report other than MD04 to analyze MRP result in order to get details for a given material or multiple materials. The details like SO, Forecast (from MD63), PO arrival, PR with respect to the material or materials?
Regards,
Brijesh

Hi ,
You Can check MD4C and CO46 where multilevel order details can be seen and for each line item if double click will display MD04 screen at the bottom.
Hope these are the reports you are looking for .

Similar Messages

  • How to get the output .pdf file of a quiz to report to the quiz results analyzer on my internal server (mamp)

    I created a quiz.
    Created an internal server on my compute rising a MAMP.
    When I publish my quiz using the multi-file publishing options...
    I am able to use both the "HTML" and the "swf" output files to complete a quiz and reporting the results to the quiz results analyzer.
    However, I am unable to get the output .pdf field to reporting to the quiz results analyzer.
    Any help? Would this issue have to do with the Acrobat Professional setting? Captivate setting? My internal server setting? or output fuel placement?
    I tired to put the .pdf file in the same MAMP root folder location as my "internalserverreporting.php and internalserverread.php files.
    Thanks for the help.

    Hello Varun,
    You cqan submit the report as a JOB and export the out put to memory, once the job is complete you can read the list to display the output.
    Cheers,
    Mano
    Cut & Paste form SAP help.
    Submit report ....
    EXPORTING LIST TO MEMORY
    Does not display the output list of the called report, but saves it in ABAP memory and leaves the called report immediately. Since the calling program can read the list from memory and process it further, you need to use the addition ... AND RETURN . Also, since the called report cannot be requested for printing, the addition ... TO SAP-SPOOL is not allowed here. In addition, you must not assign a function code to the ENTER key in the current GUI status. The saved list is read from the SAP memory using the function module 'LIST_FROM_MEMORY' and can then be saved to the database using EXPORT, for example. You can process this list further with the function modules 'WRITE_LIST', 'DISPLAY_LIST' ... of the function group "SLST".

  • Analyzer error creating new reports

    Has anyone seen this error message?<BR><BR>Error while executing query and retrieving data.; nested exception is com.hyperion.ap.APException:[1033] Native:<BR>-1073741819 Operating system exception thrown<BR><BR><BR>I started getting this today when I tried to create any new report to any database connection (old and new DB connections) Old reports still work, but I can't create anything new. Nothing has changed that I am aware of.<BR><BR>I tried restarting the service, rebooting the server, uninstalling and reinstalling Java client. Nothing has helped.<BR><BR>Nothing in the Hyperion knowledge base.<BR><BR>I plan to open a trouble ticket with Support but I have a ticket already opened with them for another issue with Analyzer for about a month now.

    <p>Gary,</p><p>I have seen this issue. As far as I remember it did occur whilecreating the reports. I tried getting this solved but eventuallyhad to reinstall. Are you using desktop client? Are you able tocreate reports from the webclient? Hyperion told me that it wasrelated to some patches that could have been pushed onto themachine but i never believed that.</p><p>Will try to dig back and see what I got for this.</p>

  • MRP result analysis report

    Dear friends
    i am trying to go back to old MRP results to see how a certain material was handeled, i am looking
    for a reports where i can see the result acoording to date and material , at the moment i have only
    Tcode - MDLD  which print out all results page by page for each single part.
    are you familiar with some helpful report.
    thank you in advance.
    david

    Dear David,
    In my understanding the reports MDLD or MD06 ,MD45,MD46 can help you.
    Regards
    Mangalraj.S

  • Report not showing correct results

    I am new to SSRS.  Using SQL 2008, Visual Studio 2010 shell.
    I have a stored procedure that when I execute it through SSMS, it returns the correct results.  However, when my report runs through SSRS (using the same stored procedure).  I get inconsistent results.
    I've been able to narrow it down to a specific parameter in my report where I pass in Id's.  This particular parameter gets its values from a query and is setup to use multiple values.  I have focused on two ID's which together are giving
    me problems. 
    The IDs are !'" and
    !!T.
    When I ONLY select !'" the report returns the correct results.
    When I ONLY select !!T the report return the correct results.
    When I select !'" and !!T the report only return the results for !!T.
    I have no clue why SSRS doesn't like this.  Any help would be appreciated.
    jhoop

    I created the specific function referenced in your link and it didn't help.
    Function
    CREATE FUNCTION [dbo].[c__SplitValues]
    -- Add the parameters for the function here
    @List nvarchar(2000)
    ,@SplitOn nvarchar(2000)
    RETURNS
    @RtnValue TABLE
    -- Add the column definitions for the TABLE variable here
    Id int identity(1,1)
    ,Value nvarchar(100)
    AS
    BEGIN
    -- Fill the table variable with the rows for your result set
    While(CHARINDEX(@SplitOn, @List) > 0)
    BEGIN
    INSERT INTO @RtnValue (value)
    SELECT
    VALUE = LTRIM(RTRIM(SUBSTRING(@List, 1, CHARINDEX(@SplitOn, @List) - 1)))
    SET @List = SUBSTRING(@List, CHARINDEX(@SplitOn, @List) + LEN(@SplitOn), LEN(@List))
    END
    INSERT INTO @RtnValue (Value)
    SELECT Value = LTRIM(RTRIM(@List))
    RETURN
    END
    The line in my SQL statement where I use this function
    AND TableName.UserId IN (SELECT Value FROM dbo.c__SplitValues(@UserId,','))
    jhoop

  • Scheduling a webi report and export the result in PDF on local disk

    I'm working with the new SDK to schedule a report and export its result on my local c:\ hard disk drive. My code give no errors at run but I do not find the file on my root.
    The Instance counter of the report increase each time, so there is a refresh.
    Is something wrong in the following lines? I just follow the examples give in the documentation for scheduling.
    Thanks in advance !
    Here is my code :
                   Destinations oDestinations = Destinations.Factory.newInstance();
                   Destination[] oDestination = new Destination[1];
                   oDestination[0] = Destination.Factory.newInstance();
                   oDestination[0].setName("CrystalEnterprise.DiskUnmanaged");
                   DiskUnmanagedScheduleOptions diskOptions = DiskUnmanagedScheduleOptions.Factory.newInstance();
                   String[] destinationFile = new String[1];
                   destinationFile[0] = "c:\\" + report_name + ".pdf";
                   DestinationFiles destinationFiles = DestinationFiles.Factory.newInstance();
                   destinationFiles.setDestinationFileArray(destinationFile);
                   diskOptions.setDestinationFiles(destinationFiles);
                   oDestination[0].setDestinationScheduleOptions(diskOptions);
                   oDestinations.setDestinationArray(oDestination);
                   System.out.println("Getting report...");
                   ResponseHolder respons = this.platform.get("path://InfoObjects/<path to report>/" + report_name, null);
                   InfoObjects reports = respons.getInfoObjects();
                   if (reports == null)
                        return;
                   Webi myReport = (Webi)reports.getInfoObjectArray()[0];
                   System.out.println("Getting scheduling info...");
                   SchedulingInfo schedulingInfo = myReport.getSchedulingInfo();
                   boolean newSchedulingInfo = false;
                   if (schedulingInfo == null)
                        schedulingInfo = SchedulingInfo.Factory.newInstance();
                        newSchedulingInfo = true;
                   System.out.println("Setting scheduling info...");
                   schedulingInfo.setRightNow(Boolean.TRUE);
                   schedulingInfo.setScheduleType(ScheduleTypeEnum.ONCE);
                   schedulingInfo.setDestinations(oDestinations);
                   WebiProcessingInfo webiProcessingInfo = myReport.getWebiProcessingInfo();
                   if(webiProcessingInfo == null) {
                        webiProcessingInfo = WebiProcessingInfo.Factory.newInstance();
                   WebiFormatOptions webiReportFormatOptions = webiProcessingInfo.getWebiFormatOptions();
                   if(webiReportFormatOptions == null)
                        webiReportFormatOptions = WebiFormatOptions.Factory.newInstance();
                   System.out.println("Setting Format...");
                   webiReportFormatOptions.setFormat(WebiFormatEnum.PDF);
                   webiProcessingInfo.setWebiFormatOptions(webiReportFormatOptions);
                   myReport.setWebiProcessingInfo(webiProcessingInfo);
                   if (newSchedulingInfo)
                        myReport.setSchedulingInfo(schedulingInfo);
                   System.out.println("Schedule...");
                   this.platform.schedule(reports);
                   System.out.println("Schedule done...");

    Hi Jerome,
    I have gon ethrough your code again and there we are missing the destination plugin.
    We have to query the info store to get the disk unmanaged plugin.
    Below is the code
    IDestinationPlugin destPlugin = null; //Destination plugin returned by InfoStore Query
            IDiskUnmanagedOptions diskUnmanagedOptions = null; //Object returned by the getSchedulingOptions() method
            List listDestination = null; //List object to hold destination file location
            IDestination destination = null; //Destination Interface
            //retrieve the Scheduling Options and cast it as IDiskUnmanagedOptions
            //This interface is the one which allows us to add the file location
            //for the scheduling
              for(int i = 0; i< oInfoObjects.getResultSize();i++)
               oInfoObject = (IInfoObject) oInfoObjects.get(i);
               destPlugin = (IDestinationPlugin)iStore.query( "SELECT * from CI_SYSTEMOBJECTS WHERE SI_PARENTID=29 and SI_NAME='CrystalEnterprise.DiskUnmanaged'").get(0);
              diskUnmanagedOptions = (IDiskUnmanagedOptions) destPlugin.getScheduleOptions();
            listDestination = diskUnmanagedOptions.getDestinationFiles();
              String dest = "c:\\";
            listDestination.add (dest + oInfoObject.getTitle()+".pdf");
              schedInfo = oInfoObject.getSchedulingInfo();
            schedInfo.setRightNow(true);
            schedInfo.setType(CeScheduleType.ONCE);
            //retrieve the IDestination interface from the SchedulingInfo object
            //use the setFromPlugin() to apply the changes we made to the
            //IDestinationPlugin object returned from the IStore
            destination = schedInfo.getDestination();
            destination.setFromPlugin(destPlugin);
              iStore.schedule(oInfoObjects);
    Regards,
    Prithvi

  • Report Comparing Previous MRP Runs

    Dear Experts,
    Is there a SAP report that compares past MRP runs/results?
    For analysis and reporting purposes, we need to compare past MRP runs to identify factors which affect a certain material availability issue (e.g. out-of-stock, increased or decerased inventory holding, etc.).
    For a more specific example, let's say I would like to know why a certain material had its inventory level significantly lower compared to the safety stocks at a specific time in the past. Is it because of a higher actual demand compared to the forecast used during the planning run? Or was there an abnormal increase in consumption during the production?
    We also need to do the same when we have internal and external auditors auditing the process and systems we have in place.
    Hope to get your inputs on this.

    Dear,
    In my understanding you can use T code- MDLD or convert the MRP run results into a PDF file and you can compare.
    However i dont think there is some standard report to compare the same.
    Also check this link,
    MRP results
    Regards
    Mangalraj.S

  • MRP RESULT TABLE

    Hi I am developing a report to display the MRP results collectively.
    what is the table from which i can get the MRP results like current stock, Purchase requisition and purchsae orders for various time periods.
    Solai
    [email protected]

    Hi ,
    U can also look into table MDKP - Header Data for MRP Document alongwith MDTB .
    Hope this helps.

  • Creating a New Report Project Crashes

    Hello,
    I've just downloaded the release of CR for VS2010 and installed it correctly.
    But when i try to create a new report in a new solution (i use emty project ) and then try to add with the database expert databases it freeze the vs2010 with no timeout and no error message.
    I saw in te forums that it's a recuring question so i tried to build a Virtual machine with win7 x64 and VS2010 and install CR on this fresh installation and it works !
    I'm wondering if there is any relation with the way my developpement machine was installed:
    Installed VS2010
    Installed VS2008
    Installed CR for VS 2008 sp1
    then Installed CR for VS 2010
    Also when i try to make a new project with the Crystal Reports Project Template there's a reference missing in the project. Even if i correct the mis-reference the project hangs on the database expert ...
    Could you investigate ? i don't want to reinstall my dev computer and i need the CR2008 just time to upgrade the Projects to VS 2010...
    Kind regards

    Hello,
    We are still trying to figure out what is causing this. It only happens on a few users PC's.
    Can you download debugdiag from Microsoft, if you don't have it already, and run it to capture on devenv.exe. Analyze it and tell me what dll the crash is happening in?
    Thank you
    Don

  • Problem creating new reports in 11.1.1 - still retains prior reports POV

    I have a problem creating new reports in 11.1.1 - it still retains prior reports POV. Example - I create one report - which shows "all locations". I then want to create another report, with a different POV, specific for just one location "North America". If I try to start with the original report and change the POV, the older reports default to the newest reports POV. I tried saving the grid with a different name, I tried creating a report from scratch (not using any prior reports, objects or grids) and I still get the same result. I also tried to use a new database connection - still no luck.
    Any suggestions? Am I missing a critical step?
    Going forward, what is the best approach to take to create several reports, with differing POVs? (example, the period and fiscal year may differ, or a location may differ). I want the reports to run, without using one report and chagning the POV each time.
    Thanks,
    Linda

    I think this is on the same lines as this question > HOW TO SET FR POV PER REPORT, NOT PER CONNECTION ?
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • MRP Results

    Hi All,
    I've managed to come out with the MPR results using Crystal Report 2010 using crosstab.
    My question is,
    How can i get the date and workweek as shown in B1 MRP results?
    Refer to screenshot below.
    The columns is basically MSN2.PeriodID
    But if i were to output it directly from B1 using the MRP.
    I will get output like this.
    How can i get that kind of value to show in Crystal report?
    Which table should i get it from?
    What condition should i use?
    Thank you very much for your help.

    Hi Adrian,
    To get the table info, joins etc, please repost to the SAP Business One Application space.
    -Abhilash

  • Variants Values in BI 7.0 New Reporting Tools

    Hello SDN,
    We had an OSS Message (204968) to address the issue where we are NOT able to see query "predefined" Variants values in new reporting tools BI 7.0 BEx Analyzer.
    SAP support has responded saying they are able to see the Variants values.  We've tried again but I still CANNOT see the Variants values, could this be an authorization issue?
    If yes, do you know if there are any new authorizations for query components and its access? 
    Many thanks for any helps and a highest point will be rewarded.
    Best regards,
    Niki

    So as part of your upgrade to 7.0 -
    Someone ran RSR_VARIANT_XPRA which converts Basis variants to new BW Variant tables - For use by 3.5 tools.
    Table Name                     Short text 
    RSRVARIANT                     Variant Values                           
    RSRVARIANTDIR                  Directory of Variants for Queries and Selection Objects
    RSRVARIANTTXT                  Texts for Variants                       
    RSRVARIANTVIEW                 Variant Header and Texts  
    Then RSR_MIGRATE_VARIANTS should have been run to convert the converted 3.5 variants to the to the new 7.0 variant tables?                                                                               
    Table Name                     Short text                                                                               
    RSRPARAMETRIZA                 Parametrization for a query, workbook, webapplication, pla
    RSRPARAMETRIZAT                Text of parametrizations 
    I believe by default - all variants get converted as Global.
    So if you look at the RSRPARAMETRZA* tables, do you have variants appearing in them or not?

  • Report Generation: New Report.vi

    Running applicaion in development mode works fine.
    After compiling however I get Error 7: Open VI Reference in New Report.vi
    Why am I getting this error?

    Has the version of Office on your machine changed since you installed the Report Generation Toolkit?  The VIs will become broken if the ActiveX interface changes, and this can happen when the Office version changes.  I recommend uninstalling and reinstalling the toolkit.  Also, what version of Report Generation Toolkit are you using?  The latest version is 1.1.1.
    -D
    P.S. - I'm going to respond to your other thread that you started with a link to this one.  Instead of creating multiple messages on the same question, just wait for a response to your initial thread.
    Darren Nattinger, CLA
    LabVIEW Artisan and Nugget Penman

  • Error 7 occurred at open vi reference in New Report.VI

    Hello!
    I use the report generation toolkit on LabView 7.0 to create a report in Excel. The program works fine until I make an executable version. I the get the error:
    Error 7 occurred at open vi reference in New Report.VI
    I use the New Report.VI, Bring Excel to front.VI and Save Report To File.vi
    Can you pleace help me!!!

    Most likely, you did not include the required libraries in your build script. When building an executable in which you use the Report Generation Toolkit, you must include the _Word Dynamic VIs.vi from _wordsub.llb and _Excel Dynamic VIs.vi from _exclsub.llb as dynamic VIs on the Source Files tab.
    Check this article for more info.
    http://digital.ni.com/public.nsf/3efedde4322fef19862567740067f3cc/86256a47004e16d186256a84004cb883?OpenDocument
    Daniel L. Press
    PrimeTest Corp.
    www.primetest.com

  • How to Create a new column from two different result sets

    How to Create a new column from two different result sets, both the result set uses the different date dimensions.

    i got solutions for this is apply filters in column formula it self, based on the requirement.

Maybe you are looking for

  • Upgrading 9.2.0.6 intelligent agent

    On my database of version 9.2.0.6, I believe the oracle intelligent agent there is same version -- 9.2.0.6. What latest version can I upgrade the agent to? Or the only thing I can do next is to upgrade it to use of 10g Grid control? I just want to cl

  • Spaces not working, please help!

    I used to use spaces on my old Mac Pro. Now I have a new one and Spaces isn't working properly. Very simply I assign Finder to space 1. Then assign InDesign to space 2. How it used to work is I navigate to a file in Finder in space 1, double click it

  • Error in Vendor Down payment F-48

    Hello, I got an error message during posting Vendor down payment in F-48: " Balancing field "Profit Center" in line item 003 not filled. The field Profit Center marked as balancing is not filled with any value in line item 003, even after document sp

  • EA1 - Script output loses focus

    Hello out there, when starting a query in script mode and then trying to copy a word into the clipboard via doubleclick and CTRL-C, not the word I clicked on is copied but something form the worksheet above. When I just left click into the script out

  • Deletion of Dimension Table data in Process Chain Step

    Hi, I am trying to delete the InfoCube Contents using a Process Chian.This process is successfully deleting the Fact table contents, but not dimension table contents. I need your help to automate the deletion of dimension table contents. FYI-- We are