Urgent: regarding output display problem

hi,
i had made dis report for displaying changes made to a purticular material in a purticular month.
d poblem is dis when i check a materail in MM04 which use to display a change made to a single material and when i check further that what changes had made it shows 4 changes but when i check my report it shows only 2 changes had been made.
plzz help me out as help will be definately rewarded.
last time i asked in dis forum not much help was provided.
here is d code:-
REPORT ZNEW01 no standard page heading LINE-SIZE 310.
TABLES: CDHDR,CDPOS.
DATA: BEGIN OF ITAB OCCURS 0,
OBJECTCLAS LIKE CDHDR-OBJECTCLAS,
OBJECTID LIKE CDHDR-OBJECTID,
USERNAME LIKE CDHDR-USERNAME,
UDATE LIKE CDHDR-UDATE,
UTIME LIKE CDHDR-UTIME,
TCODE LIKE CDHDR-TCODE,
CHANGE_IND LIKE CDHDR-CHANGE_IND,
END OF ITAB.
DATA: BEGIN OF ITAB1 OCCURS 0,
OBJECTCLAS LIKE CDPOS-OBJECTCLAS,
OBJECTID LIKE CDPOS-OBJECTID,
FNAME LIKE CDPOS-FNAME,
CHNGIND LIKE CDPOS-CHNGIND,
VALUE_OLD LIKE CDPOS-VALUE_OLD,
VALUE_NEW LIKE CDPOS-VALUE_NEW,
END OF ITAB1.
SELECT-OPTIONS: M_DATE FOR CDHDR-UDATE,
U_ID FOR CDHDR-CHANGE_IND.
SELECT BOBJECTCLAS BOBJECTID BUSERNAME BUDATE BUTIME BTCODE B~CHANGE_IND INTO
TABLE ITAB
FROM CDHDR AS B WHERE B~OBJECTCLAS = 'MATERIAL' AND UDATE IN M_DATE AND CHANGE_IND IN U_ID.
Check not itab[] is initial.
SELECT OBJECTCLAS OBJECTID FNAME CHNGIND VALUE_OLD VALUE_NEW INTO TABLE
ITAB1 FROM CDPOS
FOR ALL ENTRIES IN ITAB WHERE OBJECTID = itab-objectid and objectclas = ITAB-OBJECTCLAS .
*SELECT OBJECTCLAS OBJECTID FNAME CHNGIND VALUE_OLD VALUE_NEW INTO TABLE
*ITAB1 FROM CDPOS
*WHERE OBJECTID = itab-objectid and objectclas = ITAB-OBJECTCLAS .
ULINE.
LOOP AT ITAB.
WRITE:/ ITAB-OBJECTID,22 ITAB-USERNAME,ITAB-UDATE,ITAB-UTIME,ITAB-TCODE.
LOOP AT ITAB1 WHERE OBJECTCLAS = ITAB-OBJECTCLAS AND OBJECTID = ITAB-OBJECTID.
WRITE: 60 ITAB1-FNAME,ITAB1-CHNGIND,ITAB1-VALUE_OLD(40),ITAB1-VALUE_NEW(40).
ENDLOOP.
ENDLOOP.

hey ric
i have tested ur code
i think u have got a problem with the selection criteria "date"
because i have cross checked the code you have developed and through the transaction
it is impeccably right
i think the selection of date in your report should be the range of dates in which they have been modfiied/changed
if satisfied plz do reward
regards
samarendra

