A table field is not showing.

<b>PLS HELP. I am a newbie.</b> I have 3 tables. The WA-PRODUCT field is not appearing. I am suppose to get "POLO" output but the result is blank. Please see the image below:
<a href="http://i150.photobucket.com/albums/s116/painkiller2007/23drt56g543g67hr/sap_table001.jpg">see image</a>
Please help. <b>Thanks.</b>
data: begin of WA,
        CUSTID     like ZCUSTPROFILE-CUSTID,
        CUSTFNAME  like ZCUSTPROFILE-CUSTFNAME,
        PRODUCTID  like ZORDER-PRODUCTID,
        PRODUCT    like ZPRODUCT-PRODNAME,
      end of WA.
data: ITAB like table of WA.
select  ZC~CUSTID
        ZC~CUSTFNAME
        ZO~PRODUCTID
        ZP~PRODNAME
        from (  ( ZCUSTPROFILE as ZC
                  inner join ZORDER as ZO on ZO~CUSTID = ZC~CUSTID
                inner join ZPRODUCT as ZP on ZO~PRODUCTID = ZP~PRODUCTID
      into corresponding fields of table ITAB
      where ZC~CUSTID = 3.
loop at ITAB into WA.
  write: / WA-CUSTID, WA-CUSTFNAME, WA-PRODUCTID, WA-PRODUCT.
endloop.

data: begin of WA,
        CUSTID     like ZCUSTPROFILE-CUSTID,
        CUSTFNAME  like ZCUSTPROFILE-CUSTFNAME,
        PRODUCTID  like ZORDER-PRODUCTID,
        PRODUCT    like ZPRODUCT-PRODNAME,
      end of WA.
data: ITAB like table of WA.
select  ZC~CUSTID
          ZC~CUSTFNAME
          ZO~PRODUCTID
          ZP~PRODNAME
        from  ZCUSTPROFILE as ZC
        join   ZORDER as ZO
           on ZOCUSTID = ZCCUSTID
        join  ZPRODUCT as ZP
           on ZOPRODUCTID = ZPPRODUCTID
      into corresponding fields of table ITAB        <b>" < when u mentioned in the same order not need of corresponding .. this might be a peformance issue later</b>
      where ZC~CUSTID = 3.
loop at ITAB into WA.
  write: / WA-CUSTID, WA-CUSTFNAME, WA-PRODUCTID, WA-PRODUCT.
endloop.
check the data in the table.. do a manual verification first..

Similar Messages

  • Internal table field does not show data.

    hello experts,
    I am currently modifying a code in a report where it shows PO's and it amount, downpayment, Invoice, GR, payment and balance. Now the problem is, some of the PO amount(it gets the amount from ekpo-netwr) does not show on the report output. the field is t_amount-netwr. I really need help on this one guys. Thanks and take care!
    PERFORM process_with_budat.
    FORM process_with_budat.
      DELETE t_pohistory WHERE hist_type <> 'A'
                           AND hist_type <> 'E'
                           AND hist_type <> 'Q'.
      LOOP AT t_account.
        DELETE it_dtl WHERE ebeln = t_account-ebeln
                        AND psphi IS initial.
        DELETE t_ekpo WHERE ebeln = t_account-ebeln
                        AND ebelp = t_account-po_item.
        t_proj-ebelp = t_account-po_item.
        SELECT SINGLE psphi FROM prps INTO t_proj-psphi
              WHERE posid = t_account-wbs_elem_e.
        CHECK sy-subrc = 0.
        LOOP AT t_pohistory WHERE po_item = t_account-po_item
                              AND ebeln   = t_account-ebeln.
          t_amount-ebeln = t_account-ebeln.
          t_amount-psphi = t_proj-psphi.
          ON CHANGE OF t_pohistory-po_item.
            CLEAR v_netwr.
            SELECT SINGLE netwr FROM ekpo INTO v_netwr
                  WHERE ebeln = t_account-ebeln
                    AND ebelp = t_account-po_item.
            t_amount-netwr = v_netwr.
          ENDON.
          IF v_ebeln IS INITIAL AND v_ebelp IS INITIAL.
            CLEAR v_netwr.
            SELECT SINGLE netwr FROM ekpo INTO v_netwr
                  WHERE ebeln = t_account-ebeln
                    AND ebelp = t_account-po_item.
            t_amount-netwr = v_netwr.
            v_ebeln = t_account-ebeln.
            v_ebelp = t_account-po_item.
          ELSEIF v_ebeln <> t_account-ebeln AND
                 v_ebelp <> t_account-po_item.
            CLEAR v_netwr.
            SELECT SINGLE netwr FROM ekpo INTO v_netwr
                  WHERE ebeln = t_account-ebeln
                    AND ebelp = t_account-po_item.
            t_amount-netwr = v_netwr.
            v_ebeln = t_account-ebeln.
            v_ebelp = t_account-po_item.
          ELSEIF v_ebeln = t_account-ebeln AND
                 v_ebelp <> t_account-po_item.
            CLEAR v_netwr.
            SELECT SINGLE netwr FROM ekpo INTO v_netwr
                  WHERE ebeln = t_account-ebeln
                    AND ebelp = t_account-po_item.
            t_amount-netwr = v_netwr.
            v_ebeln = t_account-ebeln.
            v_ebelp = t_account-po_item.
          ENDIF.
          CHECK NOT t_amount-psphi IS INITIAL.
          if t_pohistory-pstng_date LE pa_augdt.
         IF t_pohistory-pstng_date IN so_augdt.
            IF t_pohistory-db_cr_ind = 'H'.
              t_pohistory-val_loccur = - t_pohistory-val_loccur.
              t_pohistory-val_forcur = - t_pohistory-val_forcur.
              t_pohistory-cl_val_loc = - t_pohistory-cl_val_loc.
            ENDIF.
            IF t_pohistory-hist_type = 'A'.
              IF t_pohistory-currency <> 'PHP'.
                t_amount-dpamt = t_amount-dpamt + t_pohistory-val_forcur.
              ELSE.
                t_amount-dpamt = t_amount-dpamt + t_pohistory-val_loccur.
              ENDIF.
            ELSEIF t_pohistory-hist_type = 'E'.
              IF t_pohistory-currency <> 'PHP'.
                t_amount-gramt = t_amount-gramt + t_pohistory-val_forcur.
              ELSE.
        t_amount-gramt = t_amount-gramt + t_pohistory-val_loccur.
              ENDIF.
            ELSEIF t_pohistory-hist_type = 'Q'.
              IF t_pohistory-currency <> 'PHP'.
           t_amount-iramt = t_amount-iramt + t_pohistory-val_forcur.
              ELSE.
                t_amount-iramt = t_amount-iramt + t_pohistory-val_loccur.
              ENDIF.
            ENDIF.
            IF t_pohistory-currency <> 'PHP'.
              IF t_pohistory-val_loccur = 0 OR
                 t_pohistory-val_forcur = 0.
                t_amount-tramt = t_amount-iramt.
               t_amount-tramt = t_amount-dpamt.
              ELSE.
                t_amount-tramt = t_amount-iramt.
              ENDIF.
            ELSE.
              t_amount-tramt = t_amount-iramt.
             t_amount-tramt = t_pohistory-cl_val_loc + t_amount-dpamt.
            ENDIF.
            IF NOT t_pohistory-cl_val_loc IS INITIAL.
              CONCATENATE t_pohistory-mat_doc t_pohistory-doc_year
                    INTO bkpf-awkey.
             SELECT SINGLE * FROM bkpf
                   WHERE awkey = bkpf-awkey.
    *AVH - removed wrbtr and dmbtr from selection
              SELECT augdt augbl shkzg FROM bsak
                    INTO (bsak-augdt,bsak-augbl,bsak-shkzg)
                    WHERE bukrs = bkpf-bukrs
                      AND gjahr = bkpf-gjahr
                      AND belnr = bkpf-belnr.
    *AVH
                if not bsak-augbl is initial.
                  select belnr gjahr from bsak
                   into (bsak-belnr, bsak-gjahr)
                    where bukrs = bkpf-bukrs
                     and belnr = bkpf-belnr
                     and gjahr = bkpf-gjahr.
                    select awkey from bkpf
                     into v_bkpf_aw
                     where bukrs = 'GLOB'
                       and belnr = bsak-belnr
                       and gjahr = bsak-gjahr.
                      w_len = strlen( v_bkpf_aw ).
                      w_off = w_len - 4.
                      v_awkey_1 = v_bkpf_aw+0(10).
                      v_awkey_2 = v_bkpf_aw+w_off(4).
                      select single dmbtr wrbtr from ekbe
                        into (ekbe-dmbtr, ekbe-wrbtr)
                       where belnr = v_awkey_1
                         and gjahr = v_awkey_2.
    *AVH - Changed all bsak-wrbtr to ekbe-wrbtr and dmbtr to ekbe-dmbtr.
                      IF bsak-shkzg = 'H'.
                        ekbe-dmbtr = - ekbe-dmbtr.
                        ekbe-wrbtr = - ekbe-wrbtr.
                      ENDIF.
                      IF t_pohistory-currency <> 'PHP'.
                        IF bsak-augdt GT pa_augdt.
                 IF bsak-augdt IN so_augdt.
                          t_amount-tramt = t_amount-tramt + ekbe-wrbtr.
                        ENDIF.
                      ELSE.
                        IF bsak-augdt GT pa_augdt.
                 IF bsak-augdt IN so_augdt.
                          t_amount-tramt = t_amount-tramt + ekbe-dmbtr.
                        ENDIF.
                      ENDIF.
                    endselect.
                   endselect.
                  endselect.
                endif.
              ENDSELECT.
            ENDIF.
            IF t_account-distr_perc <> 0.
              t_amount-dpamt = ( t_account-distr_perc *
                                 t_amount-dpamt ) / 100.
              t_amount-gramt = ( t_account-distr_perc *
                                 t_amount-gramt ) / 100.
              t_amount-iramt = ( t_account-distr_perc *
                                 t_amount-iramt ) / 100.
              t_amount-tramt = ( t_account-distr_perc *
                                 t_amount-tramt ) / 100.
            ENDIF.
          ENDIF.
          IF t_amount-tramt < 0.
            t_amount-tramt = 0.
          ENDIF.
          t_amount-tramt = t_amount-iramt.
          t_amount-blamt = t_amount-netwr - t_amount-tramt.
          COLLECT t_amount. CLEAR t_amount.
          APPEND t_proj.
        ENDLOOP.
        IF sy-subrc <> 0.
          CLEAR v_netwr.
          SELECT SINGLE netwr FROM ekpo INTO v_netwr
                WHERE ebeln = t_account-ebeln
                  AND ebelp = t_account-po_item.
          t_amount-ebeln = t_account-ebeln.
          t_amount-psphi = t_proj-psphi.
          t_amount-tramt = t_amount-iramt.
          t_amount-blamt = t_amount-netwr - t_amount-tramt.
          COLLECT t_amount. CLEAR t_amount.
          APPEND t_proj.
        ENDIF.
      ENDLOOP.
    endform.
    **This is where it transfers the data**
    LOOP AT t_amount.
        it_dtl-netwr = t_amount-netwr.
        it_dtl-dpamt = t_amount-dpamt.
        it_dtl-gramt = t_amount-gramt.
        it_dtl-iramt = t_amount-iramt.
        it_dtl-tramt = t_amount-tramt.
        it_dtl-blamt = t_amount-blamt.
        MODIFY it_dtl TRANSPORTING netwr dpamt gramt
                                   iramt tramt blamt
              WHERE ebeln = t_amount-ebeln
                AND psphi = t_amount-psphi.
        CLEAR it_dtl.
      ENDLOOP.

    hi ,
    just place the code and check for a particular po if its there inthe ekpo table then it has to get it for ur select single query .
    but ur logic is build on if --- endif.check this option first of all.
    if in the debugging u see the value then as u say in the report output u r not able to see the value then the problem will be space alignment also.
    check the value in debugging and let us know first of all . okay
    vijay.
    IF v_ebeln IS INITIAL AND v_ebelp IS INITIAL.
    CLEAR v_netwr.
    SELECT SINGLE netwr FROM ekpo INTO v_netwr
    WHERE ebeln = t_account-ebeln
    AND ebelp = t_account-po_item.
    break-point.
    t_amount-netwr = v_netwr.
    v_ebeln = t_account-ebeln.
    v_ebelp = t_account-po_item.
    ELSEIF v_ebeln <> t_account-ebeln AND
    v_ebelp <> t_account-po_item.
    CLEAR v_netwr.
    SELECT SINGLE netwr FROM ekpo INTO v_netwr
    WHERE ebeln = t_account-ebeln
    AND ebelp = t_account-po_item.
    break-point.
    t_amount-netwr = v_netwr.
    v_ebeln = t_account-ebeln.
    v_ebelp = t_account-po_item.
    ELSEIF v_ebeln = t_account-ebeln AND
    v_ebelp <> t_account-po_item.
    CLEAR v_netwr.
    SELECT SINGLE netwr FROM ekpo INTO v_netwr
    WHERE ebeln = t_account-ebeln
    AND ebelp = t_account-po_item.
    break-point.
    t_amount-netwr = v_netwr.

  • Newly added field does not show in table genarator.

    Hi,
         I have added one more field to my custom table.
    When I make new entries in table maintanance, the new field does not show up.
    Thank U for Ur time.
    Cheers,
    Sam

    hai sam raj,
    first activate your database table .
    if any error occurs better you go to
    se14(database utility) -
    >give table name in object and select the table check box and click the edit push button.
    and then click activate and adjust pushbutton.
    surely you ll get some idea.
    reward points if those idea helps.
    thanks,
    velu.

  • In smartforms the quantity field is not showing the perfect value .

    In smartforms the quantity field is not showing the perfect value because the point is shifting left
    insted of showing 8.10 it is showing 80.00.

    Hi,
    Dont use the quantity field same as that it come from interface Fm declare one field for quantity in the global settings and write the logic to pass the value to that field and pass that global value to the particular texts...same is the case with currency fields also.
    Regards,
    Rohan.

  • New field will not show in the Datasource

    Hello Experts,
    I enhanced a datasource by adding a new field in the append structure and when I saved and activated and when into RSA5 or RSA6 then double clicked on the datasource my ZZ field does not show at the end. Anyone know why this is?
    Datasource: 2LIS_11_VAITM
    Extract Structure: MC11VA0ITM
    Thanks!

    HI,
    Once you have appended the structure .
    In RSA6 you need to go to the purticular datasource (In change Mode) and need to uncheck the option *HIDE field for the field you have appended   .
    After you Uncheck that field save and exit.
    Hope it is helpful .

  • Table Maintainace generator not showing all the fields in table

    Hello,
    I generate table maintainace genrator for Z-Table and also create Tranaction code for that.
    I have 27 fields in my Z-table but when I run tranaction code for table maintanance generator it shows only 8 fields.
    I want to show all 27 fields in my tranaction code of table maintainace generator.
    How I can Achieve this?
    Please Suggest.
    Thanks,
    Amit

    Hello Ram,
    Thanks for your answer.
    I increases lenght of screen and table control and activate function group.
    But still in program PBO of screen it showing 8 fields as follows:
    CHAIN.
        FIELD ZPROJ_FIN_STATS-PSPID .
        FIELD ZPROJ_FIN_STATS-GJAHR .
        FIELD ZPROJ_FIN_STATS-MONAT .
        FIELD ZPROJ_FIN_STATS-POSID .
        FIELD ZPROJ_FIN_STATS-IS_REL .
        FIELD ZPROJ_FIN_STATS-IS_TECO .
        FIELD ZPROJ_FIN_STATS-IS_CLSD .
        FIELD ZPROJ_FIN_STATS-LEG_STATUS .
        MODULE SET_UPDATE_FLAG ON CHAIN-REQUEST.
       ENDCHAIN.
    but Iwant total 27 field to show.
    How I can achieve this?
    Thanks,
    Amit

  • Field in Field Catalog Not Showing

    Hi,
    I have added one field in the copied function module 'zzFI_DOCUMENT_LIST_DISPLAY'.
    The field 'Cost center description' is there in the field catalog as well as the internal table.
    But it does not show up in the alv columns on output.
    Requesting your help.
    Varun

    >
    Abhilash.Kuttan wrote:
    > Hi Varun,
    >
    > Can you provide the field catalog options(code) you have provided for this field and also the parameters  you have passed for
    > 'REUSE_ALV_LIST_DISPLAY'
    >
    > Regards,
    > Abhilash
    Declaration of xbseg
    DATA: BEGIN OF XBSEG OCCURS 0.
            INCLUDE STRUCTURE BSEG.
    DATA: KONTO LIKE RFPSD-KONTO,
          FAEDT LIKE RFPSD-FAEDT,
          KTEXT LIKE RFPSD-KTEXT,
          KTEXT_GL LIKE RFPSD-KTEXT_GL,
          ASSET_TXT LIKE ANLA-TXT50,                      "Note 0435578,
          GL_LTXT LIKE SKAT-TXT50,                        "Note 0446719
          SAKAN LIKE SKA1-SAKAN,
          WAERS LIKE BKPF-WAERS,
          HWAER LIKE BKPF-HWAER,
          HWAE2 LIKE BKPF-HWAE2,
          HWAE3 LIKE BKPF-HWAE3,
    * akash *
          LTEXT TYPE CSKT-LTEXT,
    *end*
          projk_ext TYPE PROJK_EXT,                        "Note 575107
          COLOR(3),
          COLFW TYPE SLIS_T_SPECIALCOL_ALV,
          END OF XBSEG.
    *Field Catalog*
      fieldcat_wa-fieldname = 'LTEXT'.
      fieldcat_wa-tabname   = 'XBSEG'.
      fieldcat_wa-ref_fieldname = 'LTEXT'.
      fieldcat_wa-ref_tabname = 'CSKT'.
        APPEND fieldcat_wa TO fieldcat.
    ALV Call
        CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
           EXPORTING
              I_INTERFACE_CHECK        = ' '
                i_buffer_active          = c_x                  "ALRK241034
                i_callback_program       = 'SAPLZZF064'
                i_callback_pf_status_set = 'PF_STATUS_SET'
                i_callback_user_command  = 'HANDLE_USER_COMMAND'
              I_STRUCTURE_NAME         = 'BSEG'
                is_layout                = layout
                it_fieldcat              = fieldcat
                i_default                = 'X'
                i_save                   = 'A'                 "Note 319936
                i_save                   = l_save              "Note 319936
                is_variant               = variant
                is_print                 = gs_print
                it_events                = events
                it_event_exit            = it_event_exit
             TABLES
                  t_outtab                 = xbseg
             EXCEPTIONS
                  program_error            = 1
                  OTHERS                   = 2.
        IF sy-subrc <> 0.
          MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                  WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
    This is my code. I don't understand whats the problem. Request Help.

  • Added fields does not show up in the RSA6

    Hello.
    Problem 1:
    I am enhancing 0bbp_td_sc_1. I added a field to the structure, but it does not show up in the rsa6. ( I double clicked on the extractor name).  If I go to the extractor structure (BBP_SC_BW_GET_TD_STRUC), I am able to see the append. The structure is activated. The append structure is also activated (Zabbp_sc_bw_get_td_struc).
    What can be wrong? I did not see the added the field in the ROOSFIELD table either.
    Problem 2:  What is the difference If I populated the field value from “RSU5_SAP_BADI” to the rsap001 user exit “EXIT_SAPLRSAP_001”?
    I am not able to run debug RSU5_SAP_BADI. STOP does not stop. While I debug, I am able to see the field ( The field I added from problem 1). But the value never populated.
    I am able to run the debug for EXIT_SAPLRSAP_001. I see the data populated for the field. But in RSA3 result, I am not able to see it.
    Thanks in advance.

    Hi
    1. this is usualy the case if the append struct is not active or you did not add the new fields in the append struct.
    I would suggest to remove the fields save activate and re do the process making sure you either use an existing append struct or create a new one.
    2. BADI are different then UE in the way they are implemented.  I will recommend using UE.
    You will not see the enhanced fields in the out put of RSA3 so I stop on the last line and check the values in the struct.
    to debug I would either go to the UE (in a different session) and put a break point there and run RSA3 or check the debug in RSA3 and then find the SAPEXIT that calls the UE.
    I hope this helps.
    Reg's
    Edan

  • KOMK Field is not showing up in the field catalog for creating cond.  tab

    Hi Guys,
                 I add a new field in KOMK table.
    Its showing up in the Field catalog but when I create a condition table, its not showing up in that catalog to choose.
    Thank U for Ur time.
    Cheers
    S Kumar

    Hi,
    Perhaps you have checked it. Do you check if in SM30 for view VV_T681F_VA you have this field?
    Regards,
    Eduardo

  • Table views/sprocs not showing in Data Source Explorer

    i have a database connection and is in good health.  the tree node for the database lists all of the folders expected, but only the Tables folder is populated with actual tables in the database.  the views and stored procedures are not showing even witht the filters disabled.  on the database i granted dbo rights to the user i am connecting with.  using flex builder 3, flex 3 and sql server 2000.

    Hi Himanshu
    Few fields does not work from particular table. you need to try different table for those fields. those fields could be arranged differently.
    This is neither configuration nor application issue.
    Also check your fields are from transparent table or not...

  • Crystal Reports Field Explorer not showing

    Hi,
         I am using Visual Studio 2003 with the bundled version of Crystal Reports.  It has always worked fine until recently the Field Explorer tool bar does not show up anymore when I open a Crystal Report for development.  I have uninstalled the entire Visual Studio and reinstalled the Visual Studio but it still will not show the Crystal Reports Field Explorer.  However, if I install the Visual Studio on a completely different computer it works fine.  Anyone have any idea what could be causing this problem on my main computer?  Could it be a setting somewhere in the Visual Studio?  I cannot find any information on this problem.
    Thanks,
    Razzle

    Ok, I figured out what the problem was.  It was something wrong in my Windows profile.  So I deleted my Windows profile and created a new one and it is working now.
    Razzle

  • Freetext items - Field ORDERED_PROD not showing up and no PARTNER_PROD

    Hello all
    We're on SRM 4.0 with SRM Server 5.0 SP08.
    2 issues / questions:
    1) When adding freetext items we would like to enter the partner product number (if the user knows it). For this a field named PARTNER_PROD exists but it is not showing up!
    I looked at html template bbpsc03/99/saplbbp_sc_ui_its_230.html and dynpro 230 of program saplbbp_sc_ui_its... the field is not in there!
    2) But in this template / dynpro the field ORDERED_PROD is there... but why does this one not show up as well???
    Any help greatly appreciated
    Renaud

    Hi,
    1) Add PARTNER_PROD field to this screen is not possible in standard
    2) the field ORDERED_PROD is linked to gs_scr_itmchoice-product of the screen 110.
    Regards
         Olivier

  • All of table results are not showing in universe

    Hello, I have a table that I created via a SQL view. I then insert this view/table in a universe. Then when I export the universe some of the fields are not there. I went back to the designer and the fields are listed on the right side pane, but not in the list on the left side pane.
    Any ideas why it would drop fields at random?
    Thanks
    Jeff

    I have just noticed that it seems to be only dropping notes fields. Anyone know why this would be?
    Thanks
    Jeff

  • Field descriptions not showing in page layout

    I have custom content types with custom fields. The field types vary - text, image, user and so forth. I am building an intranet so this is a publishing site with workflow and I am using custom page layouts with a custom master page.
    The issue I have is that the field controls, whilst all having descriptions, rarely show the description in the custom page layout. They are all shown correctly in EditForm.aspx so I know that they are there. However when editing a page using a custom page
    layout it seems that only UserField types show the description. Below is an extract from a page layout:
    <SharePointWebControls:UserField FieldName="ContentOwner" runat="server"></SharePointWebControls:UserField>
    <SharePointWebControls:TextField FieldName="ContentOwnerRemark" runat="server"></SharePointWebControls:TextField>
    The first field ContentOwner shows the field description. The second does not. I have tried deleting and re-adding, making fields mandatory and optional, but to no avail. If it's not a UserField it doesn't show the description.

    Showing names of Site Columns on a Page Layout
    Thanks. That allows me to do this:
    <SharePointWebControls:FieldProperty FieldName="ContentOwnerRemark" PropertyName="Description" runat="server" />
    However the original question is why is it that the OOTB control only displays the description for UserField and not for other types of field in a custom page layout, whereas it shows all descriptions in EditForm.aspx. I could do what you have suggested but
    it's a lot of work as I have many fields and custom page layouts, and it seems to me that having the OOTB field control on the page should display the description for all field types not just user field types.

  • When pasting from Excell the table border is not showing in Yahoo mail

    Dear Sir/Madam
    I am mis execitive , preparing the reports in Excell and sending it through email. But when i paste something from Ms excell , the table borders lines is not showing in Yahoo mail.
    Please help

    Dear All ,
    Even I got annoyed due to this stupid thing ,
    Let me share you how i worked around this ,
    (1)Once you copied the table from Excel or Open office Calc, to thunderbird mail , It will appear the table with dotted line.
    (2)Now you have to double click in any single cell it will prompt the ‘Table properties’ box .
    (3)Now click on ‘Table ’ tab and under ‘Borders and Spacing’ Section set ‘Border’ ‘1’ instead of ‘0 ‘
    That’s it ... it will show you the border lines of table copied from source file 

Maybe you are looking for