Hyperlink in ALV output and when downloaded to Excel, maintain that hyperli

Hi SAP Friends,
I want to know if this is possible. My requirement is, display a column with Invoice # and hyperlink (or you can call it as Hotspot in SAP language). When clicked on the hyperlink, it should open a webpage, giving details of Invoice. I tried testing BCALV_GRID_VERIFY program. I can see hyperlink in ALV output and when I click, it opens a webpage. However, when I down load data to Excel using Excel inplace, hyperlink is gone. Only data is down loaded. How can we make it happen that hyperlink is maintained even after downloading data from ALV ?
Any ideas ?
Niranjan

Waiting for any suggestions from users.
Niranjan

Similar Messages

  • ALV Heading truncated when downloading to excel

    Hi,
    While downloading the ALV Grid output to Excel, the headings are getting truncated even I have given output length max.
    Any one please let me know how to fix this in OO ALV - existing program using  CL_SALV_COLUMN class for setting column texts, output length.
    One of SCN thread stating to use DDICTXT, but that is in fieldcatalog - FM model. Is there any equal method in OO ALV.
    Thanks,
    Chandra.

    Maybe you can declare the Field of your internal table a bit bigger? For example if the field has a length of 15, declare it as 20? This might help for the heading.

  • To set HOTSPOT for a field in ALV-oops and when clecked should call transac

    Hi,
    I need to set HOTSPOT for a field in O/P list using ALV-oops and when clecked should take me to Transaction VA01. Please help....
    Thanks,
    Prabhu

    Hi,
         Please go through this code it may help u.
    REPORT zcls_alv_oops MESSAGE-ID z1.
    TABLES : mara.
    Types Declaration..\
    TYPES :
    BEGIN OF t_mara,
    matnr TYPE matnr,
    mtart TYPE mtart,
    maktx TYPE maktx,
    END OF t_mara,
    BEGIN OF t_marc,
    matnr TYPE matnr,
    werks TYPE werks_d,
    mtart TYPE mtart,
    maktx TYPE maktx,
    END OF t_marc.
    Internal Tables Declaration..\
    DATA :
    i_mara TYPE TABLE OF t_mara,
    i_marc TYPE TABLE OF t_marc,
    i_fcat1 TYPE lvc_t_fcat,
    i_fcat2 TYPE lvc_t_fcat.
    Constants Declaration..\
    CONSTANTS :
    c_cont1 TYPE scrfname VALUE 'CONT1',
    c_cont2 TYPE scrfname VALUE 'CONT2'.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME.
    SELECT-OPTIONS:
    s_matnr FOR mara-matnr NO INTERVALS.
    SELECTION-SCREEN SKIP 1.
    PARAMETERS :
    p_hotspt RADIOBUTTON GROUP r1 DEFAULT 'X',
    p_bttn RADIOBUTTON GROUP r1.
    SELECTION-SCREEN END OF BLOCK b1.
    \* Class forward referncing.
    CLASS lcl_rcvr_class DEFINITION DEFERRED.
    \* Pointers Declaration..
    DATA :
    lp_rcvr TYPE REF TO lcl_rcvr_class,
    lp_cont1 TYPE REF TO cl_gui_custom_container,
    lp_cont2 TYPE REF TO cl_gui_custom_container,
    lp_grid1 TYPE REF TO cl_gui_alv_grid,
    lp_grid2 TYPE REF TO cl_gui_alv_grid.
    \* Local Class Definiton.
    CLASS lcl_rcvr_class DEFINITION.
    PUBLIC SECTION.
    METHODS :
    hotspot_click FOR EVENT hotspot_click OF cl_gui_alv_grid
    IMPORTING e_row_id e_column_id es_row_no,
    handle_double_click FOR EVENT double_click OF cl_gui_alv_grid
    IMPORTING e_row e_column.
    ENDCLASS.
    \* Local Class Implementation.
    CLASS lcl_rcvr_class IMPLEMENTATION.
    METHOD hotspot_click.
    DATA :
    wa_mara TYPE t_mara,
    wa_marc TYPE t_marc.
    DATA :
    l_index TYPE sy-tabix.
    READ TABLE i_mara INTO wa_mara INDEX e_row_id-index.
    IF sy-subrc EQ 0.
    REFRESH i_marc.
    SELECT matnr
    werks
    INTO TABLE i_marc
    FROM marc
    WHERE matnr EQ wa_mara-matnr.
    IF sy-subrc EQ 0.
    LOOP AT i_marc INTO wa_marc.
    l_index = sy-tabix.
    wa_marc-mtart = wa_mara-mtart.
    wa_marc-maktx = wa_mara-maktx.
    MODIFY i_marc FROM wa_marc INDEX l_index
    TRANSPORTING mtart maktx.
    ENDLOOP.
    CALL SCREEN 200.
    ELSE.
    MESSAGE e121 WITH text-005 wa_mara-matnr.
    ENDIF.
    ENDIF.
    ENDMETHOD.
    METHOD handle_double_click.
    DATA :
    wa_mara TYPE t_mara,
    wa_marc TYPE t_marc.
    DATA :
    l_index TYPE sy-tabix.
    READ TABLE i_mara INTO wa_mara INDEX e_row-index.
    IF sy-subrc EQ 0.
    REFRESH i_marc.
    SELECT matnr
    werks
    INTO TABLE i_marc
    FROM marc
    WHERE matnr EQ wa_mara-matnr.
    IF sy-subrc EQ 0.
    LOOP AT i_marc INTO wa_marc.
    l_index = sy-tabix.
    wa_marc-mtart = wa_mara-mtart.
    wa_marc-maktx = wa_mara-maktx.
    MODIFY i_marc FROM wa_marc INDEX l_index
    TRANSPORTING mtart maktx.
    ENDLOOP.
    CALL SCREEN 200.
    ELSE.
    MESSAGE e121 WITH text-005 wa_mara-matnr.
    ENDIF.
    ENDIF.
    ENDMETHOD.
    ENDCLASS.
    \* Start of Selection
    START-OF-SELECTION.
    \* Extract the Material Master data for the Input Material.
    SELECT a~matnr
    a~mtart
    b~maktx
    INTO TABLE i_mara
    FROM mara AS a
    INNER JOIN makt AS b
    ON a~matnr EQ b~matnr
    WHERE a~matnr IN s_matnr
    AND b~spras EQ sy-langu.
    END-OF-SELECTION.
    IF NOT i_mara\[\] IS INITIAL.
    \* Call Screen to display the Material Master data.
    CALL SCREEN 100.
    ELSE.
    MESSAGE s121 WITH text-006.
    ENDIF.
    \*& Module DISP_GRID OUTPUT
    \* text
    MODULE disp_grid OUTPUT.
    \* Build the Field catelog for Material Master data.
    PERFORM build_fcat.
    \* Display the Material Master data using ALV.
    PERFORM disp_alv.
    ENDMODULE. " DISP_GRID OUTPUT
    \*& Module USER_COMMAND_0100 INPUT
    \* text
    MODULE user_command_0100 INPUT.
    \*when exit or cancel is clicked program has to come out
    CASE sy-ucomm.
    WHEN 'EXIT' OR 'CANC'.
    LEAVE PROGRAM.
    WHEN 'BACK'.
    LEAVE TO SCREEN 0.
    ENDCASE.
    ENDMODULE. " USER_COMMAND_0100 INPUT
    \*& Form build_fcat
    \* text
    \* \--> p1 text
    \* <-\- p2 text
    FORM build_fcat.
    DATA : ws_fcat TYPE lvc_s_fcat.
    ws_fcat-fieldname = 'MATNR'.
    ws_fcat-scrtext_m = text-001.
    ws_fcat-tabname = 'I_MARA'.
    IF p_hotspt EQ 'X'.
    ws_fcat-hotspot = 'X'.
    ENDIF.
    APPEND ws_fcat TO i_fcat1.
    CLEAR ws_fcat.
    ws_fcat-fieldname = 'MTART'.
    ws_fcat-scrtext_m = text-002.
    ws_fcat-tabname = 'I_MARA'.
    APPEND ws_fcat TO i_fcat1.
    CLEAR ws_fcat.
    ws_fcat-fieldname = 'MAKTX'.
    ws_fcat-scrtext_m = text-003.
    ws_fcat-tabname = 'I_MARA'.
    APPEND ws_fcat TO i_fcat1.
    CLEAR ws_fcat.
    ENDFORM. " build_fcat
    \*& Form disp_alv
    \* text
    \* \--> p1 text
    \* <-\- p2 text
    FORM disp_alv.
    IF lp_cont1 IS INITIAL.
    \* Create the Container Object of Material Master.
    CREATE OBJECT lp_cont1
    EXPORTING
    container_name = c_cont1
    EXCEPTIONS
    cntl_error = 1
    cntl_system_error = 2
    create_error = 3
    lifetime_error = 4
    lifetime_dynpro_dynpro_link = 5
    others = 6 .
    IF sy-subrc NE 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ELSE.
    \* Create the Object for Grid of Material Master.
    CREATE OBJECT lp_grid1
    EXPORTING
    i_parent = lp_cont1
    EXCEPTIONS
    error_cntl_create = 1
    error_cntl_init = 2
    error_cntl_link = 3
    error_dp_create = 4
    others = 5.
    IF sy-subrc NE 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ELSE.
    \* Dipslay Material Master data by calling method.
    CALL METHOD lp_grid1->set_table_for_first_display
    CHANGING
    it_outtab = i_mara
    it_fieldcatalog = i_fcat1
    EXCEPTIONS
    invalid_parameter_combination = 1
    program_error = 2
    too_many_lines = 3
    OTHERS = 4.
    IF sy-subrc NE 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ELSE.
    \* Set Handler for the Hot Spot Event.
    CREATE OBJECT lp_rcvr.
    IF p_hotspt EQ 'X'.
    SET HANDLER lp_rcvr->hotspot_click FOR lp_grid1.
    ELSE.
    SET HANDLER lp_rcvr->handle_double_click FOR lp_grid1.
    ENDIF.
    ENDIF.
    ENDIF.
    ENDIF.
    ENDIF.
    ENDFORM. " disp_alv
    \*& Module STATUS_0100 OUTPUT
    \* text
    MODULE status_0100 OUTPUT.
    SET PF-STATUS 'MAIN_STAT'.
    SET TITLEBAR 'T_100'.
    ENDMODULE. " STATUS_0100 OUTPUT
    \*& Module STATUS_0200 OUTPUT
    \* text
    MODULE status_0200 OUTPUT.
    SET PF-STATUS 'PLANT_STAT'.
    SET TITLEBAR 'T_200'.
    ENDMODULE. " STATUS_0200 OUTPUT
    \*& Module DISP_GRID_plant OUTPUT
    \* text
    MODULE disp_grid_plant OUTPUT.
    \* Build the Field catelog for Material Plant data.
    PERFORM build_fcat_plant.
    \* Display the Material Master Plant data using ALV.
    PERFORM disp_alv_plant.
    ENDMODULE. " DISP_GRID_plant OUTPUT
    \*& Module USER_COMMAND_0200 INPUT
    \* text
    MODULE user_command_0200 INPUT.
    \*when exit or cancel is clicked program has to come out
    CASE sy-ucomm.
    WHEN 'EXIT' OR 'CANC'.
    LEAVE PROGRAM.
    WHEN 'BACK'.
    LEAVE TO SCREEN 0.
    ENDCASE.
    ENDMODULE. " USER_COMMAND_0200 INPUT
    \*& Form build_fcat_plant
    \* text
    \* \--> p1 text
    \* <-\- p2 text
    FORM build_fcat_plant.
    DATA : ws_fcat TYPE lvc_s_fcat.
    ws_fcat-fieldname = 'MATNR'.
    ws_fcat-scrtext_m = text-001.
    ws_fcat-tabname = 'I_MARC'.
    APPEND ws_fcat TO i_fcat2.
    CLEAR ws_fcat.
    ws_fcat-fieldname = 'WERKS'.
    ws_fcat-scrtext_m = text-004.
    ws_fcat-tabname = 'I_MARC'.
    APPEND ws_fcat TO i_fcat2.
    CLEAR ws_fcat.
    ws_fcat-fieldname = 'MTART'.
    ws_fcat-scrtext_m = text-002.
    ws_fcat-tabname = 'I_MARC'.
    APPEND ws_fcat TO i_fcat2.
    CLEAR ws_fcat.
    ws_fcat-fieldname = 'MAKTX'.
    ws_fcat-scrtext_m = text-003.
    ws_fcat-tabname = 'I_MARC'.
    APPEND ws_fcat TO i_fcat2.
    CLEAR ws_fcat.
    ENDFORM. " build_fcat_plant
    \*& Form disp_alv_plant
    \* text
    \* \--> p1 text
    \* <-\- p2 text
    FORM disp_alv_plant.
    IF lp_cont2 IS INITIAL.
    \* Create the Container Object of Material Plant data.
    CREATE OBJECT lp_cont2
    EXPORTING
    container_name = c_cont2
    EXCEPTIONS
    cntl_error = 1
    cntl_system_error = 2
    create_error = 3
    lifetime_error = 4
    lifetime_dynpro_dynpro_link = 5
    others = 6.
    IF sy-subrc NE 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ELSE.
    \* Create the Object for Grid of Material Plant data.
    CREATE OBJECT lp_grid2
    EXPORTING
    i_parent = lp_cont2
    EXCEPTIONS
    error_cntl_create = 1
    error_cntl_init = 2
    error_cntl_link = 3
    error_dp_create = 4
    others = 5.
    IF sy-subrc NE 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ELSE.
    \* Dipslay Material Plant data by calling method.
    CALL METHOD lp_grid2->set_table_for_first_display
    CHANGING
    it_outtab = i_marc
    it_fieldcatalog = i_fcat2
    EXCEPTIONS
    invalid_parameter_combination = 1
    program_error = 2
    too_many_lines = 3
    OTHERS = 4.
    IF sy-subrc NE 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    ENDIF.
    ENDIF.
    ELSE.
    \* Call method 'REFRESH_TABLE_DISPLAY' to refresh the grid data.
    CALL METHOD lp_grid2->refresh_table_display.
    ENDIF.
    ENDFORM. " disp_alv_plant

  • I am from iran. i can not download from app store. iTune gives me such an error like this : you must download version 11.1 iTune and when i want to do that i can not.

    i am from iran. i can not download from app store. iTune gives me such an error like this : you must download version 11.1 iTune and when i want to do that i can not.

    Try Here  >  https://discussions.apple.com/thread/4074945?tstart=0

  • Where can I down load i photo for my mac? I can't find it. When I go to the apple homepage and click download the program says that I wouldn't be able to download in germany:-(...but I live in germany..

    Hello,
    Where can I down load i photo for my mac? I can't find it. When I go to the apple homepage and click download the program says that I wouldn't be able to download in germany:-(...but I live in germany..
    Can anybody help me

    On your MBP Click on the Mac App Store (MAS) Icon... once in the Store Navigate to iPhoto.

  • HT204088 fake application by Binh Do, I bought an app called Kara Listeye Block (like iblacklist), and when download and tap, nothing appears

    fake application by Binh Do, I bought an app called Kara Listeye Block (like iblacklist), and when download and tap, and "enter pattern" appears.
    I could not understand whats going on. The app advertised is completely different than what Ihave seen. What should I do now, should ask for refund?
    Regards,

    Hi there.
    Thank you very much for your quick reply, it's really appreciated.
    No need to apologize, I actually found the phrase "If your iPad ever craps the bed" amusing under the circumstances
    I checked the list of installed apps like you suggested (Settings>General>Usage>Storage>Show all apps) but this problem app is not in the list. I have also swiped down on the home screen to search for it, but again it does not show.
    While it has not let me download the app (and I just tried it again) it has helped me to eliminate a few things from the list of what to try, and I can definitely conclude that it has not downloaded.
    I guess I need to fire up my PC and download it / sync my iPad.
    Thanks again for your help

  • I have a samsung galaxy tab3 and when downloading it says my system is not suppoted

    I have a samsung galaxy tab3 model number gt.p5210 and when downloading flash it tells me that flasg is not supported

    There is no more Flash Player for Android and there won't be another. Android is no longer compatible with Flash Player. Playing Flash content is very processor consumptive and it drains your battery, also shortening the life of it. Android (Google) recommends using either "Dolphin" or "Puffin" as your browser if you need to view Flash content with a mobile device running Android. They're both free in the GooglePlay store. These browsers use "server side" rendering to reduce the load on your device.

  • I used my icloud to restore everything on my new iphone 5s, but it only shows some of the photos and when I click on those that are showing it says "Loading".  What happened to my photos?  How can I restore them on my new iphone?

    I upgraded from a 4s to a 5s.  I backed up my icloud and in the Apple store they helped me transfer.  I didn't wait in the store for all my information to download and when I got home later that night the apps all downloaded and were good.  I didn't check the photos and videos though.  I think I may have stopped the icloud retoration and maybe that is why not all my photos are on my new iphone.  Now in the camera roll it shows slots for photos, but they are not there.  When I tap on the photo,  it just shows "Loading" and is working, but the photo doesn't appear.  Any assistance would be helpful

    Basics from the manual are restart, reset, restore.
    http://manuals.info.apple.com/MANUALS/1000/MA1565/en_US/iphone_user_guide.pdf

  • Only Current Date showing when downloading to excel

    <b>Hi,
    I have a query is attached to a template, when I download to excel it only downloads the current date.  I have dates ranging from 2001-2006, and it downloads to excel it only downloads the current year of 2006.  When I run this query on the SAP template it downloads fine.  We are currently using a different excel download the "white paper SAP print strategy approach"  that the SAP template does not use.  Does anyone experience this same problem?  I appreciate your feedback! thanks so much!
    </b>

    <b>Hi,
    I have a query is attached to a template, when I download to excel it only downloads the current date.  I have dates ranging from 2001-2006, and it downloads to excel it only downloads the current year of 2006.  When I run this query on the SAP template it downloads fine.  We are currently using a different excel download the "white paper SAP print strategy approach"  that the SAP template does not use.  Does anyone experience this same problem?  I appreciate your feedback! thanks so much!
    </b>

  • When I start iPhoto it says the library needs to be updated and when I try to do that it says that the program is in use or unreadable. This is the the first time I have ever launched it. What do I do?

    When I start iPhoto it says the library needs to be updated and when I try to do that it says that the program is in use or unreadable. This is the the first time I have ever launched it. What do I do? It keeps going around in circles. I have tried re-starting the computer and re-launching the program holding down the option-command keys. Neither helped.

    What version of iPhoto are you using?
    This is the the first time I have ever launched it.
    Does that mean there are no photos in the library? If so move it to the Trash bin in the Dock and launch iPhoto again.
    If there are photos in the library do the following:
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    Download iPhoto Library Manager and launch.
    Click on the Add Library button,                         
    and select the library you want to add from those in the selection window.
    Now that the library is listed in the left hand pane of iPLM, click on your library and go to the Library ➙ Rebuild Library menu option
    In the next  window name the new library and select the location you want it to be placed.
    Click on the Create button.
    Note 1: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments. However, books, calendars, cards and slideshows will be lost.
    Note 2:  Your current library will be left untouched for further attempts at a fix if so desired.
    OT

  • HT203421 I have recently purchased some apps from the app store and after downloading them, the icon that appears in the dock changes to a different icon. It is now the same icon appearing on all newly downloaded apps.  Does anyone know what is happening

    I have recently purchased some apps from the app store and after downloading them, the icon that appears in the dock changes to a different icon. It is now the same icon appearing on all newly downloaded apps.  Does anyone know what is happening here? Even updating an older game app resulted in the original game icon changing to the new identical icon that all new apps are appearing with.  This new icon is like a page with a ruler, pencil and paintbrush. Any tips on how to stop this or how to revert to the icon as it appears on the app store would be appreciated.

    https://discussions.apple.com/thread/6132949?tstart=0

  • Hello,somebody can tell me if I can find my lost Iphone5 if the "find my phone" app is tunrned off ,I tried to locate my phone and when I sign in says that I need an Icloud account(to sign in I'm using apple id account)Thanx

    hello,somebody can tell me if I can find my lost Iphone5 if the "find my phone" app is tunrned off ,I tried to locate my phone and when I sign in says that I need an Icloud account(to sign in I'm using apple id account)Thanx

    You can't create an iCloud account on your PC.  You have to first create an iCloud account on an iOS device (iPhone, iPad, iPod Touch) or Mac (running OS X Lion or higher).  After creating the account on one of these devices you can use the ID to sign into the account on your PC.

  • I am trying to connect to apple support and it keeps asking me to put in the SN of my MAC and when i do it says that the SN is invalid I am putting in the SN from under about this mac and it is the same as the one one the bottom of the MAC any ideas ?

    I am trying to connect to apple support and it keeps asking me to put in the SN of my MAC and when i do it says that the SN is invalid I am putting in the SN from about this mac and it is the same as the one on the bottom of the MAC any ideas ?

    Did you purchase this product direct from Apple online, in an Apple Store, or through a third-party authorized reseller? Or did you buy it from an original owner whose Applecare plan was supposed to be transitioned to a new owner, by them?
    Do you have an original shipping carton the unit arrived in?
    If the product was a retail 'open carton' purchase and no
    back-track is possible, contact the reseller.
    And if the computer had seen a major service with logic
    board replaced, etc, it may have other issues with serial
    number vs one they may have assigned it. Usually a
    new logic board may have the SN flashed or if a unit
    was determined to be a reman, a new # assigned. But
    that would appear in System Profiler, if officially reman.
    If you registered a product anywhere with Apple, it would show on a web page along with its serial numbers, going back several years, at this page after you log in there.
    https://getsupport.apple.com/GetproductgroupList.action
    A blue text with triangle See all products and services opens an Apple ID
    sign-in window, then the page changes to show your items & info about them.
    If you run the serial number through online Lookup, what appears?
    http://www.powerbookmedic.com/identify-mac-serial.php
    Not sure if this helps, 'your product' should appear - if registered.
    Good luck & happy computing!

  • Trying to download the new Black Ops app and when downloading it says I don't have enough storage space. I made sure I had 1.31 GB of space(like it requires)but it still says I don't have enough space. I even tried to delete more 2.5 GB (I have iPhone 4S)

    I was trying to download the new Black Ops (Strike Team) app and when I try to download it, it says I don't have enough storage space. I made sure I had 1.31 GB of space (like it requires) but it still says I don't have enough space. I even tried to delete more 2.5 GB (I have the iPhone 4S) and the app specifically says that is is compatable with iPhone 4S. I even tried rebooting the phone a couple times before downloading, but it still says the same thing.

    The app you are trying to download my be a zipped file and more space than 1.3GB.  go to settings/general/usage and delete what you no longer want to make more space

  • HT4759 I tried to download icloud for pc windows vista with 2.1.2. and when download was almost complete it said it belonged to another user unknown to me so I stopped the process how do I start over?

    I tried to download icloud for pc windows vista with 2.1.2 and when it was downloading almost finished it said it belonged to an unknown to me user?

    You need to explain that, before you finished downloading something said that it belonged to another user ?
    What said that, can you post a screenshot?

Maybe you are looking for

  • Why are my reflections brighter in After Effects CS6?

    My first project in After Effects CS6 and the new Ray Tracer Renderer has taken a turn for the worse. I brought in AI text and converted it to Shape Layers. Extruded it and placed it in front of a "wall" that set to receive Reflections. You can clear

  • Mail Not Sending; Recreate Account?

    Comcast sent me an e-mail saying they had blocked the sending of email on port 25 (I was actually using 995), and that I should change my settings to send email on port 587. True, I could not send, but I could receive. When I switched to 587 (with pa

  • Gray screen of death on startup - Please Help!

    Hey everyone, my mini is 6 days old and is giving me some trouble. I used it just fine last night, shut it down, and this evening it won't boot up. It gets stuck at the gray screen with the spinning progress wheel. I unplugged all the peripherals, in

  • 10.4.4 won't install due to non-existant DVD Player software?

    Hello all, The 10.4.4 update fails on my machine with the following message: There were errors installing the software. Please try installing again. The installer log shows the following error. BomFileError 28: No space left on device - ///Applicatio

  • Capturing refurbishment cost in breakdown order

    Dear Gurus, If the material is being sent outside for refurbishment through a refurbishment order and that material is part of an equipment which has broken down(a breakdown order has already been raised for that equipment), the client wants the refu