<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: header to internal table fields in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/header-to-internal-table-fields/m-p/6085557#M1357704</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly go through this sample code below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

"Create T_Head internal table with the required structure for the header
 
*func mod to download header and contents to the given path
call function 'GUI_DOWNLOAD'
exporting
write_field_separator = 'X'
filename              = v_pathname      "path entered by the user
tables
data_tab              = t_head.             "Header Internal table

refresh t_head.
clear t_head.

call function 'GUI_DOWNLOAD'
exporting
*   BIN_FILESIZE                    =
    filename                        = v_pathname
    filetype                        = 'ASC'
    append                          = 'X'                     "Here by giving 'X', header will be appended in the download int table 
    write_field_separator           = 'X'
*   HEADER                          = '00'
*   TRUNC_TRAILING_BLANKS           = ' '
*   WRITE_LF                        = 'X'
*   COL_SELECT                      = ' '
*   COL_SELECT_MASK                 = ' '
*   DAT_MODE                        = ' '
*   CONFIRM_OVERWRITE               = ' '
*   NO_AUTH_CHECK                   = ' '
*   CODEPAGE                        = ' '
*   IGNORE_CERR                     = ABAP_TRUE
*   REPLACEMENT                     = '#'
*   WRITE_BOM                       = ' '
*   TRUNC_TRAILING_BLANKS_EOL       = 'X'
*   WK1_N_FORMAT                    = ' '
*   WK1_N_SIZE                      = ' '
*   WK1_T_FORMAT                    = ' '
*   WK1_T_SIZE                      = ' '
* IMPORTING
*   FILELENGTH                      =
    tables
    data_tab                        = itab
*   FIELDNAMES                      =
  exceptions
file_write_error                = 1
no_batch                        = 2
gui_refuse_filetransfer         = 3
invalid_type                    = 4
no_authority                    = 5
unknown_error                   = 6
header_not_allowed              = 7
separator_not_allowed           = 8
filesize_not_allowed            = 9
header_too_long                 = 10
dp_error_create                 = 11
dp_error_send                   = 12
dp_error_write                  = 13
unknown_dp_error                = 14
access_denied                   = 15
dp_out_of_memory                = 16
disk_full                       = 17
dp_timeout                      = 18
file_not_found                  = 19
dataprovider_exception          = 20
control_flush_error             = 21
others                          = 22
                                    .
if sy-subrc &amp;lt;&amp;gt; 0.
message id sy-msgid type sy-msgty number sy-msgno
with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
endif.

endif.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mansi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 31 Aug 2009 05:16:37 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-08-31T05:16:37Z</dc:date>
    <item>
      <title>header to internal table fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/header-to-internal-table-fields/m-p/6085553#M1357700</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I add header description to the internal table fields and download this internal table to desktop as EXCEL form. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to show heading in the first line of the excel and then 2 - 3 blank lines and then next line should be populated with DATE and Exec. Time, then 2-3 blank lines , then the data with the header description to be displayed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My sample internal table data is as below, &lt;/P&gt;&lt;P&gt;John         M         12          2344&lt;/P&gt;&lt;P&gt;Thomas    M         17          8960&lt;/P&gt;&lt;P&gt;Lin            F          10         8467&lt;/P&gt;&lt;P&gt;Jan           M          12        4323&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to add, description as NAME above  John, Thomas, Lin etc.&lt;/P&gt;&lt;P&gt;                                         as GENDER above M,M,F etc.&lt;/P&gt;&lt;P&gt;                                         as CODE     above 12, 17,10 etc. and&lt;/P&gt;&lt;P&gt;                                         as EXTENTION above 2344, 8960,8467 etc&lt;/P&gt;&lt;P&gt;final execl sheet should be as below, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;COMPANY DATA&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATE   28 - 08 - 2009                   TIME      12:32&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NAME    GENDER   CODE   EXTENTION&lt;/P&gt;&lt;P&gt;John           M             12         2344&lt;/P&gt;&lt;P&gt;Thomas      M             17          8960&lt;/P&gt;&lt;P&gt;Lin              F              10         8467&lt;/P&gt;&lt;P&gt;Jan             M             12        4323&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know, how to do this. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance ,&lt;/P&gt;&lt;P&gt;Sabu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Aug 2009 15:11:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/header-to-internal-table-fields/m-p/6085553#M1357700</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-28T15:11:12Z</dc:date>
    </item>
    <item>
      <title>Re: header to internal table fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/header-to-internal-table-fields/m-p/6085554#M1357701</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Sabu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use GUI_DOWNLOAD to download data to desktop with header fields:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In below code you need to define single column FIELDNAMES table. Check GUI_DOWNLOAD for the types of FIELDNAMES table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

CALL FUNCTION 'GUI_DOWNLOAD'
  EXPORTING
*   BIN_FILESIZE                    =
    filename                        =
