How to open a very huge HFR recording using JRMC?

When trying to open a HUGE JFR recording of size 500 mg using JRMC, it is throwing Out Of Memory error.
How to open a very huge HFR recording using JRMC?
Any clues?

You can try to start mission control by using the command line and defining more memory for the JVM it is running in, for example,
java -Xms1024m -Xmx1024m -jar <JROCKIT_HOME>/missioncontrol/mc.jar
Of course you can incease the Xms and Xmx values

Similar Messages

  • How to create a partner and header record using CRM_ORDER_MAINTAIN?

    Hi any one knows how to create a partner and header record using the function module CRM_ORDER_MAINTAIN??
    I tried to  create a record, but i only managed to create a header record and the partner record is not reflected in the transaction.  Why is that so? is there any indicator that i need to include?
    Thanks..
    Jen

    Hi Jen!
    I use this FM and it works perfectly.
    Use this to create a partner:
      gs_partner-ref_handle    = '0000000001'.
      gs_partner-ref_kind      = 'A'.
      gs_partner-ref_partner_handle = '0001'.
      gs_partner-partner_fct   = '00000001'.
      gs_partner-partner_no    = NO_PARTNER. "number of the partner, bu_partner
      gs_partner-display_type  = 'BP'.
      gs_partner-no_type       = 'BP'.
      gs_partner-kind_of_entry = 'C'.
    *  ls_partner_l-ref_handle    = '1'.
      gs_partner-ref_guid      = '00000000000000000000000000000000'.
      APPEND gs_partner  TO gT_partner .
      ls_input_field-ref_kind  = 'A'.
      ls_input_field-logical_key   = '0001'.
      ls_input_field-objectname  = 'PARTNER'.
      ls_input_field-ref_handle  = '0000000001'.
      ls_input_field_names-fieldname = 'DISPLAY_TYPE'.
      INSERT ls_input_field_names INTO TABLE ls_input_field-field_names.
      ls_input_field_names-fieldname = 'KIND_OF_ENTRY'.
      INSERT ls_input_field_names INTO TABLE ls_input_field-field_names.
      ls_input_field_names-fieldname = 'NO_TYPE'.
      INSERT ls_input_field_names INTO TABLE ls_input_field-field_names.
      ls_input_field_names-fieldname = 'PARTNER_FCT'.
      INSERT ls_input_field_names INTO TABLE ls_input_field-field_names.
      ls_input_field_names-fieldname = 'PARTNER_NO'.
      INSERT ls_input_field_names INTO TABLE ls_input_field-field_names.
      INSERT ls_input_field  INTO TABLE  gt_input_fields.
      clear ls_input_field-field_names[].
      CALL FUNCTION 'CRM_ORDER_MAINTAIN'
      EXPORTING
    *    it_schedlin_i   = gt_schedlin_i_com
        it_partner      = gt_partner
    *    it_sales        = gt_sales
    *      it_orgman       = gt_orgman
    *      it_appointment  = gt_appointment
    *      it_ordprp_i     = gt_ordprp_i
    *   it_product_i    = gt_product_i
    *      it_activity_i   = gt_activity_i
    *      it_pridoc       = gt_pridoc_com
      CHANGING
        ct_orderadm_h   = gt_orderadm_h
    *   ct_orderadm_i   = gt_orderadm_i
        ct_input_fields = gt_input_fields.
    *      ct_doc_flow     = gt_doc_flow
    *      cv_log_handle   = gv_log_handle.
    Hope it helps u,
    Regards,
    Mon.

  • How to open the eps file in illustrator using c sharp?

    How to open and save the eps file in illustrator via c#(c sharp)? Is there any c# illustrator reference guide available? Kindly advise me.
    Thanks

    Pretty easy ...take the vb reference guide and make the modifications accordingly.
    A quick tip would be to press CTRL+W and view the Object Browser after adding a reference to the illustrator Type Library... that will give you a pretty neat look about the illustrator object model in visual studio ... i`m not quite aware if a similar option is available within Mono Initiative's designer.
    after that is pretty easy.
    (it doesn't really make sense imho importing the namespace as "Application" is used in many other namespaces)
    add this to your Form1_Load routine:
    Illustrator.Application app = new Illustrator.Application();
    app.Open(@"D:\Work\msh_3ds.ai", null, null);
    hope it help.
    cheers;

  • How To open a MS Word/Excel document using Java

    How do i open a MS-Word/Excel document using Java Code.

    Get SDK (which is freeware) at
    http://www.simtel.net/product.php?id=60701&sekid=0&SiteID=simtel.net
    http://shareware.pcmag.com/product.php?id=60701&SiteID=pcmag
    http://downloads.suntimes.com/product.php?id=60701&SiteID=suntimes
    There you will find examples for MSWord and Excel (example sources are packed with binaries).

  • Which is best method to bind huge number records using RAS.

    Hi All ,
    i am using CR XI R2 server to create report dynamicaly using sql query.
    if follow the below method using DataDefModel.Table and giving table_name the object name in the database (RPT_PROCPLANNEDVSCOMPLETED is the SP in database having 4,00,000 records)., it populates and shows the report in expected time.
    CrystalDecisions.ReportAppServer.DataDefModel.Table crTable;
    rcDoc.ReportAppServer = "RAS"
    rcDoc.New();
    crTable = new CrystalDecisions.ReportAppServer.DataDefModel.Table();
    CrystalDecisions.ReportAppServer.DataDefModel.ConnectionInfo crConnectionInfo;
    crConnectionInfo = new CrystalDecisions.ReportAppServer.DataDefModel.ConnectionInfo();
    crConnectionInfo = GetADOConnectionInfo(); // Connection propery bag set
    crTable.ConnectionInfo = crConnectionInfo;
    string table_name;
    table_name = "RPT_PROCPLANNEDVSCOMPLETED";
    crTable.Name = table_name;
    crTable.Alias = table_name;
    rcDoc.DatabaseController.AddTable(crTable, null);
    now i need to pass dynamic sql query instead of giving object name. hence i followed this method
    here DSReport1 is dataset i want to bind.
    string tempFileName = Server.MapPath("New.xml");
                rcDoc.ReportAppServer = "RAS"
                rcDoc.New();
                DSReport1.WriteXml(tempFileName, XmlWriteMode.WriteSchema);
                CrystalDecisions.ReportAppServer.DataDefModel.ConnectionInfo crConnectionInfo;
                crConnectionInfo = new CrystalDecisions.ReportAppServer.DataDefModel.ConnectionInfo();
                ISCRTable table = DataSetConverter.Convert(DSReport1).Tables[0];
                crConnectionInfo = AddDataSourceUsingSchemaFile(rcDoc, tempFileName, "Views", DSReport1);
                table.ConnectionInfo = crConnectionInfo;
                rcDoc.DatabaseController.AddTable(table, null);
    CrystalDecisions.ReportAppServer.DataDefModel.ConnectionInfo AddDataSourceUsingSchemaFile(ReportClientDocument rcDoc, string schema_file_name, string table_name, System.Data.DataSet data)
                PropertyBag crLogonInfo; PropertyBag crAttributes;
                CrystalDecisions.ReportAppServer.DataDefModel.ConnectionInfo crConnectionInfo;
                CrystalDecisions.ReportAppServer.DataDefModel.Table crTable;
                // create logon property
                crLogonInfo = new PropertyBag();
                crLogonInfo["XML File Path"] = schema_file_name;
                // create logon attributes
                crAttributes = new PropertyBag();
                crAttributes["Database DLL"] = "crdb_adoplus.dll";
                crAttributes["QE_DatabaseType"] = "ADO.NET (XML)";
                crAttributes["QE_ServerDescription"] = "NewDataSet";
                crAttributes["QE_SQLDB"] = true;
                crAttributes["QE_LogonProperties"] = crLogonInfo;
                // create connection info
                crConnectionInfo = new CrystalDecisions.ReportAppServer.DataDefModel.ConnectionInfo();
                crConnectionInfo.Kind = CrConnectionInfoKindEnum.crConnectionInfoKindCRQE;
                crConnectionInfo.Attributes = crAttributes;
                return crConnectionInfo;
    this method is very slow compared to the 1 method. is this the right way of doing, or can anyone suggest better method. i also dont want to create xml file.
    Thanks in ADVANCE
    Padmanaban V

    Hello, Padmanaban;
    We do not recommend using ADO.NET for really large datasets. It is too much data to manipulate in memory.
    The database is designed to do that and it works very efficiently as you have proven.
    For such a large amount of data, use our OLEDB(ADO) driver and logon to the database directly. Make sure the query is run server side and returns only the required data to the report.
    Here is an article with some good design tips:
    [Click here|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/701c069c-271f-2b10-c780-dacbd90b2dd8].
    Elaine

  • How to open a excel with VBA button using I_OI_DOCUMENT_PROXY

    same this image:
    http://www.ImageThe.net/show-image.php?id=d367faef6ed7333acc2edd0290481fc8
    how to use OPEN_ACTIVEX_DOCUMENT?
      CALL METHOD DOCUMENT->OPEN_ACTIVEX_DOCUMENT
        EXPORTING
          DOCUMENT_URL = ITEM_URL
        IMPORTING
          ERROR        = ERRORS.

    Look at the below excel, it has macro, like sum. It will help you..
    <%@page language="abap"%>
    <html>
      <head>
      </head>
      <body>
        <object id="msx" style="width:100%;height:300px;margin-top:50px"
                classid="clsid:0002E510-0000-0000-C000-000000000046">
          <param name="DisplayTitleBar" value="false"/>
                <param name="HTMLData"  value=""/>
        </object>
        <script type="text/javascript">
          layout_sheet = document.all("msx");
          layout_sheet.Cells(1,5) = 'Test mit einzelner Zelle';
          msx.range('F1').value = 'F1';
          range  = layout_sheet.Range(layout_sheet.Cells(1,1),layout_sheet.Cells(1,4));
          record = "Jahr;Januar;Februar;März";
          range.ParseText(record, ';');
          range  = layout_sheet.Range(layout_sheet.Cells(2,1),layout_sheet.Cells(2,4));
          range.value = [ 2006, '15', '17', '19' ];
          msx.range('a3:d3').value = [ 2007, 33, 15, 13 ];
          msx.range('a4:d4').value = [ 'Summen', '=SUM(B2:B3)', '=SUM(C2:C3)', '=SUM(D2:D3)' ];
          msx.range('b2').NumberFormat = '####.00';
          msx.range('b2').Interior.Color = 'red';
          msx.range('c1:d1').Font.Name = 'Courier';
          msx.range('c1:d1').Font.Color = 'blue';
          msx.range('c1:d1').Font.Size = 12;
          msx.range('c1:d1').Font.Bold = 1;
          layout_sheet.Cells.AutoFitColumns();
        </script>
      </body>
    </html>
    *Reward each useful answer
    Raja T

  • How to open the phone's hidden files using Nokia P...

    Hello. I am Callista. I like to explore my cellphones using Nokia Phone Browser. Some of the files can be opened while others can't. Graphics menus, which containt clip art ect. are visible. But why gallery menu especially ringtones invisible. Are there any software needed to open these special files? Please send me information on this.
    I'm using now N95. 7610, 3155, and 6015.
    I'm longing for the answer, and I hope can get quick respon from Nokia.
    Thank you very much.

    the nokia phone browser in the pcsuite has limited functionality, it was programmed that way by nokia. if you want to truly explore your smartphone you will have to get a third party app like fexplorer or other neat ones for your phone. there are s60 forums like this one, google it, you can't go wrong.
    everything happens for a reason
    check out my blog @ http://mycellife.blogspot.com/

  • How to open an aplication when I'm using shockwave movies

    Is there an other way to launch an other application when I
    cannot use
    open command in shockwave movies.
    And if there is, how can to do it?
    Thanks
    Sam

    > Thanks for that. But is there any way around it? What I
    want to do is a
    button that calls an other application to do somehting for
    me!!!
    What application are you trying to run? If you just want a
    link that opens
    your e-mail program (for feedback, say), I think that's
    possible. But yeah,
    as others have said, allowing a Shockwave movie to open a 3rd
    party
    application would be a serious security risk, which is why
    it's specifically
    disabled.

  • How to open a file in the finder using only the keyboard?

    Hello,
    I use the arrow keys a lot in the finder (I do a lot of renaming) but I can't find a way to open a document with the keyboard. Only the mouse double-click seems to work.
    Anyone knows a shortcut?
    Thanks

    Hi k.panic,
    Thanks for that one. I had not used that shortcut before.
    Guess I could do more reading. There's a lot to learn.
    Mac OS X keyboard shortcuts
    Dan Rodney's List of Mac OS X Keyboard Shortcuts and Keystrokes

  • How to open a portfolio in list view using Reader XI?

    First, I know all about using /A to open a PDF document on a particular page, etc.  My issue is that I have a portfolio that I refer to on a daily basis.  When I open it, I see a "cover-flow" view where my most common doc is off the side of the screen.  When opening, I almost always first click on the "Files" button, where I can find the bundled docs much easier.  I would like to always open in this view, preferably by setting a shortcut on my desktop.I'm not the author of the portfolio and a new version is released quaterly, so solutions that require modifying it are of less interest to me.  Thanks!

    Edit > Preferences > Accessibility and check Show Portfolios in File Mode.

  • How to open sharepoint files in edit mode using associated link?

    Hi All,
    We are trying to use the URL links available through SSM to open documents we hold on SharePoint. These will be the action plans for the risks we are entering as KPIs. The aim is to established a one-to-one link between the risk KPI and the risk action plan as this is a fundamental reason behind using SSM for Risk.
    However, when we enter the SharePoint URL into the SSM admin screen, clicking the link from SSM UI opens up the file as an internet explorer page which can not be edited and saved back to SharePoint. We did find a way to get through My Network Places to over write the file, but this only works if you have previously opened and edited and saved the file from SharePoint and requires lots of navigation by the user and is therefore not an appropriate solution.
    Is there any way we this can be achieve? Appreciate your replies. Thanks in advance.
    Regards,
    David

    Hi Bob,
    Thanks for your reply. What I meant was when we put the UNC into SSM as a link in the URL box, SSM does not use the address it is given, instead it adds a http:// back in front and once again fails when opening the file in sharepoint.
    For example:
    SharePoint folder view used in test:
    http://wccportal/resources/performance/risk/Risk%20Action%20Plans/Forms/AllItems.aspx?RootFolder=%2fresources%2fperformance%2frisk%2fRisk%20Action%20Plans%2fDOR&FolderCTID=&View=%7b84123F22%2d74F2%2d41B9%2d918C%2dFF23DAE35EB3%7d
    Excel UNC link to folder
    wccportal\resources\performance\risk\riskactionplans\DOR
    SSM UNC Link - SSM changes the address to include http:// and also removes other \ breaks and adds in numbers and symbols.
    Is there a way to stop SSM converting the local address back into a web address?
    Thanks,
    David

  • How to open internet links from Outlook 2003 using Firefox not IE

    When I open an internet link from Outlook 2003 it always opens with Internet Explorer. I want to open with Firefox.
    == This happened ==
    Every time Firefox opened
    == ?

    Try this - http://www.gamevance.com/deactivate.php

  • How to open to a set child node using the swing jtree bound to adf views

    Hi All, I have an oracle adf jclient application that implements a jtree based on view objects derived from my database tables. Everything is working except that when a child table is updated and I re executequery() on my viewobject that is bound to the jtree, the tree collapses. Is there any way to programatically navigate the tree to open and select the new child node/object?

    Hi,
    didn't try it yet, but http://javaalmanac.com/egs/javax.swing.tree/FindNode.html
    may be helpful
    Frank

  • How to open Report output in RTF format using concurrent request form.

    Hi
    I have created a report using BI publisher and RTF format. This report is working fine in PDF format. User can submit report using consurrent request form and can see report preview in PDF format.
    Now user wants to submit another request and wants to see report output in RTF format.
    User submitted a request, request successfully completed and generated a output RTF file in unix box but when user wants to see report output using concurrent request form (View Output) then window is showing raw data instead of RTF output.
    Can any body tell me about solutions?
    Thanks
    Ravi

    Hi Ravi
    I did little R&D on it and found following 2 solutions.I am sure that you also find something but for my shake i am putting it here.If you already find the solution then ignore it.
    I) 1st Solution
    1)Change the profiles 'Viewer: Application for Text' and put value as 'Browser'
    2) Change the profiles 'Viewer: Text' and put value as 'Browser'.Either change it system level or concerned user.
    3) Log out from Current session and close all internet explorer application.
    4) Log in again to check the result
    II) 2nd Solution
    1) Navigate to: Sys admin --> Install -> Viewer Options to open the Form "Viewer Options".
    Do the entry as shown below:
    File_Format     Mime Type               Description
    RTF          application/rtf Microsoft Word(.rtf)
    RTF          application/msword          Microsoft Word(.rtf)     
    2) Then ensure that the profile option Viewer: Application for Text is set to BLANK at the Site Level and User Level.
    3) Then ensure that the profile option Viewer: Text is set to 'browser' at the Site Level.
    -- It will pop-up the screen to choose application name from above two values.
    Hope this will work it for you. For me i replicated the scenario and both solutions were working for me.
    With Best Regards
    Darshan Bhavsar

  • How to open a file located at server using JSP

    hi,
    i would like to open a file located at server as it is. I mean to say, if it a MS Word file, i wanna open it in MS Word, if it an Excel file, i wanna open it in Excel. i know the location (path) of the file. Can someone help me please.
    Thanx

    The best way would simply be to HREF it.
    ie<a href="excelfiles/spreadsheet.xls">Open spreadsheet</a>When a user then clicks on that lick in their browser they should be given the option to either download or (if they have the appropriate program, in this case MS Excel, installed) open it.
    This works best if the client is using a version of Internet Explorer (if you're dealing with MS files), but any browser should potentially offer you the option of opening the file.
    Beyond that there's no way to specifically open a program on a client machine (it'd be a bit of a security loophole if you could! - Imagine a JSP page being able to open FDISK...). All you can do is pass the file (via the HREF) and let the client decide what to do with it.

Maybe you are looking for