Similar Messages

  • Output display problem....Urgent.!!!

    Hello friends.
    I have a field which has a numeric o?p.
    But as the user specification the result should be such that if
    a) the data is 100.0000 then it sud display 100
    b)the data is 1.600 then it sud display 1.6
    c)the data is .1000 then it sud display .1 only.
    This data is for only one field not 3 seperate fileds.
    So please suggest me some way out.
    Regards,
    Shweta

    Hi ,
    Execute the logic below for all the values in ur requirement and see if this logic is working for you.I hope this will do .
    You have to convert to characters to make this functionality work .
    Im expecting some more logics from SDN members Lets wait and see .
    data : v1 type p decimals 4.
    data : rem(6) type c.
    data : v3(13) type c.
    data : val1(4) type c.
    data : v4(17) type c.
    v1 = '100.0000'.       "give ur inputs here
    v3 = trunc( v1 ).
    rem = frac( v1 ).
    rem = rem * 100.
    val1 = rem.
    condense  val1 no-gaps.
    condense  v3 no-gaps.
    if val1 is not initial.
    concatenate v3 val1 into v4 separated by '.' .
    else.
    v4 = v3.
    endif.
    write:/ v4 no-zero.
    Regards,
    Vijay.

  • Regarding Subform display problem(URGENT)

    Hi Experts,
    I have a requirement......I am passing 3 tables from interface to form layout...I want to display data from these tables to different subforms based on some condition
    for ex...........
    table T1 passing to subform S1
    table T2 passing to subform S2
    table T3 passing to subform S3
    My requirement is these subform should be display only based on some condition like if some value is there in table T1 then only S1 subform should be display otherwise not.
    Please suggest me what script i will write for this.
    Regards
    Gaurav

    Hi,
    You have to write in form calc under form ready event.
    As of now, i dont have any system to check.You can check any standard forms like vendor statement / customer statement which have page totals.
    for example, drag the S1 subform into one more sumforn with flow content say SS1.Write the below (similar) code.
    // get total number of records
    Var record_count = $.Table1.data.all.length
    Var flag
    Var value_check = '222'
    For I = 0 upto ( record_count - 1 ) step 1 do
    if $.Table1.data<i>.field1 = = value_check
    flag = 'X'
    endif
    Endfor
    if flag = = 'X'.
    $.S1.presence = "hidden"
    endif
    Please check the syntax.
    pavan meda

  • Output display problem in alignment

    i am displaying vendor wise purchase register details in my output  i have many line items per each vendor.
    i want to display vendor wise line items.
    suppose AFTON CHEMICALS is coming 10 times in the output i want to display this  with all line items.
    example..
    NAME                           AMOUNT  BILLNO
    AFTON CHEMICALS       10000      AS105
    MUMBAI
    400078
    AFTON CHEMICALS       20000      AS106
    MUMBAI
    400078
    AFTON CHEMICALS       30000      AS107
    MUMBAI
    400078
    AFTON CHEMICALS       40000      AS108
    MUMBAI
    400078
    AFTON CHEMICALS       50000      AS109
    MUMBAI
    400078
    but now i am getting  output  as below.
    AFTON CHEMICALS      
    MUMBAI                        
    400078                         
                                         10000      AS105
                                         20000     AS106
                                         30000      AS107
                                         40000      AS108
                                         50000      AS109
    I want to display above  output as below
    AFTON CHEMICALS       10000      AS105
    MUMBAI                         20000     AS106
    400078                           30000      AS107
                                         40000      AS108
                                         50000      AS109
    i have written code as following
    loop at output.
    on change of output-name1.
    write:/output-name1,
           /output-name2,
          /output-ort01,
          /output-pstlz.
    endon.
    write:/ output-amout, output-billno.
    Pls suggest me how to display my line items infront of the name1 as i said above.
    Pls suggest me its very urgent.

    Venkat rao,
    Check the sample program for your case. It solves your problem
    REPORT zvenkat_test2.
    DATA:
          BEGIN OF itab OCCURS 0,
             name1 TYPE char25,
             name2 TYPE char25,
             ort01 TYPE char25,
             pstlz TYPE char25,
             amt   TYPE p0008-bet01,
             billno TYPE i,
           END OF itab.
    DO 10 TIMES.
      itab-name1 = 'AFTON'.
      itab-name2 = 'CHEMICALS'.
      itab-ort01 = 'Bombay'.
      itab-pstlz = '400078'.
      itab-amt   = 2000 + sy-index.
      itab-billno = sy-index + 1.
      APPEND itab.
      CLEAR itab.
    ENDDO.
    LOOP AT itab .
      ON CHANGE OF itab-name1." OR itab-name2 OR itab-ort01 OR itab-pstlz.
        RESERVE 4 LINES. """Check this
        WRITE:/ itab-name1,
              / itab-name2,
              / itab-ort01,
              / itab-pstlz.
        BACK.                   """Check this
      ENDON.
      WRITE: /30 itab-amt, itab-billno.
    ENDLOOP.
    Regards,
    Venkat.O,

  • Urgent: reagrding output display preoblem

    Hi,
    I had made dis report adn when i execute it does not display the all changes made to a purticular material. As i made the report reagrding the changes made to a purticular material in a purticular period. here is d code:-
    REPORT ZNEW01 no standard page heading LINE-SIZE 310.
    TABLES: CDHDR,CDPOS.
    DATA: BEGIN OF ITAB OCCURS 0,
          OBJECTCLAS LIKE CDHDR-OBJECTCLAS,
          OBJECTID LIKE CDHDR-OBJECTID,
          USERNAME LIKE CDHDR-USERNAME,
          UDATE LIKE CDHDR-UDATE,
          UTIME LIKE CDHDR-UTIME,
          TCODE LIKE CDHDR-TCODE,
          CHANGE_IND LIKE CDHDR-CHANGE_IND,
          END OF ITAB.
    DATA: BEGIN OF ITAB1 OCCURS 0,
          OBJECTCLAS LIKE CDPOS-OBJECTCLAS,
          OBJECTID LIKE CDPOS-OBJECTID,
          FNAME LIKE CDPOS-FNAME,
          CHNGIND LIKE CDPOS-CHNGIND,
          VALUE_OLD LIKE CDPOS-VALUE_OLD,
          VALUE_NEW LIKE CDPOS-VALUE_NEW,
          END OF ITAB1.
    SELECT-OPTIONS: M_DATE FOR CDHDR-UDATE,
                    U_ID FOR CDHDR-CHANGE_IND.
    SELECT BOBJECTCLAS BOBJECTID BUSERNAME BUDATE BUTIME BTCODE B~CHANGE_IND INTO
    TABLE ITAB
    FROM CDHDR AS B WHERE B~OBJECTCLAS = 'MATERIAL' AND UDATE IN M_DATE AND CHANGE_IND IN U_ID.
    Check not itab[] is initial.
    SELECT OBJECTCLAS OBJECTID FNAME CHNGIND VALUE_OLD VALUE_NEW INTO TABLE
    ITAB1 FROM CDPOS
    FOR ALL ENTRIES IN ITAB WHERE OBJECTID = itab-objectid and objectclas = ITAB-OBJECTCLAS .
    *SELECT OBJECTCLAS OBJECTID FNAME CHNGIND VALUE_OLD VALUE_NEW INTO TABLE
    *ITAB1 FROM CDPOS
    *WHERE OBJECTID = itab-objectid and objectclas = ITAB-OBJECTCLAS .
    ULINE.
    LOOP AT ITAB.
    WRITE:/ ITAB-OBJECTID,22 ITAB-USERNAME,ITAB-UDATE,ITAB-UTIME,ITAB-TCODE.
    LOOP AT ITAB1 WHERE OBJECTCLAS = ITAB-OBJECTCLAS AND OBJECTID = ITAB-OBJECTID.
    WRITE: 60 ITAB1-FNAME,ITAB1-CHNGIND,ITAB1-VALUE_OLD(40),ITAB1-VALUE_NEW(40).
    ENDLOOP.
    ENDLOOP.
    PLZZ HELP ME OUT AS HELP WILL BE DEFINATELY REWRDED.
    Edited by: ric .s on Jan 31, 2008 9:11 AM

    hi,
    i give u example of that ,if there is material 10000014 and it had been changed by 3 differrent users whic is disaplaying correct but when i  click it in MM04 it also displays the correct value dat dese are changed by 3 persons but when i double click that for 1 st user it shows details that these are changes made but when i check my report it is not displaying allthe fields which had been changed.
    plzz help me out as it is really urgent.
    TABLES: CDHDR,CDPOS.
    DATA: BEGIN OF ITAB OCCURS 0,
          OBJECTCLAS LIKE CDHDR-OBJECTCLAS,
          OBJECTID LIKE CDHDR-OBJECTID,
          USERNAME LIKE CDHDR-USERNAME,
          UDATE LIKE CDHDR-UDATE,
          UTIME LIKE CDHDR-UTIME,
          TCODE LIKE CDHDR-TCODE,
          CHANGENR LIKE CDHDR-CHANGENR,
          END OF ITAB.
    DATA: BEGIN OF ITAB1 OCCURS 0,
          OBJECTCLAS LIKE CDPOS-OBJECTCLAS,
          OBJECTID LIKE CDPOS-OBJECTID,
          FNAME LIKE CDPOS-FNAME,
          CHNGIND LIKE CDPOS-CHNGIND,
          VALUE_OLD LIKE CDPOS-VALUE_OLD,
          VALUE_NEW LIKE CDPOS-VALUE_NEW,
          CHANGENR LIKE CDPOS-CHANGENR,
          END OF ITAB1.
    *SELECT-OPTIONS: M_DATE FOR CDHDR-UDATE.
                   U_ID FOR CDHDR-CHANGE_IND.
    SELECT BOBJECTCLAS BOBJECTID BUSERNAME BUDATE BUTIME BTCODE B~CHANGE_IND INTO
    TABLE ITAB
    FROM CDHDR AS B WHERE B~OBJECTCLAS = 'MATERIAL'.
    AND UDATE IN M_DATE.
    AND CHANGE_IND IN U_ID.
    Check not itab[] is initial.
    SELECT OBJECTCLAS OBJECTID FNAME CHNGIND VALUE_OLD VALUE_NEW CHANGENR INTO TABLE
    ITAB1 FROM CDPOS
    FOR ALL ENTRIES IN ITAB WHERE OBJECTID = itab-objectid AND objectclas = ITAB-OBJECTCLAS.
    *SELECT OBJECTCLAS OBJECTID FNAME CHNGIND VALUE_OLD VALUE_NEW INTO TABLE
    *ITAB1 FROM CDPOS
    *WHERE OBJECTID = itab-objectid and objectclas = ITAB-OBJECTCLAS .
    ULINE.
    LOOP AT ITAB.
    WRITE:/ ITAB-OBJECTID,22 ITAB-USERNAME,ITAB-UDATE,ITAB-UTIME,ITAB-TCODE.
    LOOP AT ITAB1 WHERE OBJECTCLAS = ITAB-OBJECTCLAS AND OBJECTID = ITAB-OBJECTID AND CHANGENR = ITAB-CHANGENR.
    WRITE: 60 ITAB1-FNAME,ITAB1-CHNGIND,ITAB1-VALUE_OLD(40),ITAB1-VALUE_NEW(40).
    ENDLOOP.
    ENDLOOP.
    DATA: BEGIN OF ITAB OCCURS 0,
          MATNR LIKE MSTA-MATNR,
          LAEDA LIKE MSTA-LAEDA,
          AENAM LIKE MSTA-AENAM,
          STATM LIKE MSTA-STATM,
          WERKS LIKE MSTA-WERKS,
          PSTAT LIKE MARA-PSTAT,
          END OF ITAB.
          SELECT AMATNR ALAEDA AAENAM ASTATM AWERKS BPSTAT INTO TABLE ITAB
          FROM MSTA AS A INNER JOIN MARA AS B ON BMATNR = AMATNR.
          LOOP AT ITAB.
          WRITE: / ITAB-MATNR,ITAB-LAEDA,ITAB-AENAM,ITAB-STATM,ITAB-WERKS.
          ENDLOOP.
    Edited by: ric .s on Jan 31, 2008 10:59 AM

  • Report output display problem

    I developed purchase register for vendor wise when i am displaying out put it is taking 4 lines gap for each vendor.
    my output is coming as below.
    Afton chemicals  100020  01.2.2008
    sector 6             10021   02.2.2008
    Mumbai.
    here it is taking 4 line space
    indian additives  123456  09.02.2008
    sector 20           124567  10.02.3008
    newdelhi
    here it is taking 4 lines space
    abatap chemicals  456789 12.03.2008
    deonar                  123456 13.03.2008
    mumbai              
    again 4 lines space it is taking.
    i have given line-count 10.
    in my pogram i have used with in loops
    reserved 8 lines and back statement.
    how to reduce space between each vendor.
    i written code as ..
    report puchase order line-count 10.
    loop at output.
    onchange of output-name1.
    reserved 8 lines.
    write: output-date , output-amount.
    back.
    endon.
    write: output-billno.

    Hi,
    the reason for your program behaviour is the combination of reserve 8 lines. and the back. statement You could either reduce the number of 8 lines, try to do without back or use a simple skip.
    Rgds.
    Roman Weise

  • URGENT: REGARDING DATE DISPLAY IN REPORT

    hi,
    i am making a report in which i have to display that these are the persons who had released the requsitions at these dates,i am able to display the persons who had released the requsitions but i am not able to display the dates on which they had released the requsitions.
    if any body who  will provide me help for this solution he or she will be defiantely rewarded...

    hi ric,
    i also tested and it gave this o/p.
    28.11.2007                                                                               
    PROGRAM FOR TESTING                                                                               
    1
    PUR.REQ   DATE    REQ.TYPE   1ST APPROVAL  2ND APPROVAL  3RD APPROVAL
    PRESON       DATE      PERSON      DATE     PERSON     DATE
    10009603   19.07.2005 NB   A1             19.07.2005
    10010046   08.03.2006 NB   R1 R2          08.03.2006
    10010115   27.03.2006 NB   EX             27.03.2006
    10010116   27.03.2006 NB   EX             27.03.2006
    10010827   22.05.2006 NB   G1 G2          22.05.2006
    i think it is right...
    what else you need to display?

  • Urgent: regarding insert query problem

    i have a one table say "item_master_old" its structure is like
    item_master_old (item_name, item_rate, item_qty, item_desc)
    second table say "item_master" its structure is like
    item_master(id, item_name, item_rate, item_qty, item_desc)
    i want to insert item_master_old values in item_master using the following insert query :
    insert into item_master ( (select nvl( max(id), 0) + 1 from item_master ),
    item_name,
    item_rate,
    item_qty,
    item_desc
    from
    item_master_old)
    but i update the id column with 1 in all column but i want the max(id) + 1
    how it can be possible ?
    Regards
    s

    try this!
    insert into item_master
    select (select nvl(max(id),0) from item_master)+rownum,
    item_name,  item_rate, item_qty, item_desc
    from item_master_old;
    "Not tested"Message was edited by:
    Jameel

  • URGENT. JCombobox display problem PLEASE HELP.

    I have a jcombobox that i am populating with data. What I want to be able to do is this: When the user selects an item from the popup, I want to display the text in the combobox as abbreviated. Example:
    AL - Alabama ( this would be an option in the popup list)
    if I select this option i want the combo box only to display AL
    I've tried many methods to get this work work but nothing seems to be working. Can someone please help

    never say die,
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.util.*;
    public class DoTheComboBoxThing extends JFrame {
          public DoTheComboBoxThing() {
          initCompponents();
          public void initCompponents() {
          jcb1 = new JComboBox(states);
          jcb2 = new JComboBox(state_ab);
          jp = new JPanel();
          jp.add(jcb1);
          jp.add(jcb2);
          getContentPane().add(jp, BorderLayout.CENTER);
          addWindowListener(new java.awt.event.WindowAdapter() {
                public void windowClosing(java.awt.event.WindowEvent we) {
                   exitForm(we);
          jcb1.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(ActionEvent ae) {
                   jcb1ActionPerformed(ae);
          pack();
          public void exitForm(WindowEvent we) {
          System.exit(0);
          public void jcb1ActionPerformed(ActionEvent ae) {
          jcb2.setSelectedIndex(jcb1.getSelectedIndex());
          jcb1.setEditable( true );
          StringTokenizer st = new StringTokenizer( (String) jcb1.getSelectedItem(), " " );
          ( (JTextField) jcb1.getEditor().getEditorComponent() ).setEditable( true );
          ( (JTextField) jcb1.getEditor().getEditorComponent() ).setText( st.nextToken() );
          ( (JTextField) jcb1.getEditor().getEditorComponent() ).setEditable( false );
          public static void main(String [] args) {
          DoTheComboBoxThing doThe = new DoTheComboBoxThing();
          doThe.show();
          JPanel jp;
          JComboBox jcb1;
          JComboBox jcb2;
          String[] states = {"AL - Alabama", "CT - Connecticut", "NY - New York", "SATW - Sleeping at the wheel"};
          String[] state_ab = {"AL","CT","NY","SATW"};
          }

  • Display problem in my hp pavilion -15e015tx the screen blinks and get freeze for a second

    i am using hp pavilion 15-e015tx running window 8 i had complained on 18 oct 2014 regarding the display problem. my case id is 4739018980. till now the issuse is not solved. the engineer came , checked the laptop and said quotation will be send within few days and tookaway his service charges Rs.1400. Still waiting for the quotation .every time i call in hp support service they tell they will send quotation the same day but there is no response. pls send the quotatiom as soon as possible. i am feedup calling hp support care now.
    "very bad support service"
    "3rd class customer service"

    Hi @Poo0507 ,
    I just sent you a private message. If you are not sure how to check your forum messages this post, has instructions.
    Please click “Accept as Solution ” if you feel my post solved your issue.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Thank you,
    BHK6
    I work on behalf of HP

  • Problem In report output display when i run in the background

    Hi,
    In a classical report i am printing around 17 fields  the width of the report out put is around 800 characters.
    If i run  the report in the  fore ground it running perfectly. But the thing is when i give large selection is it GETTING ' TIMED OUT ' as it is running more than an Hour.
    so i wanted to run it in the back ground to avoid TIME OUT problems.
    But when i run in the backgroud   i am not getting  full  out put in the SPOOL request(SIZE of the report output may causing the problem) .
    Pls come up with some solutions
    Thanks in advance

    Try increasing the spool length..
    Refer this link for doing so.
    Spool List output display > 255 char when the rpt is run in Background
    Thanks
    mahesh

  • Hello to all: My iMac has developed a video display problem. It displays everything in cartoon like colors - purple, green, blue. Can this be repaired? Is there a way to output to a different monitor? Thanks in advance!  isplays

    Hello -
    My iMac has developed a video display problem. Everything now appears in a strange, cartoonish way. Purples, greens, blues. Can this be fixed, and if so, any idea how much it might cost? Also, could I output to a seperate monitor? I plan to replace the unit , but cannot right now. Thanks!

    Go to System Preferences > Universal Access > Seeing.
    In the Display area, reset it to "Black on white" by clicking that checkbox.
    You can also reset it by pressing Command-Option-Control-8

  • Urgent :- Sending output to SAP User's inbox as Excel Attachment.

    Hi,
    This is urgent requirement
    Requirement Description in breif :-
    1.I have a report and but when run in background, it should create an excel file and should be sent as attachment to sap inbox of the same user who is executing the report.
    2.I have tried all most all function modules. the limitations were some of the F.M are not supported in background mode (which the sap it self uses) And I could able to send data  to excel excel file only upto 255 chars per record. i.e these F.M's are allowing me to send a internal table but every record of 255 chars only.
    3.Which is not sufficient to send my ITAB contents. and contents after 255 are truncating.
    Sending output of report in Excel Format ,in Background

    Hi srinivas,
    check this thread
    Convert output display to Excel file and Email to a set of users
    Regards,
    Raj

  • Another dual display problem - GeForce FX 5200

    I've seen lots of questions about dual display problem, situation when trying to connect two non-apple vga displays to your graphic card.
    I have GeForce FX 5200 graphic card, with 2 display output's. And two DELL 17" vga LCD displays.
    I manage to connect 1 display regulary with dvi to vga converter, but for other display I tried several difrent converters ADC to DVI to VGA, and it just did NOT work.
    G5 could see other display in display settings, in arrange option I coud see two identical displays, but I don't get anu picture (desktop) on other display???
    Is it problem with output's on my graphic card (Gforce FX 5200), could it be soloved with some ADC to VGA converter?
    P.S. Dr. Bott ADC VGA Extractor is not compatible with GeForce FX 5200????
    G5 dual 2.1Ghz   Mac OS X (10.3.4)  

    I've seen lots of questions about dual display
    problem, situation when trying to connect two
    non-apple vga displays to your graphic card.
    I have GeForce FX 5200 graphic card, with 2 display
    output's. And two DELL 17" vga LCD displays.
    I manage to connect 1 display regulary with dvi to
    vga converter, but for other display I tried several
    difrent converters ADC to DVI to VGA, and it just did
    NOT work.
    This won't work if the ADC to DVI adapter is not passing through the analog signals needed for VGA.
    G5 could see other display in display settings, in
    arrange option I coud see two identical displays, but
    I don't get anu picture (desktop) on other
    display???
    Is it problem with output's on my graphic card
    (Gforce FX 5200), could it be soloved with some ADC
    to VGA converter?
    Yes.
    P.S. Dr. Bott ADC VGA Extractor is not compatible
    with GeForce FX 5200????
    It should work. On Dr. Botts web-site it says:
    "VGA Extractor is compatible with any video card with an ADC port in a PowerMac G5"

  • Ideacentre B320 display problem

    I'm suffering from a display problem, and cannot figure if it's a software or hardware issue... I'm on Win7 64bit. Here are the symptoms:
    1) For a while now, intermittently the screen would go grey (or some sort of a messed up pattern of rgb pixels) and I would have to power down forcefully. The frequency of this has gone up very much in the recent weeks
    2) When the machine freezes, I can still hear the music playing, and Windows continues to do whatever it was doing before
    3) Recently (I'm guessing after a Windows update), I wasn't able to boot into normal mode anymore. It would show the Windows splash screen, then before the login screen appears it would just go black and freeze. Leaving it for a long time doesn't lead to recovery
    4) To try and fix this, I've updated the ATI driver to the latest version, which didn't work so progressively tried every version between the11.6 and 10.3 (4?) which was the default when the machine was purchased. No luck there. I've also flashed the bios and that didn't help either
    5) I can boot into safe mode, so I disabled amdkmdap using sysinternal's autoruns.exe, which meant that I can boot into normal mode, but it woud fall back onto Windows' vga driver (1400x1050 only!)
    6) Now, even in the low res mode, almost daily the grey screen freezing would happen and I would have to reboot. Tapping the power button allows the shutdown dialog to come up (I'm guessing), and pressing enter would shut down the machine then.
    There's an awful lot of posts on the internet regarding people having issues with ATI HD6450 and similar category cards, some of which sound similar to my case. They too experienced the freezing problem and reverting or upgrading the drivers had no effect (many even reinstalled windows completely). It sounds like though, the problem is software in origin at a guess.
    On the other hand, the machine is now 3-4 years old and I could imagine that the GPU or graphics memory might have suffered wear and tear -- emailing Lenovo support took a week to get a response, the only thing they asked was whether my warranty is still active (after that it's been a complete silence) are they usually this terrible?
    The last thing is, when the problem first occurred I booted using a linux live CD and it was all fine, at full resolution graphics. I haven't repeated this experiment since it takes quite a while to boot from a CD... but suggested that the hardware is intact. In fact, by messing about with the drivers I was able to boot into Windows normal mode and operate for 1-2 days, after which the grey freeze happened again. I haven't been able to get back into that since.
    Here is my question: Is there a way to find out whether it's software or hardware that's at fault? If it turns out to be hardware, what are my options at replacements? The GPU is soldered onto the motherboard, so do I have to replace the whole thing? If it's a software issue, would restoring to factory default state fix this issue, given that an unknown update could cause the same issue at any time... This is the last time I will buy an AIO without removable everything. 

    Welcome to the Lenovo Community !
    Probably a good test of the hardware is use the Linux Live CD that you used earlier.   If the graphics are still good when using the Live CD then your monitor and GPU are fine. 
    If the hardware checks out Ok then I suspect you have a driver problem.  Try using a driver cleaner to fully uninstall the ATI driver since bit and pieces left over from previous driver installs can cause problems.  The link below is for a free and highly recommended utility for cleaning the system of the graphic drivers.  After the clean up I would try installing the original driver that came with your system.
    http://www.guru3d.com/content-page/guru3d-driver-sweeper.html
    Owner & Operator of the following:
    ● Lenovo Ideapad Z570 w/ Win 7 & Win 8.1 Dual Boot ● Lenovo Yoga 3 Pro w/ Windows 8.1 ● Toshiba A75-S206 w/ Win 7
    ● IBM Thinkpad T-23 w/ Win XP ● IBM Thinkpad T-22 w/ Win XP • As well as multiple desktops dual/triple booting XP, Vista and Win 7.
    ★ Find a post helpful? Thank that member by clicking on the ☆Star☆ to the left awarding them a Kudo.
    ★ Posting a problem and a reply is helpful and it answers your question, please mark it as an "Accepted Solution"
    ★ I'm not a Lenovo employee, just a volunteer geek who likes to help folks. Enjoy your time here, pay it forward by helping others !
    ★ Sorry, I don't answer questions via Private Messages. Posting in the appropriate forum is the best way to get assistance.

Maybe you are looking for

  • IPhoto editing problems...please help!

    Hi! I have iPhoto on a Mac bought in 2008. Recently, it's started not to save all the edits to a photo, especially the 'reduce noise' which I use a lot for portraits. It also fails to retain some edits when I export or email a photo. Help me! Thank y

  • What is the filed in ORDRSP idoc to stop changes in PO?

    Hi, SO gets created from PO and when ORDRSP idoc comes from SO to PO, there should be filed in the IDoc that will not allow to change PO anymore when ORDRSP is received to PO. Could anyone let me know the filed in IDoc and where in that will be in th

  • I cannot find the new thread button to ask a question

    I just installed Firefox and need help but but cannot get to the New Thread button option to ask a question. How do I get there?

  • Playing the Ipod in the car.

    I have the video Ipod, 60GB, and the Road trip, car converter. I cannot get the Ipod to play in the car. Everything seems to be working fine, I plug the converter into the cigarette lighter, I put the radio station and the converter on the same stati

  • BB Q10 SQN-100-1 wont boot up

    Hi to all,  I have a big problem with  my BB and need some help.  It has been  5 days since my device has been trying to reboot but it does not start.  No software upgrade, only BB apps on mobile, this happened by switching device off (last time cras