Increase of the memory...

Hi experts,
i'm developping a java application which open report into a report viewer. My problem is, every loading of report increase the memory usage of the application which are not decrease when that report viewer is disposed. And the consequence is the application memory can reach easily 100 MB to 200 MB depending on the number of reports who has been opened.
any help would be appreciate.
thks
Mart.

hmmm..... i'm not sure if I understand.
I call the close() method of the ReportClientDocument object during the windowClosing() of the form containing the ReportViewerBean() object.
Here my code... it's going to be easier like this.
public class JReportDialog extends IMAFrame
    static final int FORM_WIDTH = 600;
    static final int FORM_HEIGHT = 400;
    private ConnexionInfos m_ConnInfo;
    //Crystal Report thick-client viewer object that will be embedded into the JFrame.
    private ReportViewerBean m_reportViewer;
    //This report will be viewed in the thick-client viewer.
    private ReportClientDocument m_reportClientDoc;
    private String m_viewName;
    public JReportDialog(Window owner, String reportFileName, String viewName, String[] args)
        super(StringTable.get("report","title_report_dialog"));
        m_ConnInfo = ConnexionInfos.getInstance();
        m_viewName = viewName;
        setLayout(new BorderLayout());
        setMinimumSize(new Dimension(FORM_WIDTH, FORM_HEIGHT));
        addWindowListener(new WindowAdapter() {
            public void windowClosing(WindowEvent e) {
                try {
                    // Fermer le rapport
                    m_reportClientDoc.close();
                    // Supprimer la vue associée au rapport
                    DomainFactory.getDomainReport().dropView(m_viewName);
                    // Fermer la forme
                    //dispose();
                catch (ServiceException ex1){
                    ExceptionManager.getInstance().manageIt(this.getClass(), ex1.toString());
                catch(ReportSDKException ex) {
                    ExceptionManager.getInstance().manageIt(this.getClass(), ex.toString());
        setExtendedState(JFrame.MAXIMIZED_BOTH);
        if(!(new File(reportFileName)).exists()){
            JOptionPane.showMessageDialog(this,
                                          StringTable.get("report","msg_file_missing"),
                                          StringTable.get("report","title_file_missing"),
                                          JOptionPane.ERROR_MESSAGE);
        else{
            //Set the report that the ReportViewerBean will display.
            try{
                m_reportClientDoc = new ReportClientDocument();
                m_reportClientDoc.open(reportFileName, 0);
                // Setting des paramètres de connection
                setTablesProperties(m_reportClientDoc.getDatabaseController());
                // Setting des paramètres du rapport
                setParam(m_reportClientDoc.getDataDefController(),args);
                m_reportViewer = new ReportViewerBean();
                m_reportViewer.setReportSource(m_reportClientDoc.getReportSource());
                m_reportViewer.setHasRefreshButton(false);
                m_reportViewer.setHasBusyIndicator(true);
                m_reportViewer.setShowLogo(false);
                m_reportViewer.setFont(new Font("Tahoma",Font.PLAIN,12));
                m_reportViewer.init();
                m_reportViewer.start();
            catch (ReportSDKException ex){
                ExceptionManager.getInstance().manageIt(this.getClass(), ex.toString());
            getContentPane().add(m_reportViewer);
    private void setParam(DataDefController databaseDefController,String[] args){
        ParameterFieldController paramFieldController = databaseDefController.getParameterFieldController();
        try{
            paramFieldController.setCurrentValue("", "DateFrom",new SimpleDateFormat("yyyy-MM-dd").parse(args[0]));
            paramFieldController.setCurrentValue("", "DateTo", new SimpleDateFormat("yyyy-MM-dd").parse(args[1]));
            if(args[2].length() > 0)
                 paramFieldController.setCurrentValue("", "Staff", args[2]);
             catch (ParseException ex1) {
                 ExceptionManager.getInstance().manageIt(this.getClass(), ex1.toString());
             catch (ReportSDKException ex){
                 ExceptionManager.getInstance().manageIt(this.getClass(), ex.toString());
    private void setTablesProperties(DatabaseController databaseController) throws ReportSDKException {
        final String TABLE_NAME_QUALIFIER = "CENTER.";
        final String DBUSERNAME = m_ConnInfo.getUser();
        final String DBPASSWORD = m_ConnInfo.getPass();
        final String SERVER = m_ConnInfo.getHost();
        final String DATABASE_NAME = m_ConnInfo.getSID();
        final String CONNECTION_URL = "jdbc:oracle:thin:@" + SERVER + ":1521:" + DATABASE_NAME;
        final String DATABASE_CLASSNAME = "oracle.jdbc.driver.OracleDriver";
        final String DATABASE_DLL = "crdb_jdbc.dll";
        final String JDBC_CONNECTION_STRING = "!" + CONNECTION_URL + "!" + "jdbc:oracle:thin:{userid}/{password}@" + SERVER + ":1521:" + DATABASE_NAME;
        Tables tables = databaseController.getDatabase().getTables();
        ITable oldTable = tables.getTable(0);
        System.out.println(tables.size());
        ITable newTable = new Table();
        newTable.setName(m_viewName);
        newTable.setAlias(m_viewName);
        //Change properties that are different from the original datasource.
        newTable.setQualifiedName(TABLE_NAME_QUALIFIER + newTable.getName());
        //Change connection information properties.
        IConnectionInfo connectionInfo = newTable.getConnectionInfo();
        //Modifier les nouvelles props de la nouvelle connection
        PropertyBag propertyBag = new PropertyBag();
        propertyBag.put("Use JDBC", "true");
        propertyBag.put("Connection URL", CONNECTION_URL);
        propertyBag.put("Database Class Name", DATABASE_CLASSNAME);
        propertyBag.put("Database DLL", DATABASE_DLL);
        propertyBag.put("Server", SERVER);
        propertyBag.put("Trusted_Connection", "false");
        propertyBag.put("JDBC Connection String", JDBC_CONNECTION_STRING);
        connectionInfo.setAttributes(propertyBag);
        // Informations de sécurité
        connectionInfo.setUserName(DBUSERNAME);
        connectionInfo.setPassword(DBPASSWORD);
        connectionInfo.setKind(ConnectionInfoKind.SQL);
        newTable.setConnectionInfo(connectionInfo);
        //Update la table
        databaseController.setTableLocation(oldTable,newTable);

Similar Messages

  • How to increase the memory for my weblogic server in Jdeveloper 12.1.2.0.0 ?

    Hey everyone,
    So as my title says, i'm trying to increase the memory for my weblogic server in my windows 7 64 bit machine, with 8GB ram.
    The values appear to be: JAVA Memory arguments: -Xms256m -Xmx512m -XX:PermSize=128m -XX:MaxPermSize=512m
    I've done some search from this forum and i've added this to my jdev.conf:
    AddVMOption  -XX:MaxPermSize=1536M (in this one i've only changed the value)
    AddVMOption -Xmx1536M
    AddVMOption -Xms1536M
    And i've changed this: MEM_ARGS="-Xms1024m -Xmx1024m" in my startNodeManager.sh file
    I'm still getting the same line in my server but i need to change the values since i'm not getting the server to run my application very well (it gets stucked in loading my databases and graphs) and i think it will continue untill i get a heap exception error.
    Any ideas of how to change this?
    Regards,
    Frederico.

    Thanks Alejandro .
    I'm going to ask you another question and this one is quite important.
    Whenever i run my project a couple of times, i'm not able to retrieve the page, it just gets stuck on loading.
    It just stops the loading, like its a really really slow page. I'm not using a lot of rows in my database so i don't take to much memory but it doesn't load and i know everything is fine but i just added some graphs after testing it.
    Do you know why?
    In the console it says that everything is fine and shows the link for the page but it never loads completely until it gives a error because it does not respond in 600 seconds.
    Strange right?

  • How to Increase the memory size of a File in the Application Server

    Hello Abaper's
    I have generated a XML file for the data of  internal table (with 10 Records). When i download , i can see the XML file for the Entire 10 Records.
    But , while transferring the XML file to Applicationserver , it's  transferring only upto max 4 Records.I     assume that the memory is insufficient to  allocate 10  Records. Can we Increase the Memory size of the File on Application server. OR,  is there any error in My Source Code.
    Code i used to Transfer the XML File to Application server.
    OPEN DATASET FNAME FOR OUTPUT IN BINARY MODE.
    IF sy-subrc EQ 0.
       LOOP AT it_xmltab INTO wa_xmltab.
           TRANSFER wa_xmltab TO FNAME.
       ENDLOOP.
    ELSE.
      MESSAGE e004(zmsg5) WITH 'File FNAME not opened'.
    ENDIF.
    CLOSE DATASET FNAME.
    Regards
    Jv

    Hi,
    DATA : filename TYPE rlgrap-filename.
    DATA : doc_name TYPE char30.
    DATA : bin_size TYPE i.
    SELECT matnr matkl meins
           FROM mara INTO TABLE it_mara
           UP TO 10 ROWS.
    CALL FUNCTION 'SAP_CONVERT_TO_XML_FORMAT'
      EXPORTING
        i_filename           = filename
        i_xml_doc_name       = doc_name
      IMPORTING
        pe_bin_filesize      = bin_size
      TABLES
        i_tab_sap_data       = it_mara         "  contains  10 Records
      CHANGING
        i_tab_converted_data = it_xmltab.
    placing XML File in Appl. Server
    DATA : FNAME(60) VALUE 'xyz_File'.
    DATA : num TYPE i.
    DATA : xmldata(256) TYPE x.
      For Writing The data in Application Server
    OPEN DATASET FNAME FOR OUTPUT IN BINARY MODE. " ENCODING DEFAULT.
    IF sy-subrc EQ 0.
      LOOP AT it_xmltab INTO wa_xmltab.
        TRANSFER wa_xmltab TO FNAME.
      ENDLOOP.
    ELSE.
      MESSAGE e004(zmsg5) WITH 'File FNAME not opened'.
    ENDIF.
    CLOSE DATASET FNAME.
      For Reading The data in Application Server
    OPEN DATASET FNAME FOR INPUT IN BINARY MODE. " ENCODING DEFAULT.
    DO.
      IF sy-subrc EQ 0.
        READ DATASET fname INTO xmldata.
        WRITE :/ xmldata.
        Clear xmldata.
      ELSE.
        EXIT.
      ENDIF.
    ENDDO.
    CLOSE DATASET FNAME.
    at runtime i can see   
    it_mara  --> contain 10 records
    it_xmltab --> contain 7 lines (Each line size is 255 char). This table have XML format data,  (unknow format , with all numeric 
                        digits)
    it_xmltab is trasferred to application server , but the xml format is generated upto 4 records, and for the remaining records
    the XML format is not generated.
    the XML data in application server file is
    <?xml version="1.0"?><TY_MARA><TY_MARA><MATNR Datatype="C" Length="36">0-BUY1</MATNR><MATKL Datatype="C" Length="18">012</MATKL><MEINS Datatype="C" Length="6">PC
    </MEINS>
    </TY_MARA><TY_MARA><MATNR Datatype="C" Length="36">0-BUY2</MATNR><MATKL Datatype="C" Length="18">012</MATKL><MEINS Datatype="C" Length="6">
    PC </MEINS>
    </TY_MARA><TY_MARA><MATNR Datatype="C" Length="36">000000000000000001</MATNR><MEINS Datatype="C" Length="6">EA</MEINS>
    </TY_MARA><TY_MARA><MATNR Datatype="C" Length="36">000000000000000002</MATNR
    Regards
    JV

  • How to increase the memory of oracle

    Hi,
    I am having oracle database version 11.0.1.6 on windows server 2003 R2.
    My Server Ram size is 12 GB.
    select * from V$SGAINFO;
    Fixed SGA Size     1335136     No
    Redo Buffers     12529664     No
    Buffer Cache Size     1073741824     Yes
    Shared Pool Size     176160768     Yes
    Large Pool Size     8388608     Yes
    Java Pool Size     16777216     Yes
    Streams Pool Size     8388608     Yes
    Shared IO Pool Size     0     Yes
    Granule Size     8388608     No
    Maximum SGA Size     1297321984     No
    Startup overhead in Shared Pool     58720256     No
    Free SGA Memory Available     0     
    I want to increase my memory for oracle because i need to insert 31 billion rows into a table with nologging. I am inserting them chunk by chunk and commit after each chunk. But it is taking 62 hours to insert the rows. So i think if i increase the memory i could reduce the time to insert the rows.
    I really am not sure whether i am thinking in the right way. Please advise. If i want to increase the memory please let me know how to increase it.
    Thanks in advance

    Are all columns in the WHERE clause indexed?
    Are statistics current & accurate for all tables & indexes?
    post EXPLAIN PLAN for SQL below
    PROCEDURE Pro_unpvt_usm_dr
    IS
    BEGIN
        FOR k IN (SELECT DISTINCT pr_id
                  FROM   unpvt_im_dr_e0322) LOOP
            INSERT /*+ append */ INTO unpvt_usm_dr_e0322
            SELECT pr_id,
                   nr,
                   col,
                   Corr(n, m) val
            FROM   (SELECT a.pr_id,
                           a.nr,
                           b.nr  col,
                           a.n,
                           b.val m
                    FROM   unpvt_usm_drpre1_e0322 a,
                           unpvt_im_dr_e0322 b
                    WHERE  a.pr_id = k.pr_id
                           AND b.pr_id = k.pr_id
                           AND a.col = b.col)
            GROUP  BY pr_id,
                      nr,
                      col;
            COMMIT;
        END LOOP;
        dbms_output.Put_line('POPULATED UNPVT_USM_DR_E0322');
    END pro_unpvt_usm_dr;

  • How to increase the memory in Event Server

    I have this folowing error in the windows event observer (in french). The memory Event Server memory seems to be to small.  (English message traduction : Insufficient memory in the Event Server"" ).
    How can i increase this memory ? The physical server is dedicated to Crystal server.
    Type de l'événement : Erreur
    Source de l'événement : BusinessObjects_EventServer
    Catégorie de l'événement : EventServer
    ID de l'événement : 35750
    Date : 13/10/2010
    Heure : 09:56:51
    Utilisateur : N/A
    Ordinateur : SERVHLM3
    Description :
    Mémoire insuffisante dans l'Event Server
    I have this folowing error in same time... that talk about maximum limit Windows offices reach
    (English message traduction : "Attempt to allocate Windows 40 offices, only 19 have been allocated. It may be that the system has reached its maximum limit." ).
    Do you know how this can happen ? And how to correct this ?
    Type de l'événement : Erreur
    Source de l'événement : BusinessObjects_crproc
    Catégorie de l'événement : Général
    ID de l'événement : 49301
    Date : 13/10/2010
    Heure : 09:56:54
    Utilisateur : N/A
    Ordinateur : SERVHLM3
    Description :
    Tentative d'allocation de 40 bureaux Windows, seulement 19 ont été alloués. Il se peut que le système ait atteint sa limite maximum. Contactez votre administrateur système.

    As Ankur said, there are not parameters for this setting.
    Probably what you can do is, you can add this server to a defined server group.
    Generally you can assign additional resources to a server group. That could probably help you to increase performance.
    Regards
    Gowtham

  • Increase the memory

    Hi,
    how to increase the memory size of a jvm.
    could u plz. help me.
    regards
    AMJ

    command line arg -Xms128m to get 128 megs

  • My ipad shows capacity 13.6GB, available 0 bytes. Can I clear some items from the memory to increase the avaavailable memory?

    my ipad shows capacity 13.6 GB, available 0 bytes. Can I clear some items from the memory to increase the available memory?
    Getting message "storage almost full"

    One usually large user of storage space is photos and videos. You could import them to a computer and then delete them from the iPad: Import photos and videos from your iPhone, iPad, or iPod touch to your Mac or Windows PC - Apple Support
    You can also go to Settings > General > Usage and click on "Manage Storage" (in the Storage section, not the iCloud section) and that will show what is using the storage and may help you decide if you want to delete some apps or something else.

  • I have the MacBook Pro (retina, 13 inch, Mid 2014) Memoria 8GB 1600 MHz DDR3 and I want to increase the memory. What kind of memory do I have to buy?

    I have the MacBook Pro (retina, 13 inch, Mid 2014) Memoria 8GB 1600 MHz DDR3 and I want to increase the memory. What kind of memory do I have to buy?

    The RAM in the retina model can not be upgraded.

  • When i run exe built in Labview 7.1 the memory usage goes on increasing

    Dear Sir/Madam
    I have built an application in LabView 7.1. When i run this application and view the memory usage in Task manager, i find that the memory usage goes on increasing.
    Please help.
    With Regards
    Ravindra Kumbhar

    Hi, Ravindra,
    It looks that you have memory leak in your application.
    There are lot of possible reasons for memory leaks - opened in cycle and not closed references, continuosly growing arrays, memory allocation in own DLLs, etc.
    Normally you should have the same behaviour in development environment as well (memory of LabVIEW.exe incresed continuously).
    You should check the code, which executed repeatable (while/for loops) for allocated, but not closed resources. What you can do is following - remove (or isolate) parts of you code, executed in cycles, then check is leak present or not. So, step by step you will found the place where leak occurred.
    best regards,
    Andrey. 

  • Will increasing the memory from 4Gb to 8Gb make a big difference to the speed of my Intel Core Duo 2 Mac mini?

    Will increasing the memory from 4Gb to 8Gb make a big difference to the speed of my Intel Core Duo 2 Mac mini?

    Well, technically no, CPU will remain the same speed. But having 8 gig will give you some room for memory hungry apps and run better with multiple apps.
    Adding a SSD drive will give a second life to your macmini. I did mine a few weeks ago (240 gb SSD ) and also went from 2 to 4 gig ram. It's like having a new computer!
    Good luck!

  • Hi is there anyway I can increase the memory on me 8gb Ipod touch

    hi is there anyway I can increase the memory on me 8gb Ipod touch

    There are, however at least a couple of alternative that might be worth looking at:
    http://www.airstash.com/
    http://www.seagate.com/www/en-us/products/external/external-hard-drive/goflex-sa tellite
    There might be other solutions I'm not aware of, but one of those two might work for you.
    Regards.

  • Increase the memory of applications

    I know how to increase the memory on applications under MAC OS 9.
    How do you increase the application memory under Mac OS X?
    Thanks
    Richard

    You don't. OS X has dynamic memory allocation, so whenever an app needs more memory, OS X gives it some.

  • Hi, I wonder if it is possible to increase the memory of the Macbook air 11 , 2011 model?

    Hi, I wonder if it is possible to increase the memory of the Macbook air 11 2011 model?
    My Macbook : 128GB flash storage
                              2GB memory ram
    thanks,
    Camila Costa

    No, at least you can't do it.

  • If i can't increase the memory on an iphone, how do i NOT upload my entire itunes library?

    hi,
    i'm new to this whole smartphone thing.  but i've run into this frustration and can't seem to find my way around it.
    every time i hook up my phone - iphone 4 - to my computer - macbook 10.7 - they try to sync, and now i don't like having them both on the same wifi because they 'update' behind my back.  i don't want 3 days worth of music on my phone.  i would rather have more room on the phone for other stuff - apps and whatnot.
    i've set every checkbox i can find to NOT sync, and to NOT update, but  they do it anyway.  the songs that haven't been copied in their entirety  have left a place-saver of sorts - a ghost that seems to interfere with  playback of songs in a modified album, or if i just try to play from  the library - which i do, sometimes.
    someone on another post said that since you can't upgrade the memory on an iphone, that they should just delete some music, but it doesn't seem to let me - it puts it there without my permission, and even now that i've deleted all the music from the phone, the library is still full of all these 'ghost' songs that i don't know how to be rid of.
    thanks,
    nate.

    Now, one at a time:
    On Mac:
         Do you have the latest iTunes 11.0.4? If not download it here http://www.apple.com/support/itunes/
         Switch on  iTunes menu > View > Show Sidebar
         Connect and select iPhone under DEVICES in iTunes Sidebar.
         Go through the tabs (top right pane) Summary, Info, Apps, etc.
         and select and de-select what you want on iPhone.
         When finished, click Apply button (bottom right) and then click Sync.

  • How to overcome the Memory leakage issue in crystal report 2008 SP2 setup.

    I have developed the small windows based application tool with help of  Visual studio 2008 for identify the memory consumption of crystal report object. It helps to load the crystal report objects in the memory and then released the object from the memory. The tool simply does the u201CLoading and Unloadingu201D the objects in the memory.
    The tool will be started once u201CTest_MemoryConsumption.Exeu201D executed. The u201CTest_MemoryConsumption.Exeu201D consumes u201C9768 KBu201D memory before load the crystal report object in memory. It means, 9768 KB is normal memory consumption for run the tool.
    Crystal report object initiated by the tool and object help to load the report in memory once the tool initiated the crystal report object. Now u201CTest_MemoryConsumption.Exeu201D consumes u201C34980 KBu201D memory during the crystal report object creation and report load process. The actual memory consumption of crystal report object is 34980u20139768=u201C25212u201DKBu201D. 
    The memory consumption u201C34980 KBu201D will be continued till the end of the process. The memory consumption will be reduced to u201C34652 KBu201D from u201C34980 KBu201D once report load process completed. It means, u201C328 KBu201D memory only released from the memory consumption. Tool enables the Release command for the crystal report object. But crystal report object does not respond to the command and will not release his memory consumption.
    The memory consumption u201C34652 KBu201D will be stayed in the memory once job ends.  If i again initiate the crystal report object then it crystal report object start to consume the memory from 34652 KB.
    Database objects and crystal report objects are properly used in the tool. The object release commands properly  communicated to crystal report setup. But the u201CCrystal report service pack 2u201D setup unable to respond the commands which has enabled from .Net Tool.  Crystal report objects are properly initiated and disposed in the tool. But the crystal report unable to release from the server.
    The memory consumption will be reduced once the server restarted or kill the application.
    Crystal report 2008 and crystal report 2008 SP2 setup available in the server.
    Microsoft .Net Framework 2.0 SP2, Microsoft .Net Framework 3.0 SP2 and Microsoft .Net Framework 3.5 SP1 are available in the server,
    Could you please suggesst how to avoid the memory consumption keep increasing and  how to release the memory consumption  once the crystal object disposed???

    Hi Don..
    My case is different one. I hope, the problem with Run time Installation setup file (Crystal report 2008 Serivce Pack2 installer) which we installed in the server.
    Let me explain with Live scenario which our client faced in crystal report 2008 Service pack2 Installer.
    Our client is using a application to help to print their reports. The application is developed with Windows service.
    Windows service keep on running in the server. Windows service executes the client 's crystal reports( Labels Report, Stock  report) which designed for clients need and the reports will be printed from printer. 
    10 Same type report (Label Report) will be printed in 1 minute. Reports are not printing during non business hours. But the windows service keep on running.  Memory cosumption of application will be 160 MB in business hours.
    For Example, On Monday the application memory consumption starts with 160 MB. The Memory consumption will be reached 165 MB  in peak business hours. Then the memory will be ended in163 MB in the End of Monday. It means, The memory consumption will be in 163 MB during the non business hours. Reports will not be printed in non business hours.
    On Tuesday, the application memory consumption starts with 163 MB and it will be reached 168 MB during the peak hours. The Memory consumption will be ended in 165 MB in the end of Tuesday.  The same process contiues till friday. End of friday, the memory consumption of the application will be ended with 170 MB.
    Application Memory Consumption slowly increasing in the server. In 5 days, Memory consumption reached Threshold value (170 MB) of the server. Application gets hanged up once the memory consumption reached 170 MB. We got the error messages as "Attempted to read write protected memory " / "Not Enough memory for process".  If we restart server / If we restart the service then memory consumption of application get reduced to 160 MB.
    From the above scenario, We came know that the either the problem with Application object or the problem crystal report object. In the application, We have checked dispose methods of application objects completly. I am sure that  application objects are properly disposed in the application. I hope the problem not with application objects. The problem with Crystal report objects.
    Application properly communicates the dispose methods to crystal report objects. Crystal report objects are not released from
    the memory.
    Crystal report 2008 Serive Pack 2 setup installed in the server. 
    As you said, If Crystal report runtime is not released from memory then memory consumption keep increase???  In service oriented architecture application, how to unload the crystal report runtime??
    Do you any fix for this kind of issue??
    Willl Crystal report 2008 service pack 3 help on this issue??

Maybe you are looking for

  • Java Generics in Ejbs WebLogic 9.2 MP1 WindowsXP Sun JDK

    Hi guys, I tried to deploy our application on Weblogic Server 9.2 MP1 (Windows, Sun JDK) and during deployment I have this error see bellow. Can somebody tell me what is the problem with generics and EJB compiler? Is necessary to add any path or chan

  • How to set the X-position and Y-position

    I started an application but was struck due to a problem. The problem was : I was unable to set the X-position and Y-position in the desired place... Any one who can help please help me to continue my application...... I wanted to set my choice group

  • URGENT: RAID5 Configuration on RD120 Server: Scenario A vs. Scenario B

    This particular issue isn't server specific, but I am posting in this forum because it just so happens to be a brand new Lenovo RD120 I am working on. Also, sorry for the urgent status but I have a very small amount of time to find the answer. My iss

  • Come here and discuss the business process of Third Party Purchase Order?

    come here and discuss the business process of Third Party Purchase Order? when this po  is used and the following process is what?

  • Uvesafb not showing proper resolutions

    I'm trying to get uvesafb to work, however, it does not list the proper resolution for my monitor: I have a 1080p monitor that is capiable of 1920x1080-32 $ cat /sys/bus/platform/drivers/uvesafb/uvesafb.0/vbe_modes 640x400-8, 0x0100 640x480-8, 0x0101