Problem in exporting ALV Report to excel sheet

Hi All,
I have developed a Report and now facing problem in exporting the same to excel sheet.
When we click the "Locate File" icon in the report layout, the system will pop up a window with radio buttons. I have opted for 'Spreadsheet'.
When i save the excel sheet into my desktop, the excel file has all the report headers (Title of each column). But no value is exported.
There are around 15 columns in the report and the excel sheet shows value of last 2 columns which has some text.
I have been into ALV report development and developed around 30+ reports in the same fashion.
What might be the reason behind this issue?
When i export other reports into excel sheet, everything is perfect without any flaws......
Kindly help me out......
Regards
Pavan

Hi,
Here's my suggestion: Install OpenOffice.org and ask SAP to deliver good integration with OpenOffice.org.
Alternative suggestion: re-install SAP Gui on the PC where the integration is not working. If that does not help, re-install Microsoft Office as well.
Here's my comment: I think you should ask this question in a different forum, e.g. in the Duet forum. That may not be the correct forum either, but as it is a Microsoft/SAP integration technology forum, someone there may know the solution.
Regards,
Raj.

Similar Messages

  • Problem with exporting a report to excel vial citrix server

    Hi,
    We are encountering a problem with exporting a report to excel through ALV local file icon.A spread sheet is downloading only one row (From header) instead of many rows from the ALV output .  
    Above is working fine for the GUI installed on my PC, but not throgh the Citrix server.
    Can any body have idea on above mentined?
    Regards,
    SK.

    I understand that you're trying to download the file to a local computer  through Citrix. In this case you need autorizations in Citrix for your user ( CItrix user)

  • Dump in prodcution server while downloading ALV report to excel sheet

    HI ALL,
    ALV report is working fine in bother DEV and PROD servers....but in production while downloading report to excel sheet it is going to dump.
    "dump is below:
    Short text
    Field symbol has not yet been assigned.
    What happened?
        Error in the ABAP Application Program
        The current ABAP program "SAPLKKBL" had to be terminated because it has
        come across a statement that unfortunately cannot be executed. "
    But in development this problem is not there, iam able to download ALV report to EXCEL sheet.
    Any help experts......
    Thanks in advance
    Ram

    Hi,
    I had the same problem,
    Run a consistency check for your ALV and you will find out. See if you havent passed any unnecessary parameter to FM.
    /people/rainer.hbenthal/blog/2009/09/25/sos--my-alv-report-is-not-working
    Dump while printing ALV (field symbol not assigned)
    Sumit

  • Download ALV report to excel sheet

    halo fellow SAPiens,
    i want to download my alv report into excel sheet...........for tht i used UGI_DOWNLOAD........here if i use the file type as 'ASC' all the leading zeros of numeric values are removed and date format is "yyyy/mm/dd".......
    i need the leading zeros and date format in "dd/mmyyy"
    when i use file type 'DBF' i get the leading zeros but my date is replaced by '#####.............wht shld i do...........

    To get the leading zeros to come, append an apostrophe to the start of each field that has the leading zeros as shown
    loop at itab.
    concatenate '''' itab-field1 into itab-field1.
    modify itab.
    endloop.
    note that
    1. This sometimes doesnt show correctly in excel and you may have to double click on the cell to prevent the apostrophe from displaying in the sheet
    2. You field needs to have an extra character to add the apostrophe

  • Problem in downloading ALV report to Excel

    hi All,
    i am facing the problem when i am trying to download the ALV report to Excel format i should have the option to  save as  the Excel file from the dropdown where as instead of it i am getting the option to save as XML file.
    is it something related to settings in SAP or is it done through programatically.
    thanks,

    Anyways is this happening for every one in your team or just for one. If the latter, looks like the user has selected the download in XML format & checked the "remember these settings" checkbox
    You can refer to this link on how to change the default settings: [http://home4sap.com/Blog/2010/03/ecc5-0-alv-default-file-format-when-extracting-files-to-excel/|http://home4sap.com/Blog/2010/03/ecc5-0-alv-default-file-format-when-extracting-files-to-excel/]
    You can also check this SAP offers the possibility to make from transaction FAGLB03 a download
    Edited by: Suhas Saha on Apr 13, 2010 4:40 PM

  • Image Display Problem while exporting jasper report in EXCEL

    Hi
    I am using Jasper reports for my reporting work using java code.
    when i export my report in PDF then , report is ok and displaying Image properly.
    but when i export my report in EXCEL then , there is no image in my report, rest part is fine.
    Can anyone please help me in getting image in excel format also.
    thanks in advance
    Praveen

    I have not any problem in picture or logo.
    But I have an another problem.
    My Excel format produce multiple column,that is unefficient format.
    If you have not this problem please mail me at --- [email protected]

  • Changing default color scheme when exporting ALV report to Excel spreadshee

    Hi all,
    We have a bunch of FI reports created using OOPS in abap.  Each of the reports has the functionality to be exported to an excel spreadsheet.  When exporting to Excel, the headers are a very dark brown color, making them difficult to read and it has been requested that they are shaded a lighter color.  I have not defined any sort of color scheme within the report itself, and I was wondering if there was a way to change the color scheme when exporting the report to excel.  Let me know if there is anything that can be done, thanks!

    check ur fcat

  • Problem in converting alv report to excel

    Hi all,
         We are trying to convert an alv report to excel and attach it to the mail. We are able to convert and attach it in mail.But in the mail attachment we see in some records some special characters are displayed. I am attaching the part of code of converting the alv report to excel. Kindly suggest us a solution.
    DATA: LD_STORE(50) TYPE C. "Leading zeros
    DATA : L_STRING(270) TYPE C.
    DATA : dmbtr(15) type c,
           wrbtr(15) type c,
           30days(15) type c,
           60days(15) type c,
           90days(15) type c,
           120days(15) type c,
           180days(15) type c,
           above180(15) type c,
           salds(15) type c,
           saldh(15) type c,
           acytd_bal(15) type c,
           zbd1t(15) type c.
    DATA : a type i.
    CONSTANTS:
    CON_TAB TYPE C VALUE CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB,
    CON_CRET TYPE C VALUE CL_ABAP_CHAR_UTILITIES=>CR_LF.
    CONCATENATE w_lifnr w_name1 w_docno w_doctype w_ref w_docdate w_postdate w_duedate w_dmbtr w_waers w_wrbtr
                w_30days w_60days w_90days w_120days w_180days w_above180 w_debit w_credit w_accbal
    INTO L_STRING SEPARATED BY CON_TAB.
    CONCATENATE CON_CRET l_string INTO it_objbin.
    APPEND it_objbin.
    LOOP AT IT_FINAL.
    if it_final-lifnr = '0000010065'.
    break-point.
    endif.
    move it_final-dmbtr to dmbtr.
    move it_final-wrbtr to wrbtr.
    move it_final-30days to 30days.
    move it_final-60days to 60days.
    move it_final-90days to 90days.
    move it_final-120days to 120days.
    move it_final-180days to 180days.
    move it_final-above180 to above180.
    move it_final-salds to salds.
    move it_final-saldh to saldh.
    move it_final-acytd_bal to acytd_bal.
    move it_final-zbd1t to zbd1t.
    CONCATENATE
    IT_FINAL-lifnr
    IT_FINAL-name1
    IT_FINAL-belnr
    IT_FINAL-blart
    IT_FINAL-xblnr
    IT_FINAL-bldat
    IT_FINAL-budat
    IT_FINAL-zfbdt
    dmbtr
    IT_FINAL-WAERS
    wrbtr
    30days
    60days
    90days
    120days
    180days
    above180
    *Nondue  TYPE bsik-dmbtr,
    SALDS
    SALDH
    ACYTD_BAL
    INTO L_STRING SEPARATED BY CON_TAB.
    CONCATENATE CON_CRET l_string INTO it_objbin.
    APPEND it_objbin.
    endloop.
    Thanks & Regards,
    Neela

    If you look at the data with some tools, you will see # for the tabs and ## for CRLFs...these are outside the range of printable characters.
    Correct this:
    CONCATENATE CON_CRET l_string INTO it_objbin.
    with...
    CONCATENATE   l_string  CON_CRET INTO it_objbin.  "put the return/linefeed on the end of the string.
    Also, consider.... debug as needed...
    field-symbols <lfs_x> type any.
    loop at it_final into ls_final.
      do.
    assign component sy-index of structure ls_final to <lfs_x>.
    if sy-subrc ne 0. "end of row ecountered.
      exit.
    endif.
    if sy-index eq 1.
    l string = <lfs_x>.
    else.
    concatenate l_string <lfs_x> into l_string separated by con_tab.
    endif.
    enddo.
    concatenate l_string con_ret into l_string.
    condense l_string.
    append l_string to lt_objbin.
    endloop.
    Edited by: BreakPoint on Dec 1, 2011 7:48 PM

  • Problem: User has problems to export ALV Grid to Excel...

    Hello experts,
    I have a very strange problem with an single user: when she tries to export ALV Grid data from SAP into Excel by List/Export/Spreadsheet, she's only able to export this to an xml-based file on her local client, every other user gets the popup to choose the spreadsheet format (XXL...).
    What I did so far:
    - Look up Excel Makro Security --> the same as on other desktops
    - SAP GUI Patch Level --> the same as on other desktops
    - Test with an different user on her desktop on SAP Report S_ALR_87012284 --> it worked perfectly
    - User parameters are the same as for the test user
    - Security regarding ALV is the same (S_GUI ACTVT = 61...)
    Has there ever been a similar problem to anyone else?
    Many thanks in advance for your feedback!

    Hi ,
    This problem looks very weired. Just try running that FM from SE37 from the same system and see that what is happening there.... if the problem is similar then it is not the problem of your report and some patch may be missing in that system.

  • Export ALV List into Excel Sheet

    Hi Friends,
    We are displaying an ALV List in report Program and we are exporting that into excel sheet using the icon "Spreadsheet(ctrlshiftF7)"provided by ALV Grid.
    But when it is displayed in Excel sheet it changes the sequence of columns (fields).
    And we observed that it displays all the CHAR fields first then the CURRENCY fields and then the DATE fields that we specified in field catalog.
    So, what should be done so that the fields are exported into Excel in the same order as specified in the field catalog of ALV List.

    Give this a look.
    REPORT ZEXCEL .
    INCLUDE ole2incl.
    DATA: application TYPE ole2_object,
    workbook TYPE ole2_object,
    sheet TYPE ole2_object,
    cells TYPE ole2_object.
    CONSTANTS: row_max TYPE i VALUE 256.
    DATA index TYPE i.
    DATA: BEGIN OF itab1 OCCURS 0, first_name(10), END OF itab1.
    DATA: BEGIN OF itab2 OCCURS 0, last_name(10), END OF itab2.
    DATA: BEGIN OF itab3 OCCURS 0, formula(50), END OF itab3.
    *START-OF-SELECTION
    START-OF-SELECTION.
    APPEND: 'Peter' TO itab1, 'Ivanov' TO itab2,
    '=Sheet1!A1 & " " & Sheet2!A1' TO itab3,
    'John' TO itab1, 'Smith' TO itab2,
    '=Sheet1!A2 & " " & Sheet2!A2' TO itab3.
    CREATE OBJECT application 'excel.application'.
    SET PROPERTY OF application 'visible' = 1.
    CALL METHOD OF application 'Workbooks' = workbook.
    CALL METHOD OF workbook 'Add'.
    Create first Excel Sheet
    CALL METHOD OF application 'Worksheets' = sheet
    EXPORTING #1 = 1.
    CALL METHOD OF sheet 'Activate'.
    SET PROPERTY OF sheet 'Name' = 'Sheet1'.
    LOOP AT itab1.
    index = row_max * ( sy-tabix - 1 ) + 1. " 1 - column name
    CALL METHOD OF sheet 'Cells' = cells EXPORTING #1 = index.
    SET PROPERTY OF cells 'Value' = itab1-first_name.
    ENDLOOP.
    Create second Excel sheet
    CALL METHOD OF application 'Worksheets' = sheet
    EXPORTING #1 = 2.
    SET PROPERTY OF sheet 'Name' = 'Sheet2'.
    CALL METHOD OF sheet 'Activate'.
    LOOP AT itab2.
    index = row_max * ( sy-tabix - 1 ) + 1. " 1 - column name
    CALL METHOD OF sheet 'Cells' = cells EXPORTING #1 = index.
    SET PROPERTY OF cells 'Value' = itab2-last_name.
    ENDLOOP.
    Create third Excel sheet
    CALL METHOD OF application 'Worksheets' = sheet
    EXPORTING #1 = 3.
    SET PROPERTY OF sheet 'Name' = 'Sheet3'.
    CALL METHOD OF sheet 'Activate'.
    LOOP AT itab3.
    index = row_max * ( sy-tabix - 1 ) + 1. " 1 - column name
    CALL METHOD OF sheet 'Cells' = cells EXPORTING #1 = index.
    SET PROPERTY OF cells 'Formula' = itab3-formula.
    SET PROPERTY OF cells 'Value' = itab3-formula.
    ENDLOOP.
    Save excel speadsheet to particular filename
    CALL METHOD OF sheet 'SaveAs'
    EXPORTING #1 = 'c:\temp\exceldoc1.xls' "filename
    #2 = 1. "fileFormat
    Closes excel window, data is lost if not saved
    SET PROPERTY OF application 'visible' = 0.

  • Problem in Exporting FAGLB03 report in Excel

    Hi,
    We have recently done upgrade from ECC 5. to ECC 6.0, first we have the problem related to When we download data to Excel in MHTML format it is adding additional zeros to all the total / sub total lines. But when I download it to excel it is not adding any additional zeros. Please could any one help me how to fix this issue?
    Ex: if I have 133.38 in total, in MHTML format it is showing 1333800000.00 but in excel it is showing as 133.38.
    To resolve this i have entered parameter id SALV_BS_XML_VERSION with parameter value 2.2 in user's profile.
    Now we are facing other problem at the time of exporting FAGLB03 report to XML format we have set 5 decimal places for GBP currency, while exporting to XML the system shifts decimal places below example will clearify bit more
    E.G - Actual figure is 11,976,609.60788 but in XML format decimal places shifted 11976609607.88
    Please help me in this regards,
    Sany..

    Hi,
    The solution in the note is :
    Solution
    SAP NetWeaver 7.00
    Import Basis Support Package 21.
    SAP NetWeaver 7.01
    Import Basis Support Package 6.
    Alternatively, please implement all of the followings notes to solve the problem:
    1391325
    1393974
    1394178
    1400534
    So, you have implemented one of the notes in the alternative solution, please check.
    We had the same issue and BASIS implemented this note and this got resolved.
    Regards,
    SAPFICO

  • Convert ALV report to Excel sheet

    Hi frnds,
    I did one ALV reoprtExcute that report , display the output entries.
    I want to convert excel sheet.
    Press the 'LOCAL FILE' button, display this error msg,
    Error analysis
        You attempted to access an unassigned field symbol
        (data segment 93).
        This error may occur if
        - You address a typed field symbol before it has been set with
          ASSIGN
        - You address a field symbol that pointed to the line of an
          internal table that was deleted
        - You address a field symbol that was previously reset using
          UNASSIGN or that pointed to a local field that no
          longer exists
        - You address a global function interface, although the
          respective function module is not active - that is, is
          not in the list of active calls. The list of active calls
          can be taken from this short dump.
    Plz any one suggest me.
    Thanks in advance.

    Hi frnds,
    I was chk fully but ican't understand the error.
    This is my original codes ,
    form display .
    perform fill_layout_structure.
    perform fieldcat using :
        'ZLOTNO'  'Lot Number'       12  'IT_FINAL'     'X',   "space,
        'ZPROBE'  'Insp Lot Origin'  10   'IT_FINAL'    'X',   "space.
        'MATNR'  'Mat no'            18   'IT_FINAL'     'X',
        'MAKTX'  'Mat desc'          40   'IT_FINAL'     'X',
        'NAME1'  'Supplier'          35   'IT_FINAL'    'X',
        'ZPLANT'  'Plant'             4   'IT_FINAL'     'X',
        'ZINSPNO'  'Insp No'         15  'IT_FINAL'      'X',
        'ZDWG'  'Drg No'             15  'IT_FINAL'     space,
        'ZREV'  'Rev No'             15  'IT_FINAL'    'X',
        'ZTXT'  'Remarks'            140  'IT_FINAL'    'X',
        'ZDAN'  'Dan'                140  'IT_FINAL'    'X',
        'ZSNO1' 'SNo 1'                2  'IT_FINAL'    'X',
        'ZSNO2' 'SNo 2'                2  'IT_FINAL'    'X',
        'ZSNO3' 'SNo 3'                2  'IT_FINAL'    'X',
        'ZSNO4' 'SNo 4'                2  'IT_FINAL'    'X',
        'ZSNO5' 'SNo 5'                2  'IT_FINAL'    'X',
        'ZSNO6' 'So 6'                 2  'IT_FINAL'   'X',
        'ZDES1' 'Description 1'      140  'IT_FINAL'    'X',
        'ZDES2' 'Description 2'      140  'IT_FINAL'    'X',
        'ZDES3' 'Description 3'      140  'IT_FINAL'    'X',
        'ZDES4' 'Description 4'      140  'IT_FINAL'    'X',
        'ZDES5' 'Description 5'      140  'IT_FINAL'    'X',
        'ZDES6' 'Description 6'      140  'IT_FINAL'    'X',
        'ZTQR1' 'Tot Qty Rec 1'      10  'IT_FINAL'    'X',
        'ZTQR2' 'Tot Qty Rec 2'      10  'IT_FINAL'    'X',
        'ZTQR3' 'Tot Qty Rec 3'      10  'IT_FINAL'    'X',
        'ZTQR4' 'Tot Qty Rec 4'      10  'IT_FINAL'    'X',
        'ZTQR5' 'Tot Qty Rec 5'      10  'IT_FINAL'    'X',
        'ZTQR6' 'Tot Qty Rec 6'      10  'IT_FINAL'    'X',
        'ZQI1' 'Qty Insp 1'          10  'IT_FINAL'    'X',
        'ZQI2' 'Qty Insp 2'          10  'IT_FINAL'    'X',
        'ZQI3' 'Qty Insp 3'          10  'IT_FINAL'    'X',
        'ZQI4' 'Qty Insp 4'          10  'IT_FINAL'    'X',
        'ZQI5' 'Qty Insp 5'          10  'IT_FINAL'    'X',
        'ZQI6' 'Qty Insp 6'          10  'IT_FINAL'    'X',
        'ZTN1' 'Tot NC 1'            10  'IT_FINAL'    'X',
        'ZTN2' 'Tot NC 2'            10  'IT_FINAL'    'X',
        'ZTN3' 'Tot NC 3'            10  'IT_FINAL'    'X',
        'ZTN4' 'Tot NC 4'            10  'IT_FINAL'    'X',
        'ZTN5' 'Tot NC 5'            10  'IT_FINAL'    'X',
        'ZTN6' 'Tot NC 6'            10  'IT_FINAL'    'X',
        'ZRD1' 'Resp Dept 1'         10  'IT_FINAL'    'X',
        'ZRD2' 'Resp Dept 2'         10  'IT_FINAL'    'X',
        'ZRD3' 'Resp Dept 3'         10  'IT_FINAL'    'X',
        'ZRD4' 'Resp Dept 4'         10  'IT_FINAL'    'X',
        'ZRD5' 'Resp Dept 5'         10  'IT_FINAL'    'X',
        'ZRD6' 'Resp Dept 6'         10  'IT_FINAL'    'X',
        'ZCOR1' 'causes of Reason 1' 140  'IT_FINAL'    'X',
        'ZCOR2' 'causes of Reason 2' 140  'IT_FINAL'    'X',
        'ZCOR3' 'causes of Reason 3' 140  'IT_FINAL'    'X',
        'ZCOR4' 'causes of Reason 4' 140  'IT_FINAL'    'X',
        'ZCOR5' 'causes of Reason 5' 140  'IT_FINAL'    'X',
        'ZCOR6' 'causes of Reason 6' 140  'IT_FINAL'    'X',
        'ZCAPA1' 'capacity 1'        140  'IT_FINAL'    'X',
        'ZCAPA2' 'capacity 2'        140  'IT_FINAL'    'X',
        'ZCAPA3' 'capacity 3'        140  'IT_FINAL'    'X',
        'ZCAPA4' 'capacity 4'        140  'IT_FINAL'    'X',
        'ZCAPA5' 'capacity 5'        140  'IT_FINAL'    'X',
        'ZCAPA6' 'capacity 6'        140  'IT_FINAL'    'X',
        'ZSTAT1' 'Status 1'          140  'IT_FINAL'    'X',
        'ZSTAT2' 'Status 2'          140  'IT_FINAL'    'X',
        'ZSTAT3' 'Status 3'          140  'IT_FINAL'    'X',
        'ZSTAT4' 'Status 4'          140  'IT_FINAL'    'X',
        'ZSTAT5' 'Status 5'          140  'IT_FINAL'    'X',
        'ZSTAT6' 'Status 6'          140  'IT_FINAL'    'X',
        'ZINTXT' 'Insp By'          30  'IT_FINAL'    'X',
        'ZINDATE' 'Insp Date'        8  'IT_FINAL'    'X',
        'ZTDATE' 'Target Date'       8  'IT_FINAL'    'X'
      perform get_event using it_event.
    perform fill_listheader using it_listheader.
    perform list_display.
    endform.
    form fieldcat  using   a b c d e   .
      data: wa_fieldcat type slis_fieldcat_alv.
        statics v_pos type i value 1.
        wa_fieldcat-fieldname  = a.
        wa_fieldcat-seltext_l  = b.
        wa_fieldcat-outputlen  = c.
        wa_fieldcat-tabname    = d.
        wa_fieldcat-fix_column = e.
       wa_fieldcat-do_sum     = f.
        append wa_fieldcat to it_fieldcat.
    endform. 
    Click 'local file' button,
    display the error msg,
    1. "View cannot be switched: Product is not installed or integration is not active."
    2.Error analysis
        You attempted to access an unassigned field symbol
        (data segment 152).
        This error may occur if
        - You address a typed field symbol before it has been set with
          ASSIGN
        - You address a field symbol that pointed to the line of an
          internal table that was deleted
        - You address a field symbol that was previously reset using
          UNASSIGN or that pointed to a local field that no
          longer exists
        - You address a global function interface, although the
          respective function module is not active - that is, is
          not in the list of active calls. The list of active calls
          can be taken from this short dump.
    Any one help me.
    Thanks in advance.

  • Problem in Exporting Webi Report to Excel

    Hi,
    I have developed a WEBI report in BOBJ 4.1 SP1 on top of IDT Universe and applied Drill Down analysis.
    While exporting the WEBI Report to Excel, I'm getting Images in the place of columns where there is no data.
    However, images are not getting in the columns where we have data.
    Please suggest as this will help me a lot.
    Thanks & Regads,
    Prasad.

    Hi,
    1)     Check if there is any conditional formatting applied.
    2)      Check in the fomat cell --> Appearance .

  • Total problem in Exporting ALV GRID to Excel

    Hi all,
    I have manipulated the Total of ALV Grid by using GET_SUBTOTALS and REFRESH method of CL_GUI_ALV_GRID. The ALV Output is also correct. When i export to Excel,only the Original total is displaying not the calculated one. How to download the exact output which is displaying in the ALV Grid to Excel.
    Please help me out to solve this.
    Thanks,
    Ramesh

    DEAR,
    AS U WANT UPLOAD WITH THE SUB TOTAL YOU TRY THIS.
    FIRST to get subtotal in ALV output you select at least one column of total and then press ctrl + F6 . u will see the sub total .
    and now how to download it so press  ctrl + shift + F9 .
    now screen appears and select second option ie spreadsheet and press enter
    now a screen appear  in wich u have to give file name.
    so double click on search button of file name . click on desktop  give ur file name as u want suppose zreport u have given.
    and save type = excel file.
    now save it and then generate it your output bytes will be transmitted .
    now u can see in your desktop in your file name . ur output with subtotal.
    regards
    navin

  • Exporting Alv report to excel in forground & background.....

    Hello Experts,
    I need to schedule ALV report This has to be sheduled daily at 11.00 PM and the data should appear same as the ALV report sructure.if possible please provide me teh code.
    Thanks alot in advance..
    Thanks,,,
    Santosh..........
    Moderator message: "spec dumping", please work yourself first on your requirement.
    Edited by: Thomas Zloch on Jul 7, 2011 9:17 AM

    Hi,
    Here's my suggestion: Install OpenOffice.org and ask SAP to deliver good integration with OpenOffice.org.
    Alternative suggestion: re-install SAP Gui on the PC where the integration is not working. If that does not help, re-install Microsoft Office as well.
    Here's my comment: I think you should ask this question in a different forum, e.g. in the Duet forum. That may not be the correct forum either, but as it is a Microsoft/SAP integration technology forum, someone there may know the solution.
    Regards,
    Raj.

Maybe you are looking for

  • Download problem

    I registered my Adobe purchase and have tried to download my free PDF portfolio templates, but I can't seem to download this. Does anyone have any suggestions?

  • How do I download actions into my Elements 8?

    How do I download actions into my elements 8?

  • Regarding studying for ABAP HANA

    Hello Gurus,      I have been working as a ABAP SRM techno-Functional Consultant for 5 years. Now I feel like to switch into something new and increase my knowledge. Can someone help me regarding learning of HANA for ABAP. Also can SAP HANA somehow b

  • Exchange Server 2010 Edge - Port Change

    I am learning Exchange 2010 and have set it up. BUT my ISP blocks port 25 so I thought no problem I have a windows VPS set up I will install an Exchange Edge Server there and then it will work. However it looks like exchange uses port 25 to send the

  • Wmf file doesnt load in Firefox browser window but does in IE

    A wmf image doesnt load in Firefox browser window but does in IE. Is there a setting I can change so I can use Firefox and dont have to keep switching to IE. == URL of affected sites == http://www.vebra.com/property/2059/20186108