Display in Vertical Lines

HI FRIENDS
BY USING SY-VLINE HOW THE OUTPUT WILL
DISPLAYI N VERTICAL LINES
Edited by: Alvaro Tejada Galindo on Feb 26, 2008 11:09 AM

Hi,
Find the below report so that u will get clear cut idea on SY-VLINE.
REPORT ZCUSTDUN
        MESSAGE-ID ZZ
           LINE-SIZE 145
             LINE-COUNT 65
                NO STANDARD PAGE HEADING.
*                               TABLES                                *
TABLES: VBAK,                          " SALES DOCUMENT: HEADER DATA
        VBEP,                       " SALES DOCUMENT: SCHEDULE LINE DATA
        KNA1,                          " GENERAL DATA IN CUSTOMER MASTER
        VBAP,                          " SALES DOCUMENT: ITEM DATA
        T001W,
        MARC.                   " Koti
DATA Z_EXCEL_FILE LIKE  RLGRAP-FILENAME.    "Excel file name
* SELECTION-SCREEN : PARAMETERS AND SELECT-OPTIONS                    *
SELECTION-SCREEN BEGIN OF BLOCK BLOCK1 WITH FRAME TITLE TEXT-010.
SELECT-OPTIONS : S_KUNNR FOR VBAK-KUNNR.
PARAMETERS     : PLANT LIKE VBAP-WERKS OBLIGATORY.
SELECT-OPTIONS : S_MATNR FOR VBAP-MATNR,
                 S_EDATU FOR VBEP-EDATU.
SELECTION-SCREEN END OF BLOCK BLOCK1.
* ******* EXCEL DOWNLOAD ******* *
SELECTION-SCREEN BEGIN OF BLOCK BLOCK2 WITH FRAME TITLE TEXT-011.
PARAMETERS P_DOWN AS CHECKBOX.
PARAMETER: P_PFILE LIKE RLGRAP-FILENAME.
SELECTION-SCREEN END OF BLOCK BLOCK2.
*                                DATA                                 *
* Internal table for Sales Document: Header Data
DATA: BEGIN OF TBL_VBAK OCCURS 0 ,
      VBELN LIKE VBAK-VBELN,
      KUNNR LIKE KNA1-KUNNR,
      END OF TBL_VBAK.
* Internal table for Cutsomer table.
DATA: BEGIN OF TBL_KNA1 OCCURS 0 ,
      KUNNR LIKE KNA1-KUNNR,
      ORT01 LIKE KNA1-ORT01,        " KOTI
      SORTL LIKE KNA1-SORTL,
      END OF TBL_KNA1.
* Internal table for Sales Document: Schedule Line Data
DATA: BEGIN OF TBL_VBEP OCCURS 0 ,
      VBELN LIKE VBAK-VBELN,
      POSNR LIKE VBEP-POSNR,        "Koti
      ETENR LIKE VBEP-ETENR,
      ETTYP LIKE VBEP-ETTYP,
      EDATU LIKE VBEP-EDATU ,
      WMENG LIKE VBEP-WMENG,
      END OF TBL_VBEP.
* Internal table for Sales Document: Item Data
DATA: BEGIN OF TBL_VBAP OCCURS 0,
      VBELN LIKE VBAP-VBELN,
      POSNR LIKE VBAP-POSNR,
      MATNR LIKE VBAP-MATNR,
      WERKS LIKE VBAP-WERKS,
      END OF TBL_VBAP.
* Internal table for output
DATA: BEGIN OF TBL_FINAL OCCURS 0,
     ETTYP LIKE VBEP-ETTYP,
     MATNR LIKE VBAP-MATNR,
     KUNNR LIKE KNA1-KUNNR,
     SORTL LIKE KNA1-SORTL,
     ORT01 LIKE KNA1-ORT01,
     EDATU LIKE VBEP-EDATU,
     WMENG LIKE VBEP-WMENG,
     END OF TBL_FINAL.
