Advantages of Webdynpro ABAP Over Displaying The Traditional Way in SAP GUI

Hi,
I am new to web dynpro ABAP and therefore have a very basic question.
Assume that a customer wants to implement SAP EEC 6.0.
What is the advantage for the customer and developer to develop and display all custom objects using web dynpro abap and displaying on the web as against developing and displaying in the SAP GUI?
Is it possible to do a BDC using Web Dynpro ABAP?
Inputs would be much appreciated.
Cheers,
MIck

no answers so closing the thread

Similar Messages

  • Advantages in Webdynpro Java Over WD ABAP

    Hi All
    Can you please let me know what are the advantages in webdynpro java over WD ABAP??
    if anybody helps quickly then it would be great help to me
    Thanks
    Trisha Rani

    Hi,
      Both WDA and WDJ are almost same in designing and programming.
      In relation to the business packages SAP already provided allmost all of them in java and in the future all the Business packages also available in ABAP. It's all how you want to develop the application. In sap portal world some applciation which we can develop with ABAP Web Dynpro and some applications with JAVA Web Webdynpro as SAP Web AS available as dual stack.
    If someone already has a strong ABAP background and has WD for ABAP available they should probably use that. If they are a J2EE developer they should probably use WD for Java but it is likely they will also then need some ABAP support for the backend systems.
    I think more customers may be asking for WD for Java projects simply because it has been around longer and is more widely available to customers where as some cutomers prefer to develop their application using ABAP Web Dynpro because of SAP propritary. But ultimately it's again all our interest and customer.
    Check this blog,
    /people/oliver.mayer/blog/2006/06/14/web-dynpro-abap-or-java
    http://www.sapfrontend.com/webdynpro-for-java-or-webdynpro-for-abap/
    Hoe this helps you..
    Regards,
    Saleem

  • How do I remove software such as old games.  I've tried to remove it the traditional way but it doesn't work

    I am running iOS 10.95 on my Mac Book Pro.  I want to remove some no longer wanted software...some old games and such.  They can't be deleted in the traditional ways such as holding down the pad until the app giggles and hitting the X or by dragging and dropping.  What can I do?

    Actually the "holding down the pad" method in Launchpad is relatively new, and will only work with apps that you downloaded from the App Store. Other applications will not show an X in Launchpad.
    You should delete them from Finder by dragging them out of the Applications folder to your trash. If they have an uninstaller in their application folder, you should use that instead.
    Matt

  • Difference between using the Enterprise Portal and SAP GUI

    Hi Gurus,
    Could one of you please send me a document that lists the differences between the Enterprise Portal and SAP GUI?
    thanks in advance

    Hi,
    For groups, managedBy is an administrative convenience to designate “group admins”. Whatever principal listed in
    managedBy gets permission to update a group’s membership (the actual security is updated on the group’s AD object to allow this).
    In Win2008 and later managedBy also became the way you delegated local administration on an RODC, allowing branch admins to install patches, manage shares, etc. (http://technet.microsoft.com/en-us/library/cc755310(WS.10).aspx). 
    On the RODC, this is updating the RepairAdmin registry value within RODCRoles.
    So the difference between them should be only the way they do the same thing.
    For more details, please refer to the below article:
    http://blogs.technet.com/b/askds/archive/2011/06/24/friday-mail-sack-wahoo-edition.aspx
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Convert this query to ABAP and display the results

    Hi Everyone,
    I have a sql query in native sql (oracle). I want execute it in ABAP editor and display the results.
    I need to get this to an internal table and display the results. How do i write the script any help will be great use to me.
    Here is the query:
    <i> select (select decode(extent_management,'LOCAL','*',' ') ||
                   decode(segment_space_management,'AUTO','a ','m ')
              from dba_tablespaces where tablespace_name = b.tablespace_name) || nvl(b.tablespace_name,
                 nvl(a.tablespace_name,'UNKOWN')) name,
           kbytes_alloc kbytes,
           kbytes_alloc-nvl(kbytes_free,0) used,
           nvl(kbytes_free,0) free,
           ((kbytes_alloc-nvl(kbytes_free,0))/
                              kbytes_alloc)*100 pct_used,
           nvl(largest,0) largest,
           nvl(kbytes_max,kbytes_alloc) Max_Size,
           decode( kbytes_max, 0, 0, (kbytes_alloc/kbytes_max)*100) pct_max_used from ( select sum(bytes)/1024 Kbytes_free,
                  max(bytes)/1024 largest,
                  tablespace_name
           from  sys.dba_free_space
           group by tablespace_name ) a,
         ( select sum(bytes)/1024 Kbytes_alloc,
                  sum(maxbytes)/1024 Kbytes_max,
                  tablespace_name
           from sys.dba_data_files
           group by tablespace_name
           union all
          select sum(bytes)/1024 Kbytes_alloc,
                  sum(maxbytes)/1024 Kbytes_max,
                  tablespace_name
           from sys.dba_temp_files
           group by tablespace_name )b
    where a.tablespace_name = b.tablespace_name order by 1;
    </i>
    Thanks,
    Prashant.

    Hi Prashant,
    Native SQL commands in ABAP are placed between EXEC SQL and ENDEXEC. You can place all your statements in between these EXEC SQL and ENDEXEC in a report.
    EXEC SQL [PERFORMING <form>].
      <Native SQL statement>
    ENDEXEC.
    Check this link to know about Native SQL
    http://help.sap.com/saphelp_47x200/helpdata/en/fc/eb3b8b358411d1829f0000e829fbfe/frameset.htm
    Thanks,
    Vinay

  • How to approach ABAP OO programming the right way...

    Hello experts,
    I am an old school procedural ABAP programmer and I recently I have been experementing with ABAP Objects since I've read a few columns the advantages of ABAP OO and also currently learning its syntax. Now, does ABAP Objects conform to the old way of say, doing reports like at selection-screen output, at selection-screen, on value-request for..., start-of-selection, end-of-selection, top-of-page, etc. I have been doing some practice programs and I am not sure if my approach is correct. Example, I created a class named cl1 and I have a method named upload. Now, the UPLOAD method contains the function 'GUI_UPLOAD'. Is this the right way of doing it? Also, How come I cannot create structures inside a class?
    Again, thanks guys and have a nice day!

    Hi,
    I have these three progs from one of the previous posts.
    Good approach on using constructors. I am not finding the original link.
    *& Report ZABAP_OBJ_01 *
    REPORT zabap_obj_01 .
    PARAMETERS : p_vbeln LIKE vbap-vbeln OBLIGATORY,
                 p_matnr LIKE mara-matnr.
    TYPES : BEGIN OF ty_vbap,
    vbeln TYPE vbap-vbeln,
    matnr TYPE vbap-matnr,
    arktx TYPE vbap-arktx,
    END OF ty_vbap.
    * CLASS sales_order DEFINITION
    CLASS sales_order DEFINITION.
      PUBLIC SECTION.
        DATA : v_matnr TYPE mara-matnr,
        v_vbeln TYPE vbap-vbeln.
        METHODS : constructor IMPORTING vbeln TYPE vbap-vbeln
        matnr TYPE mara-matnr OPTIONAL.
        DATA : it_vbap TYPE STANDARD TABLE OF ty_vbap.
        METHODS : get_vbap_details,
        disp_vbap_details.
    ENDCLASS. "sales_order DEFINITION
    * CLASS sales_order IMPLEMENTATION
    CLASS sales_order IMPLEMENTATION.
      METHOD get_vbap_details.
        CLEAR : it_vbap.
        REFRESH : it_vbap.
        SELECT vbeln
        matnr
        arktx
        FROM vbap
        INTO TABLE it_vbap
        WHERE vbeln = p_vbeln.
      ENDMETHOD. "get_vbap_details
      METHOD constructor.
        CLEAR : v_vbeln,
        v_matnr.
        v_vbeln = vbeln.
        v_matnr = matnr.
      ENDMETHOD. "constructor
      METHOD disp_vbap_details.
        DATA : wx_vbap LIKE LINE OF it_vbap.
        LOOP AT it_vbap INTO wx_vbap.
          WRITE :/ wx_vbap-vbeln,
          wx_vbap-matnr,
          wx_vbap-arktx.
        ENDLOOP.
        CLEAR : it_vbap.
      ENDMETHOD. "disp_vbap_details
    ENDCLASS. "sales_order IMPLEMENTATION
    DATA : obj TYPE REF TO sales_order.
    START-OF-SELECTION.
      IF NOT p_matnr IS INITIAL.
        CREATE OBJECT obj EXPORTING vbeln = p_vbeln
        matnr = p_matnr.
      ELSE.
        CREATE OBJECT obj EXPORTING vbeln = p_vbeln.
      ENDIF.
      CALL METHOD obj->get_vbap_details.
      CALL METHOD obj->disp_vbap_details.
    *& report ziga_abapobjects_asgn01 *
      REPORT ziga_abapobjects_asgn01 .
      PARAMETER : p_matnr LIKE mara-matnr.
    * CLASS lcl_material DEFINITION
    CLASS lcl_material DEFINITION.
      PUBLIC SECTION.
        DATA: v_matnr TYPE mara-matnr.
        METHODS : constructor IMPORTING matnr TYPE mara-matnr,
        get_material_description.
      PRIVATE SECTION.
        DATA : v_maktx TYPE makt-maktx.
    ENDCLASS. "lcl_material DEFINITION
    * CLASS lcl_material IMPLEMENTATION
    CLASS lcl_material IMPLEMENTATION.
      METHOD get_material_description.
        CLEAR v_maktx.
        SELECT SINGLE maktx INTO v_maktx
        FROM makt
        WHERE matnr = v_matnr AND
        spras = 'E'.
      ENDMETHOD. "get_material_description
      METHOD constructor.
        CLEAR v_matnr.
        v_matnr = matnr.
      ENDMETHOD. "constructor
    ENDCLASS. "lcl_material IMPLEMENTATION
    DATA : obj TYPE REF TO lcl_material.
    START-OF-SELECTION.
      CREATE OBJECT obj EXPORTING matnr = p_matnr.
      CALL METHOD obj->get_material_description.
      prg3)
      report ziga_abapobjects_asgn01 .
      PARAMETER : p_matnr LIKE mara-matnr.
    * CLASS lcl_material DEFINITION
    CLASS lcl_material DEFINITION.
      PUBLIC SECTION.
        METHODS : constructor IMPORTING matnr TYPE mara-matnr,
        write_material_desc.
        CLASS-METHODS : class_constructor.
      PRIVATE SECTION.
        CLASS-DATA: v_matnr TYPE mara-matnr.
        DATA : v_maktx TYPE makt-maktx.
        METHODS : get_material_description.
    ENDCLASS. "lcl_material DEFINITION
    * CLASS lcl_material IMPLEMENTATION
    CLASS lcl_material IMPLEMENTATION.
      METHOD get_material_description.
        CLEAR v_maktx.
        SELECT SINGLE maktx INTO v_maktx
        FROM makt
        WHERE matnr = v_matnr AND
        spras = 'E'.
      ENDMETHOD. "get_material_description
      METHOD constructor.
        WRITE :/ 'Inside Instance Constructor'.
        CLEAR v_matnr.
        v_matnr = matnr.
        CALL METHOD get_material_description.
      ENDMETHOD. "constructor
      METHOD write_material_desc.
        WRITE :/ 'Material Description :', v_maktx.
      ENDMETHOD.                    "write_material_desc
      METHOD class_constructor.
        WRITE :/ 'Inside Static Constructor'.
      ENDMETHOD.                    "class_constructor
    ENDCLASS. "lcl_material IMPLEMENTATION
    DATA : obj TYPE REF TO lcl_material,
    obj1 TYPE REF TO lcl_material.
    START-OF-SELECTION.
      CREATE OBJECT obj EXPORTING matnr = p_matnr.
      CALL METHOD obj->write_material_desc.
      CREATE OBJECT obj1 EXPORTING matnr = '000000000000000110'.
      CALL METHOD obj1->write_material_desc.
      CALL METHOD obj->write_material_desc.
      prg4)
      report ziga_abapobjects_asgn01 .
      PARAMETER : p_matnr LIKE mara-matnr.
    * CLASS lcl_material DEFINITION
    CLASS lcl_material DEFINITION.
      PUBLIC SECTION.
        METHODS : constructor IMPORTING matnr TYPE mara-matnr,
        write_material_desc,
        get_material_description.
        CLASS-METHODS : class_constructor.
      PRIVATE SECTION.
        CLASS-DATA: v_matnr TYPE mara-matnr.
        DATA : v_maktx TYPE makt-maktx.
    ENDCLASS. "lcl_material DEFINITION
    * CLASS lcl_material IMPLEMENTATION
    CLASS lcl_material IMPLEMENTATION.
      METHOD get_material_description.
        CLEAR v_maktx.
        SELECT SINGLE maktx INTO v_maktx
        FROM makt
        WHERE matnr = v_matnr AND
        spras = 'E'.
      ENDMETHOD. "get_material_description
      METHOD constructor.
        WRITE :/ 'Inside Instance Constructor'.
        CLEAR v_matnr.
        v_matnr = matnr.
      ENDMETHOD. "constructor
      METHOD write_material_desc.
        WRITE :/ 'Material Description :', v_maktx.
      ENDMETHOD.                    "write_material_desc
      METHOD class_constructor.
        WRITE :/ 'Inside Static Constructor'.
      ENDMETHOD.                    "class_constructor
    ENDCLASS. "lcl_material IMPLEMENTATION
    DATA : obj TYPE REF TO lcl_material,
    obj1 TYPE REF TO lcl_material.
    START-OF-SELECTION.
      CREATE OBJECT obj EXPORTING matnr = p_matnr.
      CALL METHOD obj->get_material_description.
      CALL METHOD obj->write_material_desc.
      CREATE OBJECT obj1 EXPORTING matnr = '000000000000000110'.
      CALL METHOD obj1->get_material_description.
      CALL METHOD obj1->write_material_desc.
      CALL METHOD obj->get_material_description.
      CALL METHOD obj->write_material_desc.
      REPORT ziga_abapobjects_asgn01 .
      PARAMETER : p_matnr LIKE mara-matnr.
    * CLASS lcl_material DEFINITION
    CLASS lcl_material DEFINITION.
      PUBLIC SECTION.
        CLASS-METHODS : write_material_desc,
        get_material_description,
        class_constructor.
      PRIVATE SECTION.
        CLASS-DATA: v_matnr TYPE mara-matnr.
        CLASS-DATA: v_maktx TYPE makt-maktx.
    ENDCLASS. "lcl_material DEFINITION
    * CLASS lcl_material IMPLEMENTATION
    CLASS lcl_material IMPLEMENTATION.
      METHOD get_material_description.
        CLEAR v_maktx.
        SELECT SINGLE maktx INTO v_maktx
        FROM makt
        WHERE matnr = v_matnr AND
        spras = 'E'.
      ENDMETHOD. "get_material_description
      METHOD write_material_desc.
        WRITE :/ 'Material Description :', v_maktx.
      ENDMETHOD.                    "write_material_desc
      METHOD class_constructor.
        WRITE :/ 'Inside Static Constructor'.
        v_matnr = '000000000000000110'.
      ENDMETHOD.                    "class_constructor
    ENDCLASS. "lcl_material IMPLEMENTATION
    START-OF-SELECTION.
      CALL METHOD lcl_material=>get_material_description.
      CALL METHOD lcl_material=>write_material_desc.
    Arun Sambargi.

  • When trying to sign out of Hotmail the "back navigation button" remains green and I have to click sign out again and the same thing happens over and over and the only way to close Hotmail is to go to File and Close Frame, so what's my problem?

    When I attempt to sign out of Hot Mail by clicking "Sign Out," I get the "Sign In" instruction as I always have, however, the green Firefox navigation button remains on bright green (not going to gray) and my MSN home page will not close automatically as usual. I click on the green arrow and I get an instruction to "Sign Out" again. I click on that and get the "Sign In" again but the arrow stays green. I can repeat this countless times and never get signed out and always remaining on the MSN home page. The only way I can close is to go to File and click on Close Window and then my homepage will close and go back to desktop. I've been using Firefox for a couple of years now (IE prior to that for ten years) and have never had this problem. After using "Close Window" I go back onto my home page, from the desktop, and the navigation button is grayed out normally until I sign in again and we start the cycle over again. Have I been hacked?
    == This happened ==
    Every time Firefox opened
    == Approximately a month ago.

    I was doing a side-by-side comparison of the new and old server (we backed up the server before the reformat) and I can see that, evidently, CR XI was installed.  We have the directory C:\Program Files\Common Files\Business Objects\3.0 and all the versions match what is located in the project's bin directory.  Does this confirm that I did have XI installed and licensed at one time?
    If I purchase a more recent version, couldn't I update the reports to use the newer version?  I have all the source code.
    Thanks for your help, it is a nice sanity check for me after hours of reading forums and documentation.
    Also, just a shot in the dark, but I'm assuming it wouldn't do me any good to simply restore the aforementioned folder to my C drive?  Would that work if I registered all the dll's?
    Edited by: Eric Hollering on Dec 2, 2009 6:40 PM
    To be clear, I do have VS 2003 & 2005, and I have the source code.  I just have never used Crystal Reports in any of my .NET apps because the need wasn't there, so recompiling is not out of the question.
    Edited by: Eric Hollering on Dec 2, 2009 6:49 PM
    Also, I looked at the CrystalDecisions.CrystalReports.Engine.dll that was in the C:\Program Files\Common Files\Business Objects\3.0\Managed folder and when I right-click and view the properties, then the Version tab, in addition to the 11.0.9500.2 version number, there is a property called Product Version that has the value .NET.  Does that mean that this dll was bundled with Visual Studio?
    I also found this directory on the old server...does this tell you anything?
    C:\Program Files\Business Objects\BusinessObjects Enterprise 11
    I did see that you can still buy XI from CDW.  I have a call into them currently to check with Business Objects for any registrations from my company.
    Edited by: Eric Hollering on Dec 2, 2009 8:27 PM

  • Hide the command box in sap gui

    Hi,
    Good to see the SAP GUI form,
    we are bringing SAP R/3 transactions in Enterprise Portal,
    every time the r/3 transaction opens in iview (SAP GUI for windows).
    It shows the normal screen with "Command box" on the top,
    now we dont want the user to browse the sap system using the command box.
    any info on that..is it possible to hide or remove?
    Thanks for help,
    -Krishna

    Hi Krishna,
    note 648452 states that the command box will not be displayed for inplace SAP GUI for Windows sessions if you set the following registry value:
    [HKEY_CURRENT_USER\Software\SAP\SAPGUI Front\SAP Frontend Server\Customize] "HideCmdLineInplace"=dword:00000001
    If you want to disable the command box also for outplace sessions in the portal then you may set in addition to above value the following:
    [HKEY_CURRENT_USER\Software\SAP\SAPGUI Front\SAP Frontend Server\Customize] "HideCmdLineInplaceAllSession"=dword:00000001        
    Best regards,
    Christian

  • What is the name of the EXE to invoke SAP GUI

    Hi All,
    Can any one provide me the exe file name of SAP GUI related.
    I need to call the SAP GUI related exe file from java.
    Regds
    Rajesh

    Hi
    Thanks for your fast response.
    I am getting this exception at the time of execution.
       java.io.IOException: CreateProcess: C:\Program Files\SAP\Frontend\SAPGUI\sapgui.exe" /H/10.113.10.201/S/3200 /3 error=2
    Actually i wrote the program like this.
    public static void main(String[] args) {
              try{
                   Runtime rt=Runtime.getRuntime();
                                                    rt.exec("C:
    Program Files
    SAP
    Frontend
    SAPGUI
    sapgui.exe\" /H/10.113.10.201/S/3200 /3");
    }catch(Exception e){
                   System.out.println(e);
    The way i wrote the program and i passed the value inside the rt.exec(----) method is correct or not?
    and one more thing, we are not using message server and any log on group.
    PLZ help, to resolve this issue
    Regds
    Rajesh

  • Where is the default theme of SAP GUI saved

    Hey Everybody
    We want do distribute the SAP GUI with help of the Installationserver. This works fine now but we want to distribute the SAP GUI with an other Default Theme. So I like to know if there is any possibility to do this? This setting must be saved anywhere, but I dont know where.
    Thanks for your help!

    Hi,
    1. Signature theme:
           HKEY_CURRENT_USER\Software\SAP\General\Appearance\UseSMCRendering - 1
    2. System default:
          HKEY_CURRENT_USER\Software\SAP\General\Appearance\UseSMCRendering - 0
    3. For other themes:
          HKEY_CURRENT_USER\Software\SAP\General\Appearance\UseSMCRendering - 0 and
          HKEY_CURRENT_USER\Software\SAP\General\Appearance\Theme

  • Personalize the Help Menu of SAP GUI

    Hi,
    I want to personalize the Help menu of the SAP GUI, in the Sandbox environment the Help menu has an option that calls an intranet website with the company's procedures and specific SAP help.  I would like to have this same option in Dev/Test/Prod and I don't know who to make the changes.
    I've been trying with SE43N, area menu S000 but that menu does not have the Help sub-menu.  Am I going in the right direction?
    I know this is possible since somebody has done in in the past in our Sandbox, I just dont know how to do it myself for the rest of the environments.
    Thanks a lot.
    Erika B.

    Hi,
    please go to transaction SE41 and select program MENUSYST and select "menu bars". Click "change" and double-click "help". Double-click "help" again on the next screen. Here you can see the current "Help Menu" and edit whatever you want to edit. After you save your changes a transport will be created.
    Hope this helped.
    Regards,
    Jann

  • WebDynpro ABAP iview display problems

    Hi everybody,
    I am new to Portal and need some help with the display of a webdynpro iview in the portal. We use portal 7.0 and wish to insert a new webdynpro iview for ABAP in the portal. The webdynpro application displays well the first time, clicking on all options within the applications returns everything as intended and everything looks great. However the second time when we click on a particular option in the application, some icons do not get displayed.
    It is as if the second time the iview gets the contents from cache or something. We switched off all cache options within the iview, but it doesn't seem to have any effect.
    Has anyone had any experience with this? Does anyone know the solution?
    Thank you.
    Vedad

    Hi Vedad,
    can you tell us your portal and R/3 ERP version?
    Read the following notes :
    979479, 1033496, 970850, 1052625
    Also :
    Re: wda stylesheet via sap-cssurl parameter
    Brad

  • WebDynpro ABAP integrated into the NetWeaver Portal - One for Mr Jung :)

    Hi
    <h2>Introduction</h2>
    I've developed a WebDynpro Component that uses 8 other components.
    The initial component has 1 view with a PhaseIndicator element with 8 phases.
    Selecting a phase pops up a window of the appropriate components used as usage components.
    Also, depending on certain config tables some windows might popup as soon as the application runs.
    I've created an application for the component with the PhaseIndicator.
    <h4>The application works perfectly !</h4>
    <h2>Problem</h2>
    <h4>When I integrate the application into the NetWeaver Portal it also works perfectly, in Dev that is.</h4>
    When moving the application and all it's components to QA it also works perfectly if run on it's own. But, when embedded in an iview in the Portal, strange things happen
    All the components that are usage components in the 1st component is displayed in the first window but not as pop ups.
    They are all listed below each other with plenty of white space between them, below each other in one huge scrollable window.
    <h2>My Investigations</h2>
    I've run a trace in Dev and QA and discovered that just before the Windows are displayed different code is run in the two systems. In Dev, the system executes a method of the class CL_WDR_SSR_LS but in QA the system executes the contructor class of a local method lcl_repository in the include LWDR_RUNTIME_REPOSITORYF12.
    <h2>Things I've tried - but did not work</h2>
    1) Removed my custom theme.
    2) Re-transported everything.
    3) Bounced the QA Portal
    4) Transported everything to Prod - It works perfectly in and out of the Prod system and Portal. BTW The ECC system of QA was refreshed from Prod 2 weeks ago.
    <h2>Finally - My Question</h2>
    What the bleep do I do now
    Thank you for reading.

    Hi Bala,
    thank you. This solved my problem.
    Could you explain what the caused the problem?
    Best regards,
    Olaf

  • Drop Down Menu Over Text The Opposite Way

    I’ve just read the Drop Down Menu Over Text: How? Topic
    posted by Cpt-K but it appears that he was trying to do the
    opposite of what I want to do. My problem is that I have created a
    drop down menu in Flash which I have imported into Dreamweaver. I
    now want to be able to write HTML code below the menu and have the
    sub menus drop down over the top of the HTML. Currently the menu
    sits above the text leaving a large white space where the sub menus
    drop down. I have tried using the wmode parameters transparent and
    opaque but neither has worked. Is there anyway to fix this?

    I have the same problem and dont know the solution. I would
    appreciate if you or anyone else would share it with me.
    Thanx.

  • My MacBook Pro is increasingly slow and displays the beachball way too much. I have an Etresoft report.

    Hardware Information:
        MacBook Pro (17-inch 2.4GHZ)
        MacBook Pro - model: MacBookPro3,1
        1 2.4 GHz Intel Core 2 Duo CPU: 2 cores
        2 GB RAM
    Video Information:
        GeForce 8600M GT     - VRAM: 256 MB
    System Software:
        Mac OS X 10.6.8 (10K549) - Uptime: 4 days 7:53:59
    Disk Information:
        Hitachi HTS541616J9SA00 disk0 : (149.05 GB)
            (null) (disk0s1) <not mounted>: 200 MB
            Macintosh HD (disk0s2) / [Startup]: 148.73 GB (82.15 GB free)
    USB Information:
        Lexmark S300-S400 Series
        Western Digital My Passport 0748 931.48 GB
            Bonnie (disk1s1) /Volumes/Bonnie: 931.48 GB (597.58 GB free)
        Apple Inc. Built-in iSight
        Apple Inc. Bluetooth USB Host Controller
        Apple Computer Apple Internal Keyboard / Trackpad
        Apple Computer, Inc. IR Receiver
        Fujitsu  ScanSnap S510M
    FireWire Information:
    Thunderbolt Information:
    Kernel Extensions:
        com.parallels.kext.ConnectUSB    (3.0.0)
        com.jft.driver.PdaNetDrv    (1.0.64)
        com.parallels.kext.Pvsnet    (3.0)
        com.parallels.kext.hypervisor    (3.0)
        com.parallels.kext.vmmain    (3.0)
        com.parallels.kext.Pvsvnic    (3.0)
    Startup Items:
        HP IO: Path: /Library/StartupItems/HP IO
        HP Trap Monitor: Path: /Library/StartupItems/HP Trap Monitor
        Parallels: Path: /Library/StartupItems/Parallels
        ParallelsTransporter: Path: /Library/StartupItems/ParallelsTransporter
        Qmaster: Path: /Library/StartupItems/Qmaster
    Problem System Launch Daemons:
        [System]    com.jft.PdaNetMac.plist 3rd-Party support link
        [System]    org.samba.winbindd.plist 3rd-Party support link
    Launch Daemons:
        [System]    com.adobe.fpsaud.plist 3rd-Party support link
        [System]    com.adobe.versioncueCS3.plist 3rd-Party support link
        [System]    com.crashplan.engine.plist 3rd-Party support link
        [System]    com.google.keystone.daemon.plist 3rd-Party support link
        [System]    com.microsoft.office.licensing.helper.plist 3rd-Party support link
    Launch Agents:
        [System]    com.google.keystone.agent.plist 3rd-Party support link
        [System]    com.lexmark.bmlaunchd.plist 3rd-Party support link
        [System]    com.lexmark.bmspecificlaunchd.plist 3rd-Party support link
        [System]    com.lexmark.lexnetlaunchd.plist 3rd-Party support link
        [System]    com.lexmark.lxknetlaunchd.plist 3rd-Party support link
    User Launch Agents:
        [not loaded]    com.adobe.ARM.[...].plist 3rd-Party support link
        [not loaded]    com.crashplan.javacheck.plist 3rd-Party support link
        [not loaded]    com.google.GoogleContactSyncAgent.plist 3rd-Party support link
    User Login Items:
        GrowlHelperApp
        iTunesHelper
        Microsoft AU Daemon
        AirPort Base Station Agent
        ScanSnap Manager
        TomTomHOMERunner
        MagicMenu
        PdaNetMac
        CrashPlan menu bar
        Dropbox
        Spotify
        LexmarkNetworkServices
        7600 Series Button Monitor
    Internet Plug-ins:
        JavaAppletPlugin: Version: 13.9.8 - SDK 10.6 Outdated! Update
        FlashPlayer-10.6: Version: 12.0.0.70 - SDK 10.6 3rd-Party support link
        QuickTime Plugin: Version: 7.6.6
        Flash Player: Version: 12.0.0.70 - SDK 10.6 3rd-Party support link
        AdobePDFViewer: Version: 8.3.1 3rd-Party support link
        AmazonMP3DownloaderPlugin: Version: Unknown
        SharePointBrowserPlugin: Version: 14.3.9 - SDK 10.6 3rd-Party support link
        Silverlight: Version: 5.1.20913.0 - SDK 10.6 3rd-Party support link
        iPhotoPhotocast: Version: 7.0 - SDK 10.7
    iTunes Plug-ins:
        Quartz Composer Visualizer: Version: 1.2
    User Internet Plug-ins:
        WebEx64: Version: 1.0 - SDK 10.5 3rd-Party support link
    3rd Party Preference Panes:
        Adobe Version Cue CS3  3rd-Party support link
        Flash Player  3rd-Party support link
        Growl  3rd-Party support link
    Old Applications:
        None
    Time Machine:
        Time Machine information requires OS X 10.7 "Lion" or later.
    Top Processes by CPU:
            97%    RemoteConverter
             7%    GarageBand
             3%    WindowServer
             2%    PluginProcess
             2%    EtreCheck
    Top Processes by Memory:
        268 MB    java
        264 MB    WebProcess
        225 MB    firefox
        66 MB    WindowServer
        49 MB    RemoteConverter
    Virtual Memory Information:
        20 MB    Free RAM
        1.15 GB    Active RAM
        578 MB    Inactive RAM
        273 MB    Wired RAM
        16.86 GB    Page-ins
        7.84 GB    Page-outs

    LaniBari,
    what is Remote Converter? It seems to be consuming the vast majority of your CPU’s cycles. The presence of nearly 8 GB of page-outs suggests that your MacBook Pro’s 2 GB of RAM is not enough for your software’s needs.

