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,

Similar Messages

  • 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

  • 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

  • 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.

  • 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

  • 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"

  • Display problem after RAM Upgrade to MS6712

    Hi there,
    after a RAM upgrade (512mb to 3GB) my PC has developed a display problem. The graphics are slow / rippled and video playback is very poor. In device manager no "display adapters" are present and there is also an error mesage referring to the VIA CPU to AGP2/AGP3.0 controller not having enough free resources to run due to a conflisct with VGAsave? I've downloaded the latest VIA chipset drivers to no effect?
    System info: MS6712 MB, AMD Athlon 1.25GHZ, XP SP3.0

    OK, here's the info on my PSU;
    It's a Powerman FSP250-60GTU(PF). Input: 230V - 5A, 50Hz. Max Output: 250W
    While I had the case open I took out 2 of the RAM modules and without making any other changes everything appeared to work fine with just the 1GB, so I tried putting 1 more back in to take it to 2GB and again all seems fine? Does this indeed point to my PSU then? If so and it works fine with 2GB should I be thankfull for a 512mb to 2GB upgrade and send the 3rd module back to Crucial??
    Before I posted this thread I did run a memtest from Memtest86+ with all three modules installed and it came up with NO problems?
    Re Henry's post, I searched using the format of the part no on the RAM modules themselves i.e. M368L2923FLN-CB3 and it took me here:
    http://www.samsung.com/global/business/semiconductor/productListNonflexTable.do?fmly_id=118&sht_id=1
    Other info on printed the modules themselves: 1GB DDR PC2700 CL2.5
    According to Everest my CPU temp (with 2GB installed) is: 43 degrees (MOBO 30 degrees and HD 42 degrees) - do these seem normal?

  • Reporting display problems to Apple

    If you are having display problems, you should not be waiting for others to complain or just sit there stewing in your juices. Call AppleCare and tell them what's going on. People in IT have told me that one of the most frustrating things that they encounter are customers who do not complain about real problems. If they don't complain, no one knows that there's a problem, and the customer just gets depressed or hostile for mysterious reasons. You may discover that someone has been doing some kind of awkward work-around for a software problem or bug, and when you ask then how long that has been going on, they may say 5 years!
    I just called AppleCare earlier today and carefully explained the symptoms of my screen and why it bothered me. I tried to explain that the gradient problem is triggering alarm bells in my brain that there must be some kind of vision problem. The guy on the other end was very patient, asked questions, and really seemed to listen. He admitted to me that they need to know this stuff. I finally had to get off the phone because of a lightning storm, but I got a case number to continue the conversation later this weekend.

    Let us know what happens! I've also been on the phone with Apple -- three times in the past week -- and I've gotten two different people to actually admit, in a sort of weak way, that they're actually aware of the problem. They want my machine to go to "repair", since I'm past the 14 days, first suggesting that I bring it to the Apple Store far from my neighborhood, and then telling me that I can get a site visit after complaining that I hardly have time to get there (totally true) and I'm small and the thing is difficult for me to carry (totally true), although I have to wait for my extended AppleCare, which I purchased yesterday, to arrive in the mail. One of them told me that she thought she's heard of some of these problems actually being fixed. We'll see.
    Two of them have suggested that I try an archive/reinstall, just to confirm that it's not a software problem, although both admitted that it was probably a hardware problem anyway. Has anyone tried that? Has anyone wondered what that original iMac update 1.0 actually did?
    I've been trying to emphasize my theory about a DC offset on the LCD inverter output, and supposedly they are taking notes, but I wonder if any of that actually makes it up to the engineers. I'm hardly a crank. I have science, very advanced math, and IT backgrounds, and did a lot of tinkering with electronics as a kid. I really wish I could talk directly to the engineers.
    And speaking from a long IT background, I can say that one of the most dangerous customer relations things you can do is deny that a real problem exists. That tactic always backfires with a vengeance.

  • Delete modify in itab output display

    hi,
    i am create a query for delete data from database table by using an internal table i am delete data from DB table but a problem are come as in output display
    i am showing  the
    NUMBER OF ENTRIES ARE DELETE FROM TABLE: 2
    NUMBER OF ENTRIES ARE REMAIN IN TABLE AFTER DELETEION:
    seletion screen contains 
    SELECT-OPTIONS: s_ordid FOR zapolp22-ordid,   "APO order id
                                s_matnr FOR zapolp22-matnr,   "Material Number
                     s_locto FOR zapolp22-locto.   "APO Destination location
    PARAMETERS: p_days TYPE i. "Number of days
    the problem are as:
    if i am given only P-days parameter value 3
    than it works as fine
    showing output right as 2 rows are deleted
    and 8 rows are remains in table
    if i given all fields fill up in selection screen
    as s_ordid----->4516 to 4517
        s_matnr---->85503 to 85505
       s_locto------> m100 to m101
    p_days----> 2
    then i get output display as
    number of entries  are deleted   2
    number of entries are remain in table  0.
    but the 2 rows are deleted from DB table and 8 rows are remain in table but it not show the 8 rows on display screen it shows zero.
    my code is as:
    DATA:  lv_count  TYPE i,
           lv_count1 TYPE i.
    DATA: lv_date TYPE sy-datum.
    SELECT mandt
           ordid
           schedid
           matnr
           locto
           lfmng
           lfdat
           locfr
           rqmng
           rqdat AS lv_date
           prckz
           blkstk
           oppdelqty
           zzapologmod
           zzflagurgent
           zzapottype
           zzndays_l_time
    FROM zapolp22 INTO TABLE lt_output
    WHERE ordid IN s_ordid  AND
           matnr IN s_matnr  AND
           locto IN s_locto.
    SORT lt_output[] BY rqdat.
    >Number OF Days to be Counted
    lv_date = sy-datum - p_days.
    LOOP AT lt_output.
      IF lt_output-rqdat LT lv_date.
        MOVE-CORRESPONDING lt_output TO lt_delete.
        APPEND lt_delete.
        lv_count = lv_count + 1.
      ELSE.
        lv_count1 = lv_count1 + 1.
      ENDIF.
    endloop.
    DELETE FROM zapolp22  WHERE rqdat LT lv_date AND
                                ordid IN s_ordid AND
                                matnr IN s_matnr AND
                                locto IN s_locto.
    IF sy-subrc = 0.
      WRITE:/25 'Number of entries deleted            :', lv_count.
      WRITE:/25 'Number of entries remaining          :', lv_count1.
    ELSEIF sy-subrc NE 0.
      WRITE:/ 'No data are selected for delete'.
    ENDIF.
    Tell me where in this code i do mistake.
    Thanks jayant.

    I don't know the contents of the table, but if you increase the number of restrictions in the SELECT statement, it will probably have lesser entries.
    Now, you are not really counting the total number of rows left in the table, but the total number of rows in the table that match the criterion.
    Basically, the first time (with lesser options) 10 rows are put into internal table, and 2 are deleted. So 8 are left.
    In the second time, only 4 rows are getting selected, of which 2 are deleted, and 2 are left in the internal table NOT in the database table. In the database table, more rows are left (because they never got selected into the itab)
    But if you want to count the total number of rows left in the DB, its better to count the number of rows in the end of the program with:
    SELECT COUNT(*) FROM dbtab INTO lv_integer.
    This can be pretty slow if the table is huge.

  • Output display in alv

    Hi,
    i create a programm use alv but a problem occurs
    in my output display there is a quantity field KONV-KBETR
    o/p come as 100,00 (COMMA)
    but i want it come as 100.00 it come in decimal
    plz give me a solution for this.
    Thanks,
    ajay

    >
    ajay kumar wrote:
    > plz give me codes notation for this i am not use user settings.
    >
    > thanks
    > ajay
    Why not with User Settings?
    Else Press F1 on replace all occurances  and code.

  • Conclusions so far on the display problems?

    After reading thread after thread about the display problems this is what I understand:
    Most of the 20-inch Alu-iMacs seem to have problems? Not being able to show solid colours without a gradient from top to bottom is the biggest issue?
    "Alot" of the 24-inch Alu-Imacs have problems with a left to right gradient, often white to yellowish white.
    Apple is not admitting that the Alu-iMacs have general display problems. (Maybe due to too cheap display technique?)
    We don't know for sure if it is hardware or software related?
    Is wait and see the best practice for one who want to buy a new 20-inch Alu-iMac?
    /Krister

    What I'd like to know is why? Could the bottom lamp be getting more power than the top one from the inverter board?
    I received a lot of these for our labs and most of them (I haven't opened them all yet) have lower lamps that appear almost twice as bright at the top lamps... It's in the hardware, and I don't know what to do about it.
    So, where is the problem? Traditionally the lamps (usually two below and two above) are identical models, so could this be an inverter issue? Has anyone tried to get a voltage reading from the lamps to see how much output the inverter is giving them? (Not at all suggesting, just asking. I know what Apple would say if I asked people to go cracking their iMacs open.)
    Could the layer of glass in the LCD be refracting more light toward us in the bottom 2-3 inches and away from us for the top 2-3 inches?
    It's frustrating to experience, but worse to not even know what causes it. Because, to Apple engineering... What problem? There must be one bad LCD out there... and we all have it.
    Anyway, anyone who has any light to shed on the subject I'd love to hear it... (just add it to the top few inches of my display.)
    -John

  • Wierd lines on my display and frequent lock-ups w/ and w/o display problems

    When booting I sometimes get weird lines and blocks on my display (the GRAY Apple screen) and then it hangs, other times the computer will boot and run fine for 20-30 minutes and then the display goes wonkers with blocks and lines and the computer does not respond. The only way I can get it to boot is to reset the PRAM by letting it CHIME 3x and then occasionally it will boot without issue and run, while other times I still get the blocks and lines on the display.
    When I am able to get it to recover and re-boot after the lock-up and display problems and occasionally the box in the middle asking me to re-boot similar to a kernel panic the OPS gives me the option to REPORT the error and here is the error for others who would know more...
    Thank you in advance,
    Darren
    Interval Since Last Panic Report: 104960 sec
    Panics Since Last Report: 5
    Anonymous UUID: 7D1AEF43-7E19-4F58-A1E0-48FA992A2814
    Wed Nov 18 15:49:50 2009
    panic(cpu 0 caller 0x9cdb10): NVRM[0/1:0:0]: Read Error 0x00009410: CFG 0xffffffff 0xffffffff 0xd2000000, BAR0 0xd2000000 0x5d3e2000 0x084700a2, D0, P1/4
    Backtrace (CPU 0), Frame : Return Address (4 potential args on stack)
    0x5c99b7d8 : 0x21b2bd (0x5cf868 0x5c99b80c 0x223719 0x0)
    0x5c99b828 : 0x9cdb10 (0xbb7fec 0xc209c0 0xbc3660 0x0)
    0x5c99b8c8 : 0x147690d (0x8b5ac04 0x7edf004 0x9410 0xabd962)
    0x5c99b908 : 0x1534e6a (0x7edf004 0x9410 0x5c99b968 0x9)
    0x5c99b948 : 0xb51ca5 (0x7edf004 0x91ed004 0x0 0x0)
    0x5c99b968 : 0xac155b (0x91ed004 0x5c99baa4 0x0 0x0)
    0x5c99b9b8 : 0x145f290 (0x7edf004 0x3d0900 0x5c99baa4 0x0)
    0x5c99bad8 : 0xab2821 (0x7edf004 0x91cf004 0x815200c 0x200)
    0x5c99bb18 : 0xb1f172 (0x7edf004 0x91cf004 0xeb9bcc0 0xeb9bc04)
    0x5c99bbc8 : 0xb202db (0x7edf004 0x91f0404 0x0 0x0)
    0x5c99bc58 : 0x14bb7a3 (0x7edf004 0x91f0404 0x9 0x2)
    0x5c99bd68 : 0x14ed407 (0x7edf004 0x91cf404 0x0 0x0)
    0x5c99be98 : 0xad3934 (0x7edf004 0x91ca404 0x0 0x0)
    0x5c99bec8 : 0x9d61fb (0x7edf004 0x91ca404 0x0 0x0)
    0x5c99bf08 : 0x5491b5 (0x0 0x9499680 0x1 0x29c50a)
    0x5c99bf58 : 0x5481e6 (0x9499680 0x1 0x5c99bf88 0x547d9d)
    0x5c99bf88 : 0x548640 (0x8abaf00 0x7e9ecc0 0xe780850c 0x2a6e5f)
    0x5c99bfc8 : 0x29d68c (0x8abaf00 0x0 0x10 0x88bbfc4)
    Kernel Extensions in backtrace (with dependencies):
    com.apple.nvidia.nv50hal(6.0.6)@0x136b000->0x17f1fff
    dependency: com.apple.NVDAResman(6.0.6)@0x96f000
    com.apple.NVDAResman(6.0.6)@0x96f000->0xc21fff
    dependency: com.apple.iokit.IOPCIFamily(2.6)@0x932000
    dependency: com.apple.iokit.IONDRVSupport(2.0)@0x961000
    dependency: com.apple.iokit.IOGraphicsFamily(2.0)@0x943000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    10C540
    Kernel version:
    Darwin Kernel Version 10.2.0: Tue Nov 3 10:37:10 PST 2009; root:xnu-1486.2.11~1/RELEASE_I386
    System model name: MacBookPro3,1 (Mac-F4238BC8)
    System uptime in nanoseconds: 3788331456483
    unloaded kexts:
    com.apple.driver.AppleFileSystemDriver 2.0 (addr 0xf02000, size 0x12288) - last unloaded 94521475551
    loaded kexts:
    org.virtualbox.kext.VBoxNetAdp 2.2.2
    org.virtualbox.kext.VBoxNetFlt 2.2.2
    org.virtualbox.kext.VBoxUSB 2.2.2
    org.virtualbox.kext.VBoxDrv 2.2.2
    com.bresink.driver.BRESINKx86Monitoring 5.0
    com.pctools.iantivirus.kfs 1.0.1
    com.apple.driver.AppleHWSensor 1.9.2d0 - last loaded 31800108689
    com.apple.filesystems.ntfs 3.1
    com.apple.filesystems.autofs 2.1.0
    com.apple.driver.AppleHDA 1.7.9a4
    com.apple.driver.AirPort.Atheros 412.19.4
    com.apple.kext.AppleSMCLMU 1.4.5d1
    com.apple.driver.SMCMotionSensor 3.0.0d4
    com.apple.DontSteal_Mac_OSX 7.0.0
    com.apple.driver.AudioIPCDriver 1.1.2
    com.apple.driver.AppleIntelMeromProfile 19
    com.apple.driver.ACPISMCPlatformPlugin 4.0.1d0
    com.apple.driver.AppleLPC 1.4.9
    com.apple.driver.AppleBacklight 170.0.14
    com.apple.driver.AppleUpstreamUserClient 3.1.0
    com.apple.GeForce 6.0.6
    com.apple.driver.AppleUSBTrackpad 1.8.0b4
    com.apple.driver.AppleUSBTCKeyEventDriver 1.8.0b4
    com.apple.driver.AppleUSBTCKeyboard 1.8.0b4
    com.apple.iokit.SCSITaskUserClient 2.6.0
    com.apple.BootCache 31
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.iokit.IOAHCIBlockStorage 1.6.0
    com.apple.iokit.AppleYukon2 3.1.14b1
    com.apple.driver.AppleAHCIPort 2.0.1
    com.apple.driver.AppleSmartBatteryManager 160.0.0
    com.apple.driver.AppleIntelPIIXATA 2.5.0
    com.apple.driver.AppleUSBHub 3.8.4
    com.apple.driver.AppleFWOHCI 4.4.0
    com.apple.driver.AppleUSBEHCI 3.7.5
    com.apple.driver.AppleUSBUHCI 3.7.5
    com.apple.driver.AppleEFINVRAM 1.3.0
    com.apple.driver.AppleRTC 1.3
    com.apple.driver.AppleHPET 1.4
    com.apple.driver.AppleACPIButtons 1.3
    com.apple.driver.AppleSMBIOS 1.4
    com.apple.driver.AppleACPIEC 1.3
    com.apple.driver.AppleAPIC 1.4
    com.apple.security.sandbox 0
    com.apple.security.quarantine 0
    com.apple.nke.applicationfirewall 2.1.11
    com.apple.driver.AppleIntelCPUPowerManagementClient 96.0.0
    com.apple.driver.AppleIntelCPUPowerManagement 96.0.0
    com.apple.driver.DspFuncLib 1.7.9a4
    com.apple.driver.AppleProfileReadCounterAction 17
    com.apple.driver.AppleProfileTimestampAction 10
    com.apple.driver.AppleProfileThreadInfoAction 14
    com.apple.driver.AppleProfileRegisterStateAction 10
    com.apple.driver.AppleProfileKEventAction 10
    com.apple.driver.AppleProfileCallstackAction 20
    com.apple.iokit.IOFireWireIP 2.0.3
    com.apple.iokit.IO80211Family 310.6
    com.apple.iokit.IOSurface 73.0
    com.apple.iokit.IOBluetoothSerialManager 2.2.4f3
    com.apple.iokit.IOSerialFamily 10.0.3
    com.apple.iokit.IOAudioFamily 1.7.2fc1
    com.apple.kext.OSvKernDSPLib 1.3
    com.apple.driver.AppleHDAController 1.7.9a4
    com.apple.iokit.IOHDAFamily 1.7.9a4
    com.apple.iokit.AppleProfileFamily 41
    com.apple.driver.AppleSMC 3.0.1d2
    com.apple.driver.IOPlatformPluginFamily 4.0.1d0
    com.apple.nvidia.nv50hal 6.0.6
    com.apple.NVDAResman 6.0.6
    com.apple.iokit.IONDRVSupport 2.0
    com.apple.iokit.IOGraphicsFamily 2.0
    com.apple.driver.CSRUSBBluetoothHCIController 2.2.4f3
    com.apple.driver.AppleUSBBluetoothHCIController 2.2.4f3
    com.apple.iokit.IOBluetoothFamily 2.2.4f3
    com.apple.iokit.IOUSBHIDDriver 3.8.4
    com.apple.driver.AppleUSBMergeNub 3.8.5
    com.apple.driver.AppleUSBComposite 3.7.5
    com.apple.iokit.IOSCSIMultimediaCommandsDevice 2.6.0
    com.apple.iokit.IOBDStorageFamily 1.6
    com.apple.iokit.IODVDStorageFamily 1.6
    com.apple.iokit.IOCDStorageFamily 1.6
    com.apple.driver.XsanFilter 402.1
    com.apple.iokit.IONetworkingFamily 1.9
    com.apple.iokit.IOATAPIProtocolTransport 2.5.0
    com.apple.iokit.IOSCSIArchitectureModelFamily 2.6.0
    com.apple.iokit.IOAHCIFamily 2.0.2
    com.apple.iokit.IOATAFamily 2.5.0
    com.apple.iokit.IOUSBUserClient 3.8.5
    com.apple.iokit.IOFireWireFamily 4.1.7
    com.apple.iokit.IOUSBFamily 3.8.5
    com.apple.driver.AppleEFIRuntime 1.3.0
    com.apple.iokit.IOHIDFamily 1.6.1
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.security.TMSafetyNet 6
    com.apple.driver.DiskImages 281
    com.apple.iokit.IOStorageFamily 1.6
    com.apple.driver.AppleACPIPlatform 1.3
    com.apple.iokit.IOPCIFamily 2.6
    com.apple.iokit.IOACPIFamily 1.3.0
    Model: MacBookPro3,1, BootROM MBP31.0070.B07, 2 processors, Intel Core 2 Duo, 2.2 GHz, 4 GB, SMC 1.16f11
    Graphics: NVIDIA GeForce 8600M GT, GeForce 8600M GT, PCIe, 128 MB
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x168C, 0x87), Atheros 5416: 2.0.19.4
    Bluetooth: Version 2.2.4f3, 2 service, 0 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    PCI Card: pci168c,24, sppci_othernetwork, PCI Slot 5
    Serial ATA Device: ST9320421ASG, 298.09 GB
    Parallel ATA Device: MATSHITADVD-R UJ-857E
    USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8502, 0xfd400000
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac (Apple Inc.), 0x021a, 0x5d200000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8205, 0x1a100000
    Anyone know what is causing my problems? I thought it was heat so I downloaded a CPU and FAN temperature monitor and the CPU was getting VERY HOT at first so I then ramped-up the CPU FAN SPEED to maximum - it turns out the CPU FAN was not rotating well at low speed - since then I have cleaned and checked the fans and they all work as they should and blow on high(er) when the CPU temperature is above a certain level.

    S.U.
    Is there a kb article or something that would illuminate what to look for in these logs, or is it a matter of learning by osmosis?
    Both. I am not skilled in reading logs. It is a very technical and time consuming task for the uninitiated (me!) In scanning a log I look for the backtrace and loading dependencies. The first item in the backtrace is usually the roadblock.
    Beyond that you can look at the Technical Note TN2063: Understanding and Debugging Kernel Panics
    Should make for good bedtime reading. Puts you right to sleep.
    c

  • Display Problem with RowHeader of a Scroll Pane

    Hi,
    I am trying to display row headers for a table using another table
    Here is the code
    import javax.swing.*;
    import javax.swing.table.*;
    public class RowNumberHeader extends JTable {
      protected JTable mainTable;
      public RowNumberHeader(JTable table) {
        super();
        mainTable = table;
        setModel(new RowNumberTableModel());
        setRowSelectionAllowed(false);
        JComponent renderer = (JComponent)getDefaultRenderer(Object.class);
      public int getRowHeight(int row) {
        return mainTable.getRowHeight();
      class RowNumberTableModel extends AbstractTableModel {
        public int getRowCount() {
          return mainTable.getModel().getRowCount();
        public int getColumnCount() {
          return 1;
        public Object getValueAt(int row, int column) {
          return new Integer(row + 1);
    }and then
            JTable displayTable = new JTable(...);
            scrollPane = new JScrollPane(displayTable);
            JViewport jvp = new JViewport();
            jvp.setView(new RowNumberHeader(displayTable));
            scrollPane.setRowHeader(jvp);the problem I have is that when a row is selected inside the row header, some rows go blank and you can see the selection is all screwed up. I tried setting the selection mode to ListSelectionModel.SINGLE_SELECTION but that didn't help.
    A refresh of the entire screen (minimize/maximize) seems to resolve the problem. I am using jdk1.4.1 in Windows 2000.
    Any ideas?
    Sylvain

    Again the problem is that when you click on the row headers, some row header rows go blank (completely white) so you can't see what they show.
    ie say I have table
    Row 1 - 1  2  3
    Row 2 - 2  4  5
    Row 3 - 5  7  7
    Row 4 - 5  6  7where Row X is the row header. So for example, if you click on Row 2, you will get something like
    Row 1 - 1  2  3
    Row 2 - 2  4  5
          - 5  7  7
    Row 4 - 5  6  7until the screen is refreshed or you click some other row header.
    hmm ok, I added calling repaint on the table whenever a row is selected and at least the display problem goes away; however, the selected indexes from the event don't always match the index of the row selected. I think actually that may be the source of the display problem.
    Here is the code I added in the constructor:
            getSelectionModel().addListSelectionListener(new ListSelectionListener()
                public void valueChanged(ListSelectionEvent e)
                    System.out.println("Header table selection is: First = " + e.getFirstIndex() +
                                       " Last = " + e.getLastIndex());
                    RowNumberHeader.this.repaint();
            });

  • Macbook and HP 2510i monitor display problem - help

    Hello,
    I am having display problem with my Macbook (Intel) and my 25'' HP 2510i monitor via DVI.. Until last monday I do not have any problems and my monitor was working flawless with my macbook.. Last monday I used the monitor with my HP Notebook to try Windows 8 on large screen. And after that try when I connect the monitor back to Macbook there is no display.. I tried the steps below
    - I connected Macbook to my Phillips Plasma TV and it worked (no error with display card of Macbook or the wire or the adaptor)
    - I connected the monitor back to HP laptop it worked.. (so no error with the monitor)
    - I unplugged monitor to cut electricity and tried.. nope not working
    - I did several tricks with macbook no effect
    - I reinstalled Mountain Lion .. no effect
    - I formatted Macbook, reinstalled Snow Leopard.. Not working.. I installed back Mountain Lion .. not working
    Whatever I tried the HP2510i is not displaying, mirroring my Macbook..
    Any help will be appreciated
    Thanks

    My graphic card details;
    NVIDIA GeForce 9400M:
      Chipset Model:          NVIDIA GeForce 9400M
      Type:          GPU
      Bus:          PCI
      VRAM (Total):          256 MB
      Vendor:          NVIDIA (0x10de)
      Device ID:          0x0863
      Revision ID:          0x00b1
      ROM Revision:          3462

Maybe you are looking for