* Internal table for customerno validation
DATA: BEGIN OF IT_KNA1 OCCURS 0,
KUNNR LIKE KNA1-KUNNR,
END OF IT_KNA1.
* Internal table for plant validation
DATA: BEGIN OF IT_T001W OCCURS 0,
WERKS LIKE VBAP-WERKS,
END OF IT_T001W.
* Internal table for material no validation
DATA: BEGIN OF IT_VBAP OCCURS 0,
MATNR LIKE VBAP-MATNR,
END OF IT_VBAP.
* Internal table for date validation
DATA: BEGIN OF IT_VBEP OCCURS 0,
EDATU LIKE VBEP-EDATU,
END OF IT_VBEP.
DATA: BEGIN OF IT_MARC OCCURS 0,   " Koti
MATNR LIKE MARC-MATNR,
END OF IT_MARC.
*               A T   S E L E C T I O N - S C R E E N                  *
AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_PFILE.
  CALL FUNCTION 'KD_GET_FILENAME_ON_F4'
       EXPORTING
            MASK      = ',Text files, *.txt'
            STATIC    = 'X'
       CHANGING
            FILE_NAME = P_PFILE.
* Validation on customer no.
AT SELECTION-SCREEN ON S_KUNNR.
  SELECT KUNNR INTO TABLE IT_KNA1 FROM KNA1
                                    WHERE KUNNR IN S_KUNNR.
  IF SY-SUBRC NE 0.
    MESSAGE E000 WITH TEXT-E01.
    EXIT.
  ENDIF.
* Validation on plant.
AT SELECTION-SCREEN ON PLANT.
*  select werks from t001w into table it_t001w
SELECT WERKS INTO TABLE IT_T001W FROM T001W           " Koti
                                    WHERE WERKS = PLANT.
  IF SY-SUBRC NE 0.
    MESSAGE E000 WITH TEXT-E02.
    EXIT.
  ENDIF.
* Validation on material no.
AT SELECTION-SCREEN ON S_MATNR.
*  select matnr from vbap into table it_vbap    " Koti
   SELECT MATNR INTO TABLE IT_MARC FROM MARC     " Koti
                                    WHERE MATNR IN S_MATNR
                                    AND WERKS EQ PLANT.
  IF SY-SUBRC NE 0.
    MESSAGE E000 WITH TEXT-E03.
    EXIT.
  ENDIF.
* Validation on date.
*AT SELECTION-SCREEN ON S_EDATU.
*  SELECT EDATU INTO TABLE IT_VBEP FROM VBEP            " Koti
*                                    WHERE EDATU IN S_EDATU.
*  IF SY-SUBRC NE 0.
*    MESSAGE E000 WITH TEXT-E04.
*    EXIT.
*  ENDIF.
*                         START-OF-SELECTION                          *
START-OF-SELECTION.
* selecting fields from VBAK
  SELECT VBELN KUNNR
                   INTO TABLE TBL_VBAK FROM VBAK      " Koti
                                WHERE KUNNR IN S_KUNNR.
* Begin of insertion by Kreddy
IF SYST-SUBRC = 0.
  SORT TBL_VBAK.
  DELETE ADJACENT DUPLICATES FROM TBL_VBAK.
ENDIF.
* End of insertion by Kreddy
* selecting fields from KNA1
  IF NOT TBL_VBAK[] IS INITIAL.
    SELECT KUNNR ORT01 SORTL
                   INTO TABLE TBL_KNA1
                         FROM KNA1
                             FOR ALL ENTRIES IN TBL_VBAK
                                   WHERE KUNNR = TBL_VBAK-KUNNR.
* Begin of insertion by Kreddy
    IF SY-SUBRC = 0.
     SORT TBL_KNA1.
    ENDIF.
* End of insertion by Kreddy
  ENDIF.
* selecting fields from VBEP
  IF NOT TBL_VBAK[] IS INITIAL.
    SELECT VBELN POSNR ETENR ETTYP EDATU WMENG      " Koti
                                  INTO TABLE TBL_VBEP
                                  FROM VBEP
                                   FOR ALL ENTRIES IN TBL_VBAK
                                        WHERE VBELN = TBL_VBAK-VBELN
                                              AND EDATU IN S_EDATU
                                    AND ETTYP IN ('L1','L2','CN','E4').
  ENDIF.