Maybe you are looking for

  • Apple TV no longer plays any video, just clocks with loading icon

    My Apple TV was working fine until about 2 weeks ago.  I have CenturyLink high speed ( up to 40MB) internet connection, I can run a speed test on my iphone from the same room and get 32MB download speeds.  Apple TV connectivity test shows successful

  • Webi Report Schedule failing in BI Launchpad

    Hi, I am wondering if anyone has come across this error message when trying to schedule a webi report in BI Launchpad. Firstly, the webi report refreshes successfully in BI Launchpad. The source for the Webi report is an OLAP universe that was migrat

  • Printing from iPhoto 6.06

    Please can anyone help me diagnose the problem I have when trying to print a photo from iPhoto 6.06 using my G4 powerbook with Leopard 10.5.6 and a wireless( Airport Extreme) HP All in one Officejet 7200 printer? It has worked fine up till now and I

  • Payment and prices

    I paid for 1 month subscription to call phone in Sri Lanka. After  that it shows 60 mins. credit left. But I could never take any call. The call does not connect. But at the end of the month Skype auto matically recharges and add credit to my account

  • SCOM 2012: Report Viewer / SQL Server 2012 CLR??

    Hello, I am trying to install an Operations Console to a Management Server and it request 1. Report Viewer Then I tried to install Report Viewer then it requests: Microsoft System CLR Types for SQL Server 2012 These are ne for SCOM 2012? I check the