*   FILETYPE                        = 'ASC'
*   APPEND                          = ' '
*   WRITE_FIELD_SEPARATOR           = ' '
*   HEADER                          = '00'
*   TRUNC_TRAILING_BLANKS           = ' '
*   WRITE_LF                        = 'X'
*   COL_SELECT                      = ' '
*   COL_SELECT_MASK                 = ' '
*   DAT_MODE                        = ' '
*   CONFIRM_OVERWRITE               = ' '
*   NO_AUTH_CHECK                   = ' '
*   CODEPAGE                        = ' '
*   IGNORE_CERR                     = ABAP_TRUE
*   REPLACEMENT                     = '#'
*   WRITE_BOM                       = ' '
*   TRUNC_TRAILING_BLANKS_EOL       = 'X'
* IMPORTING
*   FILELENGTH                      =
  tables
    data_tab                        =   ---&amp;gt; provide DATA table here
*   FIELDNAMES                      =   ---&amp;gt; provide FIELDNAMES table here
* EXCEPTIONS
*   FILE_WRITE_ERROR                = 1
*   NO_BATCH                        = 2
*   GUI_REFUSE_FILETRANSFER         = 3
*   INVALID_TYPE                    = 4
*   NO_AUTHORITY                    = 5
*   UNKNOWN_ERROR                   = 6
*   HEADER_NOT_ALLOWED              = 7
*   SEPARATOR_NOT_ALLOWED           = 8
*   FILESIZE_NOT_ALLOWED            = 9
*   HEADER_TOO_LONG                 = 10
*   DP_ERROR_CREATE                 = 11
*   DP_ERROR_SEND                   = 12
*   DP_ERROR_WRITE                  = 13
*   UNKNOWN_DP_ERROR                = 14
*   ACCESS_DENIED                   = 15
*   DP_OUT_OF_MEMORY                = 16
*   DISK_FULL                       = 17
*   DP_TIMEOUT                      = 18
*   FILE_NOT_FOUND                  = 19
*   DATAPROVIDER_EXCEPTION          = 20
*   CONTROL_FLUSH_ERROR             = 21
*   OTHERS                          = 22
          .
IF sy-subrc &amp;lt;&amp;gt; 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Augustin.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Aug 2009 15:28:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/header-to-internal-table-fields/m-p/6085554#M1357701</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-28T15:28:31Z</dc:date>
    </item>
    <item>
      <title>Re: header to internal table fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/header-to-internal-table-fields/m-p/6085555#M1357702</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;   The standard func to download to excel will not provide these features, for this you will have to write a code whjch uses OLE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
REPORT  MULTIEXCEL                    .

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 &amp;amp; " " &amp;amp; Sheet2!A1' TO itab3,
            'John' TO itab1, 'Smith' TO itab2,
                              '=Sheet1!A2 &amp;amp; " " &amp;amp; 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.

Quick guide to some of the OLE statements for OLE processing in this program as well as a few other ones.

 Save Excel speadsheet to particular filename
CALL METHOD OF sheet 'SaveAs'
                EXPORTING #1 = 'c:\temp\exceldoc1.xls'     "filename
                          #2 = 1.                          "fileFormat

* Save Excel document
CALL METHOD OF sheet 'SAVE'.

* Quits out of Excel document
CALL METHOD OF sheet 'QUIT'.

*  Closes visible Excel window, data is lost if not saved
SET PROPERTY OF application 'visible' = 0.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 29 Aug 2009 17:12:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/header-to-internal-table-fields/m-p/6085555#M1357702</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-29T17:12:24Z</dc:date>
    </item>
    <item>
      <title>Re: header to internal table fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/header-to-internal-table-fields/m-p/6085556#M1357703</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt;Hi Sabu, 
Just try this way.
&lt;PRE&gt;&lt;CODE&gt;
REPORT  ztest_notepad.
DATA: BEGIN OF it_t001 OCCURS 0,
        bukrs TYPE t001-bukrs,
        butxt TYPE t001-butxt,
        ort01 TYPE t001-ort01,
      END OF it_t001.
DATA: BEGIN OF it_head OCCURS 0,
        bukrs TYPE string,
        butxt TYPE string,
        ort01 TYPE string,
      END OF it_head.

START-OF-SELECTION.
  SELECT * FROM t001 INTO CORRESPONDING FIELDS OF TABLE it_t001 UP TO 10 ROWS.

  it_head-bukrs = 'Company Code'.
  it_head-butxt = 'Name of Company Code or Company'.
  it_head-ort01 = 'City'.
  APPEND it_head.
  CLEAR  it_head.
  "Download headers first
  CALL FUNCTION 'GUI_DOWNLOAD'
    EXPORTING
      filename = 'C:/t001.xls'
      filetype = 'ASC'
      append   = space
    TABLES
      data_tab = it_head.
  "Download data to the same file with APPEND = 'X'
  CALL FUNCTION 'GUI_DOWNLOAD'
    EXPORTING
      filename = 'C:/t001.xls'
      filetype = 'ASC'
      append   = 'X'
    TABLES
      data_tab = it_t001.&lt;/CODE&gt;&lt;/PRE&gt;