* selecting fields from VBAP
  IF NOT TBL_VBEP[] IS INITIAL.
    SELECT VBELN POSNR MATNR WERKS           " Koti
         INTO TABLE TBL_VBAP FROM VBAP
                             FOR ALL ENTRIES IN TBL_VBEP
                     WHERE
                         VBELN = TBL_VBEP-VBELN
                     AND POSNR = TBL_VBEP-POSNR       "Koti
                                 AND
                                 MATNR IN S_MATNR
                                 AND
                                 WERKS = PLANT.
* Begin of insertion by Kreddy
    IF SY-SUBRC = 0.
     SORT TBL_VBAP.
    ENDIF.
* End of insertion by Kreddy
  ENDIF.
END-OF-SELECTION.
*               E N D - O F - S E L E C T I O N                        *
  SORT TBL_VBEP BY VBELN.
  LOOP AT TBL_VBEP.
* Begin of modifications by Kreddy
    CLEAR TBL_VBAK.                                   "Koti
*    loop at tbl_vbak where vbeln = tbl_vbep-vbeln.   " Koti
    READ TABLE TBL_VBAK WITH KEY VBELN = TBL_VBEP-VBELN   " Koti
                                  BINARY SEARCH.
* End of modifications by Kreddy
      IF SY-SUBRC = 0.
        TBL_FINAL-KUNNR = TBL_VBAK-KUNNR.
       CLEAR TBL_KNA1.
        READ TABLE TBL_KNA1 WITH KEY KUNNR = TBL_VBAK-KUNNR
                                             BINARY SEARCH .
        IF SY-SUBRC = 0.
          TBL_FINAL-SORTL = TBL_KNA1-SORTL .
          TBL_FINAL-ORT01 = TBL_KNA1-ORT01 .
        ENDIF.
        CLEAR TBL_VBAP.
        READ TABLE TBL_VBAP WITH KEY VBELN = TBL_VBEP-VBELN
                                     POSNR = TBL_VBEP-POSNR
                                               BINARY SEARCH.
        IF SY-SUBRC = 0.
          TBL_FINAL-MATNR  = TBL_VBAP-MATNR.
        ENDIF.
        TBL_FINAL-WMENG = TBL_VBEP-WMENG.
        TBL_FINAL-EDATU = TBL_VBEP-EDATU.
        TBL_FINAL-ETTYP = TBL_VBEP-ETTYP.
        IF NOT TBL_FINAL-MATNR IS INITIAL.
          APPEND TBL_FINAL.
          CLEAR : TBL_FINAL.
        ENDIF.
      ENDIF.
*    endloop.                             " Koti
    CLEAR : TBL_FINAL.
  ENDLOOP.
*                                OUTPUT                                *
  IF NOT TBL_FINAL[] IS INITIAL.
    DELETE ADJACENT DUPLICATES FROM TBL_FINAL COMPARING ALL FIELDS.
    ULINE.
    FORMAT COLOR COL_HEADING ON.
    WRITE:/01 SY-VLINE,
           04 'SCHEDULING CATEGORY',
           24 SY-VLINE,
           26 'DELPHI MATERIAL',
           44 SY-VLINE,
           46 'DUNNS',
           56 SY-VLINE,
           57 'CUSTOMER NAME1',
           75 SY-VLINE,
           79 'CUSTOMER NAME2',
           112 SY-VLINE,
           113 'REQUEST DATE',
           126 SY-VLINE,
           132 'QUANTITY',
           145 SY-VLINE.
    ULINE.
    FORMAT COLOR OFF.
    SORT TBL_FINAL BY ETTYP.
    LOOP AT TBL_FINAL.
      FORMAT COLOR COL_NORMAL ON.
      WRITE:/01 SY-VLINE,
             10  TBL_FINAL-ETTYP,
             24 SY-VLINE,
             29  TBL_FINAL-MATNR,
             44 SY-VLINE,
             45  TBL_FINAL-KUNNR,
             56 SY-VLINE,
             59  TBL_FINAL-SORTL,
             75 SY-VLINE,
             77  TBL_FINAL-ORT01,
             112 SY-VLINE,
             113  TBL_FINAL-EDATU,
             126 SY-VLINE,
             127 TBL_FINAL-WMENG,
             145 SY-VLINE.
      FORMAT COLOR OFF.
    ENDLOOP.
   ULINE.
  ELSE.
    MESSAGE I000 WITH TEXT-I05.
  ENDIF.
