Need a Valuable Suggestion.

I am a SAP ABAP Consultant. I know both ABAP and Webdynpro.I want to learn more and more in SAP. Please tell me which module is beneficial for mei.e SAP HANA or SAP BI/BO.

Hi Sarhan,
I am also an ABAPe'r but I dont want to do programming Stuff.
Which area will be better for me?
I attended training on Data modelling and implementation.
What is the scope in the same?
Is there any coding also involved in the same?
Please guide.
BR
Sumeet

Similar Messages

  • Need ur valuable suggestions on performance in sap BI

    Hi All,
    Hope every one is doing great. Need ur valuable suggestions on performance in SAP BI.
    1. what is meant by DB partitioning, in which scenario we use it and what the steps to do this task.
    2. Navigational attributes are use when v want to make use of this attr in reporting with certian actions. My question is do navigational attributes improves the performance if so how and if not what are the draw backs.
    3. Multiprovider are use to access the data from different infoprovider to generate the reports.
    In what way multiprovider inproves the performance??
    4. Number Range buffering when it is used what r the steps has to follow ??
    5. what is the procedure to calculate the DB statistics. what are the technical conents v install for this, when we install this befor the development are after completion of the developement and   in what way they are helpfull to measure the performance.
    Thanks in Advance
    KK

    1. what is meant by DB partitioning, in which scenario we use it and what the steps to do this task.
    http://help.sap.com/saphelp_nw70/helpdata/en/33/dc2038aa3bcd23e10000009b38f8cf/content.htm
    2. Navigational attributes are use when v want to make use of this attr in reporting with certian actions. My question is do navigational attributes improves the performance if so how and if not what are the draw backs.
    Nav Attribute:-
    The dataflow performance/space is affected in the infoobject load, since the sid tables is growing with navigational attributes
    The dataflow performance/space is not affected in transactional data (except for the aggregates).
    So every navigationa attribute in an infoobject can be added to the infocubes without any cost.
    The performance in query is affected, but the solution is simple: do not use!
    Please check the following thread:
    Re: Navigate Attribute
    3. Multiprovider are use to access the data from different infoprovider to generate the reports.
    In what way multiprovider inproves the performance??
    --THis causes performance degradation as OLAP has to divide the query in many sub-queries.
    4. Number Range buffering when it is used what r the steps has to follow ??
    5. what is the procedure to calculate the DB statistics. what are the technical conents v install for this, when we install this befor the development are after completion of the developement and in what way they are helpfull to measure the performance.
    --For DB Statistics :
    Ref : SAP Note No: 588668
    http://help.sap.com/saphelp_nw04/helpdata/en/19/f832ac5d4611d4aa1500a0c9430730/content.htm

  • Needs Your Valuable Suggestion

    Hi All,
    I have been facing a typical problem related to SQL. Please let me if you have any solution/queries.
    Table1 Structure
    ID     DPLY_NM     DESC_TX     
    100001     All Currencies     This parameter allows coverage of all currency codes without     
    100001     Excluded Cust IDs     Customer account IDs of the Firm     
    100001     Excluded Trader IDs     Trader IDs of the Firm excluded     
    100002     Short Sale Times Window     Number of seconds prior to the     
    100002     XYXZ     XYZ     
    100003     HR Min Trans Amt     Minimum total transaction     
    100004     Included Desk IDs     Minimum percentage at     
    Table2 Structure
    ID     DPLY_NM     DESC_TX     
    100001     All Currencies     This parameter allows coverage of all currency codes without     
    100001     Excluded Cust IDS     Customer account IDs of The Firm     
    100001     Excluded Trader IDS     Trader IDs of the Firm excluded     
    100002     Short Sale Tim Window     Number of seconds prior to the     
    100003     HR Min Trans Amount     Minimum total transaction     
    100004     Incl Desk IDs     Minimum percentage at all level     
    In the above two tables, there is difference between the DPLY_NM and DESC_TX there are four possibility, i have to do log as below condition
    DPLY_NM     DESC_TX     Result which we have to Log     
    Y     Y     No Need to log     
    Y     N     Do Log     
    N     Y     Do Log     
    N     N     Do Log     
    I have to compare the table 1 with table 2 and log the descripencies as given in above conditions. and the final log should look like-
    log start
    Difference in display name
    Table1     DSPLY_NM          
    Table2     DSPLY_NM          
    Table1     DSPLY_NM          
    Table2     DSPLY_NM          
    Table1     DSPLY_NM     Extra     
    Difference in description
    Table1     DSPLY_NM          
    Table2     DSPLY_NM          
    Table1     DSPLY_NM          
    Table2     DSPLY_NM          
    Table2     DSPLY_NM     Extra     
    log end
    I followed the following apporch
    I made a master table (MT) of having the all daat of table 1 and table 2 with the flag. The master table looks like given below:
    SCNRO_ID     DPLY_NM     DESC_TX     FLAG
    100001     All Currencies     This parameter allows coverage of all currency codes without     T2
    100001     Excluded Cust IDs     Customer account IDs of the Firm     T2
    100001     Excluded Trader IDs     Trader IDs of the Firm excluded     T2
    100002     Short Sale Times Window     Number of seconds prior to the     T2
    100002     XYXZ     XYZ     T2
    100003     HR Min Trans Amt     Minimum total transaction     T2
    100004     Included Desk IDs     Minimum percentage at     T2
    100001     All Currencies     This parameter allows coverage of all currency codes without     T1
    100001     Excluded Cust IDS     Customer account IDs of The Firm     T1
    100001     Excluded Trader IDS     Trader IDs of the Firm excluded     T1
    100002     Short Sale Tim Window     Number of seconds prior to the     T1
    100003     HR Min Trans Amount     Minimum total transaction     T1
    100004     Incl Desk IDs     Minimum percentage at all level     T1
    FLAG T1: shows the data from T1 table and T2 shows the data from T2 table.
    Now created another two table with the interchange of flag they are T3 and T4
    the table structure (T3) will be like:
    ID     DPLY_NM     FLAG     
    100001     All Currencies     T2     
    100001     Excluded Cust IDs     T2     
    100001     Excluded Trader IDs     T2     
    100002     Short Sale Times Window     T2     
    100002     XYXZ     T2     
    100003     HR Min Trans Amt     T2     
    100004     Included Desk IDs     T2     
    and the table structure (T4) will be like:
    ID     DPLY_NM     FLAG     
    100001     All Currencies     T1     
    100001     Excluded Cust IDS     T1     
    100001     Excluded Trader IDS     T1     
    100002     Short Sale Tim Window     T1     
    100003     HR Min Trans Amount     T1     
    100004     Incl Desk IDs     T1     
    Now i run the query giveb below and i got the appropriate record
    (select * from MT
    minus
    select * from T3)
    minus
    select * from T4;
    For finding the descrepancies in description make the two table T5 and T6 as given below
    (I need descripencies in the DESC_TX only)
    T5 Table structure
    ID     DPLY_NM     DESC_TX     FLAG     
    100001     All Currencies     This parameter allows coverage of all currency codes without     T2     
    100001     Excluded Cust IDs     Customer account IDs of the Firm     T2     
    100001     Excluded Trader IDs     Trader IDs of the Firm excluded     T2     
    100002     Short Sale Times Window     Number of seconds prior to the     T2     
    100002     XYXZ     XYZ     T2     
    100003     HR Min Trans Amt     Minimum total transaction     T2     
    100004     Included Desk IDs     Minimum percentage at     T2     
    T6 Table structure
    ID     DPLY_NM     DESC_TX     FLAG     
    100001     All Currencies     This parameter allows coverage of all currency codes without     T1     
    100001     Excluded Cust IDS     Customer account IDs of The Firm     T1     
    100001     Excluded Trader IDS     Trader IDs of the Firm excluded     T1     
    100002     Short Sale Tim Window     Number of seconds prior to the     T1     
    100003     HR Min Trans Amount     Minimum total transaction     T1     
    100004     Incl Desk IDs     Minimum percentage at all level     T1     
    Now i run the query given below but i am not getting the appropriated records. Ther are some false record.
    (select * from MT
    minus
    select * from T5)
    minus
    select * from T6;
    Thanks
    Anand
    Message was edited by:
    user567015

    Lemme get on the old soapbox.. yet again.. and give you my prepared speech about manners here... yet again..
    <soapbox on>
    Don't you think that you claiming that your problem is urgent is rude? Are you not saying by that, that other people who also have problems posted here, are less important than your so very special and urgent problem?
    And what do you expect from professionals here, with paid jobs, spending their free time to help people like you?
    Should they now jump to it, stop with their paid work, and solve your urgent problem for you? Is that not also just plain rude?
    I suggest that you first learn some basic manners when using public forums like this. I for one has stopped helping posters who claim their problems as urgent and then demand special treatment in forums like this.
    <soapbox off>

  • Valuable suggestion required please!!!!!!!!!!!!!!!!!

    hi all
    pertaining to EJBs, taking performance and on overall scales which of the two websphere and weblogic do u consider the better choice, also which of them is ahead and used most xtensively in IT corportes.
    thx
    pawan

    I believe you are bringing us a big fight if this is in fact an issue without certain answer. WebLogic might still have a little bigger market share, and it certainly performs, WebSphere will probably take the lead soon, in my mind. But if you can describe your web service type in a little more detail, you may get more valuable suggestions.
    PC

  • Need EXPERT's suggestion for APEX CHART SERIES

    Hello Everyone,
    I have been trying to solve an issue with my apex line chart. The scenario is as follows:
    I have a table called revenue. revenues per year are saved in it. and revenues are generated from three sources which are also saved in the same table.
    I have made a line chart on it. works well.
    Now I have to show that if the value of one of the sources had fallen, how must have it affected the total. I made a number field that takes an estimated change value, and build my sql query with it. it works but the problem is that it changes the non-affected source too. it must change the value of the affected source only and hence the total value.
    I hope I make sense and anybody can suggest something.
    bold or I will put it this way, how can I write a select statement for a chart series so that one of the rows value does not change and the other two change. ... ?
    Edited by: Samooray92 on May 30, 2013 2:41 PM

    Samooray,
    Let's work with this question since there is more detail here than in the other one. {thread:id=2543702}
    First it's always help to know:
    Full APEX version
    Full DB/version/edition/host OS
    Web server architecture (EPG, OHS or APEX listener/host OS)
    Browser(s) and version(s) used
    And sometimes this information as well.
    Theme
    Template(s)
    Region/item type(s)
    When a question goes unanswered for a while, there is no need to reply to it or to start a new question. You can edit the original question and just add "Bump" at the bottom and save the changes. This will bump it back to the top of the question list. And by that time, you might think of additional information you can add to the question.
    Say, why would a question go unanswered? Well, easy questions and frequently asked questions with well-known answers can be answered right away. Your question seems more complicated and I don't think we have all the information we need to understand exactly what the question is.
    You are doing a "series" chart. What kind of series chart: bar, column, line? What is each series? For example, components of revenue might be 1) sales, 2) licensing revenue and 3) other. Then you might have one series for sales, a second for licensing revenue and a third for other.
    Could you mock up a trivial example on apex.oracle.com http://apex.oracle.com/pls/apex/f?p=4700:1:0::::: ?
    Regards,
    Howard

  • Need some help & suggestions in designing Crystal Report

    I need to arrange my data in the following manner:
    I need to group my data by a field and need to show multiple information for that record at the same row level and then include some crosstab information. I realized that I cannot have multiple information at the same row level for a group.
    As an example, please consider that the group field is Name and A and B are two records returned based on the grouping field. I also need to show 'Description' and a color coded box for that record.
    And then I need to show the cross tab data for that group.
    I need a table something like what is shown below:
                                                              X  Y  Z
    A.Name A.Desc A.ColorCodeBox    Var1    0  1  2
                                                      Var2    2  3  4
                                                      Var3    2  4  4
    B.Name B.Desc B.ColorCodeBox     Var1    0  1  2
                                                      Var2    2  3  4
                                                      Var3    2  4  4
    Where the numbers are some values and X,Y,Z are the column headings and the numbers are some values.
    Could you please provide some suggestions as to how this can be achieved? I am using the default Crystal Reports that ships with Visual Studio 2008 Prof. But if there is some other feature available with any other version, we can consider switching to it.
    Thanks in advance.

    Here is how my table is laid out.
    col-1    col-2     col-3              col-4  col-5  col-6
    field-a   field-b   field-c        r1 11111  22222  33333
                                       r2 44444  55555  66666
                                       r3 77777  88888  99999
    As you had mentioned, I am creating two group headers in my group section where the first group header contains the following and overlays the second group header.
    col-1    col-2     col-3    
    field-a   field-b   field-c                                                                        
    And the second group header contains  the cross tab information.
              col-4  col-5  col-6
        r1 11111  22222  33333
        r2 44444  55555  66666
        r3 77777  88888  99999
    And I suppressed the column headings (col-X)  from both the groups using the formula that you mentioned. But here is how my table is being laid out
    col-1    col-2     col-3              col-1  col-2  col-3
    field-a   field-b   field-c        r1 11111  22222  33333
                                       r2 44444  55555  66666
                                       r3 77777  88888  99999
                                                                               <- blank line
    field-a   field-b   field-c        r1 11111  22222  33333
                                       r2 44444  55555  66666
                                       r3 77777  88888  99999
    I have already done a fit section and made sure there is no space. Also my crosstab table contains string fields and I am suppressing the row and column totals in the crosstab as I do not need them.
    Do let me know if you have any ideas on this.

  • Need helpful purchase suggestions!

    Swamped with work, from home and need to get wife on her own bookkeeping computer. (I apologize I have no time to research on my own)
    1 - I have a G5 (with no airport card, I'll have to get one)
    2 - I want her to have a Mini
    3 - Want the wireless connection (Airport)
    4 - She will grab Quickbooks files over the network (from mine) - and she and kids will surf and play games (little stuff - not graphics intensive, oldest is 9)
    I don't understand what I need in an Airport base station.
    She will need to print to my printer. And I would like the iTunes option to patch into a home stereo.
    Do I have to have both base stations?
    I think that is the only question. Please make suggestions or ask questions.
    Thanks! Tg
    Dual 1.8gb G5   Mac OS X (10.4.7)  

    ...can I not get the iTunes functionality from the Base Station Extreme?
    No, only the AirPort Express has the audio out port.
    The Extreme is faster too is it not?
    No, they are the same.

  • Needed Varible ND Suggestions For 7d EFS 17-55mm Lens

    Hi,  I'm looking for suggestions for a varible ND filter for my 7D EFS 17-55mm lens. Wanting to shoot video on the high end towards the f/2.8 range of this lens. Currently, my sweet spot without a ND is anywhere from f/14 to f/18 bright/cloudy outdoors. I normally shoot at 1920x1080 at 24fps with my shutter speed at 1/50. As you know, the higher the aperture the brighter things get. At f/2.8 I'm totally washed out. I have a B+W UV XS-Pro filter that currently lives on the lens https://www.schneideroptics.com/Ecommerce/CatalogItemDetail.aspx?CID=1554&IID=8160
    I see Light Craft Workshop has come out with a Rapid Variable ND lately that looks interesting. http://www.bhphotovideo.com/bnh/controller/home?O=&sku=1015993&Q=&is=REG&A=details
    If you have any suggestions that would give me great results, I would sincerely appreciate it. Thanks, Ray

    Personally I'd get a standard ND filter instead of a variable.  Looks like 5 stop is what you need.  I know B+W makes a 6 stop, you might be able to get that to work.
    Perhaps variable NDs work well with video.  When I looked into getting one for stills it seemed to me it just wasn't worth it if you're picky about your quality.  Anything less than the SR was of dubious quality and even the SR had problems with the X banding at higher opacities.  With stills you usually have some wiggle room over settings so having a 3 stop and a 6 stop, and stacked for 9 stop, was enough for my needs.

  • ...Problem of taking backups.. Need your kind Suggestions....

    HI..
    well i have a strange requirement and thus i want that you people, specially gurus kindly suggest an optimum solution. i will be thankful...
    I have a Form which gives the summary of the current record state of the Database
    For. e.g i have display items. that shows count of ..
    Total number of teachers in shool, total male , total female,
    teacher resigns, teachers hired, teachers on holiday etc..
    The Form serves as a Summary Sheet for the higher management.
    Now the thing is that higher management wants me to take the backup of this report.
    so that if they want they can compare it . with the yesterday or with any date , the status ... summar.
    i am taking logs for each table, but they dont want that it is better if we can take logs of the summary report..
    I think we cannot user oracle workhistory for this purpose.. because then i would be needing to store the report in a table.. wastage n burden on database.. isnt it ..
    IS it possible that i can take that report summary as export in excel file or any other file... through forms.. l, so that they can or i can store the daily stats..
    which can be shown on request..
    what to do i do not understand.. probably..
    i mean obviously if i were to take backup of each and every thing .. it required huge burden and space..
    obviously i cannot take export of DB as logical backup and import because then the current state of DB would be effected..
    what to do kindly suggest some good solution , with the help of ur experience..

    Hi,
    You can use OLE for storing the records in excel file. Searching this forum on OLE will give you more details on how to achieve this and may be some samples too.
    HTH.
    Regards,
    Arun

  • I need a display suggestion.

    I have been working on a calendar of events flex application
    as most
    anybody who monitors these flex lists probably has noticed.
    This is a
    reworking of an existing [D]HTML/CFML application. Part of
    the current
    display is that canceled events are displayed with a
    strike-through text
    decoration.
    I am trying to convey this same information in the flex
    version. I have
    tried using a strike-through decoration, but my attempts to
    use htmlText
    functionality in flex did not produce any results. I then
    tried to use
    the alpha property to fade the canceled events. After
    embedding a font
    so that the alpha effect would take effect, the results where
    less then
    desirable, it was just not clear enough.
    Any suggestions on a simple but effective way to display the
    canceled
    events? It should be noted that the events are color coded to
    indicate
    which of four areas to which they belong. This color coded
    information
    needs to be maintained for canceled events and I am reluctant
    to try and
    create four "canceled" colors. This is a quite a colorful,
    busy,
    information packed screen as it is.
    Is there an easy way I could apply an image/graphic/effect to
    create
    some kind of diagonal lines mask/background of the box
    containing the
    canceled drive information?

    Not sure whether I understood your query properly or not but here is my understanding:
    You have users related to different users. You want to provision users in some RO and for that you have created some Dummy ROs to select users.
    I hope that you are having some kind of relation between departments and users
    Have one Parent Dataset
    Create one Child Dataset and have two Lookup fields -- One for Department and Second for User
    Use Lookup Queries to select User based on Department selected in Field1
    Field2 must be required i.e. User
    In the same way create two process form Parent and Child. Child Form will having two fields. You can create Text Fields.
    After approval, data selected on dataset will come to Child Process Form
    Create corresponding INSERT trigger task in Process Definition which will read data from child process form and provision those users. (Search Forum or Go Through Oracle Docs to know more about these Child Form Triggers)

  • Need Expert's Suggestion

    I am working in IT concern for past 2 years. I have the knowledge in Core JAVA,J2EE(Jsp,Servlet), SQL and UNIX. I feel this knowledge is not enough to become Technically strong guy. My objective is to become an Technical Architect. I need advice from the experts that, What are the technologies in Java should be known to enhance our career as well as Design perspective. kindly suggest me some thing which need to be learn to acheive my objective. Also forward some useful materials to my email id if like to share it with me.
    My email id is : [email protected]

    The role of Technical Architect differs from company to company, I'm not sure there is a definative description of the role.
    In general, I would say a Technical Archtect must have the following critical experience;
    - At least 7 years developer experience, including 2 years as lead developer. This experience should cover several languages.
    - A strong understanding of associated technologies relevant to their role, eg web servers, application servers, databases etc.
    - The ability to keep up to date with new developments in technology, and to critically analyse products and technology and report to their peers, superiors and other interested parties.
    - A strong understanding of theory, best/accepted practice and standards relevant to their role.
    - The discipline to give advice and take advice and objective criticism, and to not overstep the remit of an architect (for example telling developers how to do their job).
    I think it takes a certain kind of character to become an architect, with 2 years dev experience you probably shouldn't be making career plans like that just yet. The fact that you don't know what you need to know to be a Tech Architect means that you shouldn't be planning on being one.

  • Need Advise and Suggestions-Oracle 10g

    Hi,
    I have been working on databases as DB developer(mainly PLsql)--Oracle 10g
    Recently,i have joined in a particular position where I have been asked to find out areas where
    improvement is necessary / or areas where improvement or changes would help very much and also gradually implement all best practises avaialable.
    So,could you please help me with these queries
    (1)What are the most important areas that i can start with the database which would impact largely the entire database.How can i start with it? any steps or process
    (2)I had once taken a report out for the expensive SQLs running.But that dint help much...because those SQLs were used temporarily on and off.
    Similarly,what are the other points to be looked on.
    (3)Things which can be replaced with the industry standarad better ones fully.
    an example would be...like.."following a particular naming format,or coding style,etc
    Thanks
    Rohit

    Hi Rohit,
    This is a pretty huge subject. To start, I'd say you need to talk to the business. Talk to the users of the database, cause they are your customers. Get a clear understanding of the most critical business processes. Start with the most critical ones, and get performance profiles. How long do they take to run? What's the customer's perception of the process performance? If it's acceptable, move on to the next one. If it's not acceptable, you'll need to dig deeper. Look at each piece of the process. Where is the most time being spent? Can it be improved? This step will be a combination of process improvement and setting the correct expectation. Often, the user doesn't really know what is realistic in terms of performance. If you have a 2 billion row table that needs to get full table scanned, expecting a response time of a few seconds just simply isn't going to happen. You need to clearly convey that to the customer. On the other hand, at the same time, you should be on the lookout for real improvements. If you can re-write the SQL or add an index, and eliminate the FTS on that 2 billion row table, maybe a response time of a few seconds is actually realistic.
    It's all about understanding the system, and understanding the customer's needs, and how they intersect. It will be an iterative process, and will take some time.
    As to "best practices", I'm not a fan of them. Understand your system, understand your customer's needs, and understand how Oracle actually works. If you can master that, you'll be unstoppable. Note that many, many people, much smarter people than me, have spent a lifetime trying to master those three points... :-)
    Good luck with your new job!
    -Mark

  • Looking for a better graphic card. Need feedback and suggestion

    I'm looking to get a different graphic card but I'm not sure really what to buy,
    These are my computer specs 
    Computer: Gateway Gt5228 Media center edition
    OS: Windows Xp
     Current graphic card: NVIDIA GeForce 6100 PCI Express Slot avaliable
    I was wondering what would be a good graphic card that is a good significant upgrade.  I'm looking for one that has a significant increase over what I have right now, it doesn't necessarily have to be the best out there.
    I want to be able to play a game call Diablo 3 
    These are the High and low Performance, that the game will run with.
     Supported - High PerformanceNVIDIA AMD/ATI INTEL
    GeForce GTX 590
    Radeon HD 6990
    N/A
    GeForce GTX 580
    Radeon HD 6970
    GeForce GTX 570
    Radeon HD 6950
    GeForce GTX 560 ti
    Radeon HD 6870
    GeForce GTX 550 ti
    Radeon HD 6850
    GeForce GTX 480
    Radeon HD 6790
    GeForce GTX 470
    Radeon HD 6770
    GeForce GTX 465
    Radeon HD 6750
    GeForce GTX 460
    Radeon HD 5970
    GeForce GTS 360M
    Radeon HD 5870
    GeForce GTX 295
    Radeon HD 5850
    GeForce GTX 285
    Radeon HD 5830
    Geforce GTX 280
    Radeon HD 5770
    Geforce GTX 280M
    Radeon HD 5750
    GeForce GTX 275
    Radeon HD 4870
    GeForce GTX 260
    Radeon HD 4870
    Quadro FX 5800
    Radeon HD 4850
    Radeon HD 4800
    FirePro 3D V8750
    FirePro 3D V8700
    FireStream 9370
    Firestream 9350
    FireStream 9270
    FireStream 9250
     Supported - Low PerformanceNVIDIA AMD/ATI INTEL
    GeForce 9500 GT
    Radeon HD 3650 AGP
    HD Graphics 4000
    GeForce 9400 GT
    Radeon HD 3650
    HD Graphics 3000
    GeForce 9300 GS
    Radeon HD 3600
    HD Graphics 2000/1000
    GeForce 8800 GS
    Radeon HD 3470                   
    GeForce 8600 GT
    Radeon HD 3450
    GeForce 8600 GTS
    Radeon HD 3430
    GeForce 8500 GT
    Radeon HD 3200
    GeForce 8400 GS
    Radeon HD 3100
    GeForce 8400
    Radeon HD 2600 XT AGP
    GeForce 8300 GS
    Radeon HD 2600 XT
    GeForce 8300
    Radeon HD 2400 Series
    GeForce 8200
    Radeon HD 2350
    GeForce 8100
    Radeon HD 2100
    GeForce 7950
    Mobility Radeon HD 4530
    GeForce 7900
    Mobility Radeon HD 4330
    GeForce 7900 GS
    Mobility Radeon HD 2600 XT
    GeForce 9500M GS
    Mobility Radeon HD 2600
    GeForce 9500M G
    Mobility Radeon HD 2600
    GeForce 9400M
    Mobility Radeon HD 2400 XT
    GeForce 8600M GT
    Mobility Radeon HD 2400
    GeForce Go 7900
    Mobility Radeon HD 2300
    GeForce Go 7800
    Mobility Radeon X2300
    Quadro FX 5500
    Radeon X1950 Series
    Quadro FX 4500
    Radeon E2400
    Quadro FX 4000
    FirePro 3D V7750
    Quadro FX 3500
    FirePro 3D V5700
    Quadro FX 3450
    Any help would be greatly appreciated
    Which ones can i use with my computer but without the need to buy nothing else. 
    thank you
    -Geo

    Honestly I wouldn't spend too much trying to upgrade your computer. It has an aging dual core Athlon processor, and only 2GB of RAM. Even with the highest top of the line card, with that CPU/RAM setup, your computer is probably going to struggle to run it.
    Hate to be the bearer of bad news.
    If you like my post, or solution to your issue/question, go ahead and click on the little star by my name and/or accept the post as the Solution. It makes me happy.
    I'm NOT an employee of Best Buy, or Geek Squad, though I did work as an Agent for a year 5 years ago. None of my posts are to be taken as the official stance that Best Buy will take on your situation. My advice is just that, advice.
    Unfortunately, that's the bad luck of any electronic, there's going to be bad Apples... wait that's a horrible pun.

  • Need Itunes sync suggestions - ATV Day 2

    Hello, I have tried to sync my itunes to my ATV. Not all the songs/albums are sync (it seems it is sync very slowly). It is taking forever to sync. Is this normal? How long should it take (about 500 albums - about 4000 songs). Any suggestions on making it sync faster? I am using a Wifi connection from my MacBook. Thanks
    DAVE

    dsym wrote:
    Hello, I have tried to sync my itunes to my ATV. Not all the songs/albums are sync (it seems it is sync very slowly). It is taking forever to sync. Is this normal? How long should it take (about 500 albums - about 4000 songs).
    I think I can answer this one.
    I take it your single first of all.
    Ok Dave, when it's done loading, you'll be married and have 2 kids.
    You might have come across my post 'Day 2 w/ATV'
    I learned a few things in the past 30 hours. My ATV is 32Gb.
    Your model must be 40Tb.
    Just to fill 32Gb took all of today constantly re-selecting content to remove to make space.
    You might try an ethernet connection between the 2 devices to see if data can process faster.
    I haven''t tried to confirm, but in theory it's supposed to work.
    Any suggestions on making it sync faster? I am using a Wifi connection from my MacBook. Thanks DAVE

  • Need music player suggestion for E63

    Any one can suggest a music player, free or non-freeware.
    it should have an equalizer and good decode quality
    thanks

    here u have ur desired app try it..
    PowerMP3
    ¨Arm yourself because no one else here will save you¨

Maybe you are looking for