Thanks
Venkat.O&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Aug 2009 05:09:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/header-to-internal-table-fields/m-p/6085556#M1357703</guid>
      <dc:creator>venkat_o</dc:creator>
      <dc:date>2009-08-31T05:09:41Z</dc:date>
    </item>
    <item>
      <title>Re: header to internal table fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/header-to-internal-table-fields/m-p/6085557#M1357704</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly go through this sample code below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

"Create T_Head internal table with the required structure for the header
 
*func mod to download header and contents to the given path
call function 'GUI_DOWNLOAD'
exporting
write_field_separator = 'X'
filename              = v_pathname      "path entered by the user
tables
data_tab              = t_head.             "Header Internal table

refresh t_head.
clear t_head.

call function 'GUI_DOWNLOAD'
exporting
*   BIN_FILESIZE                    =
    filename                        = v_pathname
    filetype                        = 'ASC'
    append                          = 'X'                     "Here by giving 'X', header will be appended in the download int table 
    write_field_separator           = 'X'
*   HEADER                          = '00'
*   TRUNC_TRAILING_BLANKS           = ' '
*   WRITE_LF                        = 'X'
*   COL_SELECT                      = ' '
*   COL_SELECT_MASK                 = ' '
*   DAT_MODE                        = ' '
*   CONFIRM_OVERWRITE               = ' '
*   NO_AUTH_CHECK                   = ' '
*   CODEPAGE                        = ' '
*   IGNORE_CERR                     = ABAP_TRUE
*   REPLACEMENT                     = '#'
*   WRITE_BOM                       = ' '
*   TRUNC_TRAILING_BLANKS_EOL       = 'X'
*   WK1_N_FORMAT                    = ' '
*   WK1_N_SIZE                      = ' '
*   WK1_T_FORMAT                    = ' '
*   WK1_T_SIZE                      = ' '
* IMPORTING
*   FILELENGTH                      =
    tables
    data_tab                        = itab
*   FIELDNAMES                      =
  exceptions
file_write_error                = 1
no_batch                        = 2
gui_refuse_filetransfer         = 3
invalid_type                    = 4
no_authority                    = 5
unknown_error                   = 6
header_not_allowed              = 7
separator_not_allowed           = 8
filesize_not_allowed            = 9
header_too_long                 = 10
dp_error_create                 = 11
dp_error_send                   = 12
dp_error_write                  = 13
unknown_dp_error                = 14
access_denied                   = 15
dp_out_of_memory                = 16
disk_full                       = 17
dp_timeout                      = 18
file_not_found                  = 19
dataprovider_exception          = 20
control_flush_error             = 21
others                          = 22
                                    .
if sy-subrc &amp;lt;&amp;gt; 0.
message id sy-msgid type sy-msgty number sy-msgno
with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
endif.

endif.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mansi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Aug 2009 05:16:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/header-to-internal-table-fields/m-p/6085557#M1357704</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-31T05:16:37Z</dc:date>
    </item>
    <item>
      <title>Re: header to internal table fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/header-to-internal-table-fields/m-p/6085558#M1357705</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please Check this Program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;loop at i_tab2.
        i_outtab-fmatnr = i_tab2-fmatnr.
        i_outtab-fqty = i_tab2-fqty.
        i_outtab-bmatnr = i_tab2-bmatnr.

        i_outtab-bqty = i_tab2-bqty.
        i_outtab-maktx = i_tab2-maktx.

        append i_outtab.
      endloop.


      t_header-name = 'Finished Material'.
      append t_header.
      t_header-name = 'FQTY'.
      append t_header.
      t_header-name = 'Bare Block Material'.
      append t_header.
      t_header-name = 'BQTY'.
      append t_header.
      t_header-name = 'Description'.
      append t_header.

      call function 'GUI_FILE_SAVE_DIALOG'
        exporting
          default_extension = 'XLS'
        importing
          fullpath          = v_pass_path.

      call function 'GUI_DOWNLOAD'
        exporting
          filename   = v_pass_path
          filetype   = 'DBF'
        tables
          data_tab   = i_outtab
          fieldnames = t_header.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope its usefull for u .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards , &lt;/P&gt;&lt;P&gt; Shankar GJ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Aug 2009 05:25:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/header-to-internal-table-fields/m-p/6085558#M1357705</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-31T05:25:53Z</dc:date>
    </item>
    <item>
      <title>Re: header to internal table fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/header-to-internal-table-fields/m-p/6085559#M1357706</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Issue resolved , thanks for all replys.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Jul 2010 12:57:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/header-to-internal-table-fields/m-p/6085559#M1357706</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-02T12:57:47Z</dc:date>
    </item>
  </channel>
</rss>