*                 Download in to Excel                                *
  IF P_DOWN = 'X'.
    MOVE P_PFILE TO Z_EXCEL_FILE.
    CALL FUNCTION 'WS_DOWNLOAD'
         EXPORTING
              FILENAME = Z_EXCEL_FILE
              FILETYPE = 'DAT'
         TABLES
              DATA_TAB = TBL_FINAL.
  ENDIF.
*                            END REPORT                               *
<REMOVED BY MODERATOR>
REGARDS,
SUNIL.
Edited by: Alvaro Tejada Galindo on Feb 26, 2008 11:09 AM

Similar Messages

  • Display malfunction- vertical lines on screen - blue, green, and white lines

    My 3 week old passort shut down after running out of battery.  After recharging, lines appeared on the display and won't go away. I tried serveral restarts.
    There are  blue and green vertical lines on the left edge of the display and four our so white lines near the bottom of the screen.
    Any suggestions?

    contact place of purchase to get warranty started, looks like a hardware issue to me
    Click here to Backup the data on your BlackBerry Device! It's important, and FREE!
    Click "Accept as Solution" if your problem is solved. To give thanks, click thumbs up
    Click to search the Knowledge Base at BTSC and click to Read The Fabulous Manuals
    BESAdmin's, please make a signature with your BES environment info.
    SIM Free BlackBerry Unlocking FAQ
    Follow me on Twitter @knottyrope
    Want to thank me? Buy my KnottyRope App here
    BES 12 and BES 5.0.4 with Exchange 2010 and SQL 2012 Hyper V

  • Unibody Macbook Pro 17inch Display problems, vertical lines and artifacting

    Hey everybody
    I bought my 17inch MBP at B&H in June (week before WWDC, D'oh) and it was working fine until I came over to Ireland to work on a editing job for the summer, as soon as I attached it via mini display to a second monitor I started getting artifacts and vertical lines in certain shades and colours on the macbooks display, its gradually gotten worse so much so in fact that it is nearly unusable.
    I have seen the thread about the firmware update, but my computer is already up to date with that but it still has this problem, I contacted apple and was told to take it to the apple store and the genius bar in Belfast, as helpful as the rep was he told me it would be two weeks for a repair, by replacing the logic board. Which I just can't do as I've only got three weeks left on the job and need my mac every day. I've searched and it seems no-one is having this problem except me since the firmware update, but clearly my machine still has problems.
    Never had a problem with all my previous Mac's but I'm close to tossing this in the bin please help because if I can't get this solved I will have to move to PC and install my copy of AVID on it as this is the only other available computers at this production company.
    What to do? Has anyone else had this problem recently? Or know of a fix for it? I've tried everything downloaded the firmware told me its already installed, switched the graphics displays etc etc
    Please help
    Thanks
    Tom Lindsay
    Message was edited by: tomlindsay101

    Welcome to Apple Discussions!
    It sounds like there is a hardware problem of some sort with the graphics chips, and the only real fix is going to be to replace the logic board. So at some point, you will have to send your Mac off for repair.
    In the US, you can sometimes arrange to get a loaner. You might ask if this would be possible where you are, since the repair is going to take so long.
    Unfortunately, I don't know of anything that would fix your problem other than a repair.
    Good luck!

  • Iphone 4 display thin vertical line

    I got this thin vertical purple line suddenly appear on my screen today n its not going away even after i restore my phone to 'new phone' state...pls give me advice...TQVM!!!

    same here. a pixel wide green vertical line on my MBP mid-2010. It is in between the bluetooth and wireless (airport) display area. It's barely a year and just used on average, well taken cared and still this green lines? my lcd part no. is LP133WX3-TLA4 (LG) any of you guys know if APPLE got a recall on this? I've been madly googling and reading posts from other forums and it seems to be common. I hope APPLE reads their discussion forums and address this recurring problems. I mean I don't mind paying a meager sum if this was an older MBP...But for a Mid-2010 MBP that would be a a sort of rip-off. I hope they upped the ante for loyal APPLE users.

  • Display with vertical lines

    I have vertical lines on my screen. Tried hard reset but no success.

    Hi. I recently updated to software vesion 2.0.2 and started to notice the vertical lines you describe. I had never noticed them before. I have spoken to Apple iPhone tech support and they say they have never heard of this issue. They have asked me to do a restore on the phone via iTunes to see if it is a software or hardware issue. If it still happens after restore they told me to go to Apple store to see about a possible replacement. I have tried the resore and so far I haven't noticed the lines but it is early days.
    By the way I have noticed the lines appear randomly and sometimes when I receive an email and get the audible signal I can see them.
    Let me know how you get on if you try to restore iPhone.

  • Re: Satellite P300-156 - grainy display and vertical lines on it

    Hi,
    everytime I 1st start up the machine the display looks grainy and with 1 green line vertically down the right hand-side of the LCD.
    When Vista completes start-up (with my white desktop background), there is lots of pink coluring on icon, when I press "start" and it displays the programs etc, the abckground is all pink! Also the pop-up web cam settings/opener is displaying the same.
    To get rid off this, I restart the machine and all if fine. This is the only way to rectify.
    Over the last week I have again tried to look at the problem...
    I have changed the LCD, Harddrive (upgraded to 320GB), and updated the BIOS with latest version of this site. Now, it wil still do the same, but after 30 seconds (or so) it automatically sorts itself out.
    I really want this sorted, has anyone got any ideas???
    Thanks in advance!

    Yes, when I changed over the screens, the same problem happens, but the odd things I that previously it would not automatically sort itself out, I had to restart the machine and then it would be fine (all the time, until the next day). NOW, since I again done a complete install (via cd ordered from Toshiba), and installed updates via TEMPRO including the BIOS, it seem to correct itself after approx 1 Min???
    I also took out the memory and put back in, checked screen cables by pulling out and re-connecting.
    I will try this eve on an external screen (my LCD TV via HDMI) and see what happens...
    Thanks for your reply to my headache

  • Has anyone had a problem with a late 2009 27 inch iMac display showing vertical lines?

    Can only display and work the computer in safe mode.
    When performing a regular boot, the lines appear at the Apple logo and then the screen goes blank and stays blank.
    Problem first started couple of weeks ago with the computer/display freezing with "confetti-like" marks all over the screen when returning from screen saver power save mode.
    I'd venture to guess it's a graphics card issue. Any input would be appreciated.

    Hi MateoL, sorry for bothering you with this old problem you had, but I have the same iMac, and I think the exact same issue. I wanted to ask you whether you managed to solve this issue? What was the cause of it? I am trying to figure what would be the best thing to do.
    Like you, after some tests/repairs my screen went back to normal, but soon enough it went back to this state. How about you?
    Thanks a lot!

  • MB Pro RD display with vertical lines / split

    Hi, I hv a 15" MB Pro RD which booted up this morning with part of the display vertically split. Pic attached. Can anyone pls advise?
    I'm 2 months out of warranty - any suggestions for estimates / parts / locations to do it in orlando?
    Thanks

    The first step you should take is to make an appointment at an Apple store genius bar and have them find out exactly what is wrong.  The evaluation will be FREE regardless of warranty status.  You will also be given a cost for the repairs which you may accept or decline.
    iFixit.com and Powerbookmedic.com have parts, prices and instructions.  Examine those two web sites.
    Ciao.

  • Display Problems Vertical lines

    Ok i have a G4 12 inch, first i had an inch wide block from top to bottom on my screen that shows as very light blue when on a white background, This First occured about a week after my years garuntee had run out, i would have opted for Apple Care had i not pushed the boat out to buy the powerbook g4 titanium.(if i had brought the ibook i would have had enough cash for apple care). My local apple store said i would need to buy a new screen wich is not an option for the money they want.
    This morning i shut the screen and when i reopened it i had a pixel wide red line running fron top to bottom. Great as the machine is only 18 months old and i take great care of it.
    i dont even use the laptop daily so i am a bit upset and the money i am being told i must give out for a new display.
    Is it the display at fault or the graphic card?
    The Machine has never been knocked about, and reading these threads i am surprised at the amount of people that say you should expect it with an lcd display.
    Why i ask? as i have a Dell for work my girlfriend has a cheap Acer and this is not my first laptop and i have never ever had a problem with a display before.

    As for your other aspect of your question, it is being addressed. People are getting their machines fixed. Those who are not either got a repair person who does not recognize the issue for what it is, or the problem is so intermittent as to not make it easy for them to see the problem. You should always hold on to a case number when you call AppleCare. That way, you can be sure they are tackling the issue as it is and not some other problem. I would add this discussion does not let you discuss Apple "policy" as terms of use dictate on the right:
    "2. Submissions
    Search or browse for existing answers before you ask a question. Someone else may have asked your question — it may save you some time.
    Stay on topic. Apple's discussion forums are here to help people use Apple products and technologies more effectively. Unless otherwise noted, don't add Submissions about nontechnical topics, including:
    That Apple rumor you saw on another website.
    Discussions of Apple policies or procedures.
    Speculations/rumors about unannounced products.
    The status of your 1973 MG Midget restoration. "
    Since this is a user to user forum, I suggest you stay within the confines of those posting restrictions. Don't ask why something isn't getting repaired. Get it repaired through the proper channels, and make sure they follow through with it correctly.

  • Display makes vertical lines

    i am having iphone 4s

    Hello, ashvinmech.  
    Thank you for visiting Apple Support Communities.  
    I see you are experiencing issues with your iPhone display.  Here are some troubleshooting steps that I would recommend going through for this.  
    Get help with the screen on your iPhone, iPad, or iPod touch
    http://support.apple.com/en-us/HT203039
    Cheers, 
    Jason H.  

  • PowerBook G4 17-inch, display has vertical lines or fades to black

    My screen fades to black or It will have verticals lines all over or a single horizontal line .. depending on its mode I guess, but I have to slightly wiggle or twist my screen and then it pops back to normal. Strange.
    I have a larger monitor that I use with no problems and it serves as my backup now just incase my 17" screen connection completely drops.
    What is the possible cause? I have NEVER dropped my laptop and I have been looking for things similiar on the board. Can anyone help me out?
    One possible solution ... just sale it now and get the MacBook Pro.

    What may have happened is the power inverter board to the LCD has gotten damaged or the cable to it has gotten damaged. http://www.dttservice.com/ I've found is relatively inexpensive at getting it fixed, if you can't convince AppleCare to cover it.

  • Vertical lines through screen

    I have 2 small gray vertical lines down my iphone6 screen and the screen and buttons in that area won't respond. Has anyone else had this problem and is there an easy fix?

    Hello elaforce,
    It seems your display has vertical lines and will not respond. Based on the information you have provided, it appears your iPhone needs to be serviced. The following link should help you get started with the process and has links with additional information on topics such as warranty and service pricing, battery replacement, and express replacement service.
    iPhone Repair and Service - Apple Support
    Thank you for contributing to Apple Support Communities.
    Cheers,
    Bobby_D

  • Cinema Display Vertical Line

    Hi,
    My Cinema Display (LCD, 21" I believe, came with Powermac G4 MDD 2003) has had a pink / red vertical line in it for quite some time now. It seems to sometimes change color, but is usually redish. It sits right in the middle of the screen, and goes all the way down from the top to the bottom. It is two pixels wide.
    I have used another Cinema Display the same on this computer, and no lines, and tried this display on another Powermac, and I have lines.
    Are there any warranties for this sort of issue? Any fixes?
    Thanks for your help,
    Jordan

    Lines appearing on the monitor is a product fault with some of the Apple monitors. A quick search of the web will yield 100's of identical reports of the same problem.
    I started with one line and now I have 3. You should expect the same. The fact that Apple have refused to address or even a acknowledge this product fault is a disgrace.
    I'm sorry BSteely but your suggestion that we should simply replace our monitors because its out of warranty is ********. A product fault is a product fault pure and simple...Its not like Apple monitors are inexpensive, I have several other non-apple monitors and have never had this issue with them. It is the manufacturers responsibility to insure that a product leaves the assembly free of fault.
    This is not an isolated problem but a problem in manufacture and Apple need to do something about it to restore goodwill, as I simply will not buy another apple monitor until they prove that this issue has been addressed.

  • Mid 2011 MacBook air vertical lines on display

    While sending à webform today my air display all of à sudden displayed à bunch of vertical lines. I couldnt see anything so i held power button down to restart and it restarted to gray screen no apple logo but 2 vertical lines representing my 2 login avatars. I clicked around aimlessly until i got lucky to click on an icon then entered my password and it restarted and loaded everything as normal except you couldnt see anything except a bunch of multi colored vertical lines. Tried smc reset and pram reset but it still is not working. Not sure where to go from here. No apple stores in sweden within 500miles either. Might try to go buy an external monitor plug to see if it will display correct on external monitor. Any ideas?

    So, I guess the adapter came with the display just in case I had a compatible Mac. I should have noted that on the card. Now, about the rest of the stuff in my Apple mystery box...that's for another day.
    Thanks, seb101, for your quick reply!

  • I have a white vertical line down the right side of my internal brand new macbook pro 13" display

    I have a white vertical line down the right side of my internal brand new macbook pro 13" display. I've done the following:
    -Shutdown the computer, and restarted in Safe Mode by pressing the Shift key after the restart tone
    -Shutdown the computer, and restarted by pressing Command, Option, P & R after the restart tone
    -Checked display resolution, Best for Retina
    -Hooked it up to a Dell external monitor and via projection to screen. There are no lines on the external or secondary screens
    -Just curious, I ran a color utility which can not repair 4 items, maybe this is another issue.
    This is a brand new Macbook Pro, just out of the box. It was fine for two days without any issues, fine last night while in use, opened it up this morning with the line.
    Anyone now how I can fix this on my own?
    Details atta
    <Edited by Host>

    If you are within the first 14 days from the date of purchase, return the MBP for a refund or an exchange.  If you are after the first 14 days of the date of purchase, have the MBP repaired under the warranty provisions.
    Ciao.

Maybe you are looking for

  • AP Error (Accounts Payable Trial Balance)

    The payment's status is negotiable,but it still show in AP-Trial balance reporter,and when run the Payables Accounting Process,it show Accounting Entries Exceptions the context as follows,how to deal wirh it ? thank you in advance Payables accounting

  • Problems in startup class (MDB on Weblogic 7.0 / IBM MQ)

    Hello friends,           I am trying to communicate with IBM MQ through Weblogic 7.0 SP2 and           using MDB.           This is a bit strange but I had to reinstall Weblogic and I tried to           deploy the Startup class . However I am getting

  • How to make login page??

    hi expert ADF developer, I am using oracle ADF 11.1.2.2.0 (oracle Jdevelopr 11g release 2) in my job environment. There are 3000 users working as client level in our company. They have separated user Id. They can change their passwords.passwords whic

  • Converting old Quark applescript to InDesign - problems

    Hello I'm converting an old Quark applescript to InDesign CS3 finally. I'm having a problem with placing, scaling and adjusting images. Here's how it works ... a user fills out a Microsoft Word form, which a designer unlocks and pastes into the layou

  • How to Transfer vids to Phone without Bluetooth or...

    How to Transfer vids to Phone without Bluetooth or Connector?? Don't tell me to go buy a connector and don't ask me why not. I just want to know how to do it without those two.