<?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 regarding back ground processing for excel. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-back-ground-processing-for-excel/m-p/3152842#M749804</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;i want to create the Excel sheet and i want to save in Back ground Processing....&lt;/P&gt;&lt;P&gt;give me some suggestionss.......................&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 17 Dec 2007 16:21:50 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-17T16:21:50Z</dc:date>
    <item>
      <title>regarding back ground processing for excel.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-back-ground-processing-for-excel/m-p/3152842#M749804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;i want to create the Excel sheet and i want to save in Back ground Processing....&lt;/P&gt;&lt;P&gt;give me some suggestionss.......................&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Dec 2007 16:21:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-back-ground-processing-for-excel/m-p/3152842#M749804</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-17T16:21:50Z</dc:date>
    </item>
    <item>
      <title>Re: regarding back ground processing for excel.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-back-ground-processing-for-excel/m-p/3152843#M749805</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;Use OLE concept.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;L.Velu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Dec 2007 16:28:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-back-ground-processing-for-excel/m-p/3152843#M749805</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-17T16:28:49Z</dc:date>
    </item>
    <item>
      <title>Re: regarding back ground processing for excel.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-back-ground-processing-for-excel/m-p/3152844#M749806</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;This can create any file (spreadsheet/plain text/ dat files). but to add workbooks to the sheet you need to use OLE Object concepts.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS:    p_terms(256) TYPE c OBLIGATORY,&lt;/P&gt;&lt;P&gt;            p_del(1)     TYPE c OBLIGATORY DEFAULT cl_abap_char_utilities=&amp;gt;horizontal_tab.&lt;/P&gt;&lt;P&gt;DATA:       lv_str       TYPE string,&lt;/P&gt;&lt;P&gt;      lv_char(256) TYPE c,&lt;/P&gt;&lt;P&gt;      lr_descrref  TYPE REF TO cl_abap_typedescr.&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS: &amp;lt;comp&amp;gt; TYPE ANY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF itab IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;    OPEN DATASET p_terms FOR OUTPUT IN LEGACY TEXT MODE .&lt;/P&gt;&lt;P&gt;    IF sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;      CLEAR : lv_str.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Header of the file&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      CONCATENATE&lt;/P&gt;&lt;P&gt;        'Action'&lt;/P&gt;&lt;P&gt;        'Name'&lt;/P&gt;&lt;P&gt;        'EE User ID'&lt;/P&gt;&lt;P&gt;        'Termination Date'&lt;/P&gt;&lt;P&gt;        'Last Day Worked'&lt;/P&gt;&lt;P&gt;        'End Of Notice'&lt;/P&gt;&lt;P&gt;        'Employee Type'&lt;/P&gt;&lt;P&gt;        'Department'&lt;/P&gt;&lt;P&gt;        'Department_type'&lt;/P&gt;&lt;P&gt;        'Office Location'&lt;/P&gt;&lt;P&gt;        'Manager Name'&lt;/P&gt;&lt;P&gt;        'Has Cellphone'&lt;/P&gt;&lt;P&gt;        'Has Home Office'&lt;/P&gt;&lt;P&gt;        'VP and Above'&lt;/P&gt;&lt;P&gt;       cl_abap_char_utilities=&amp;gt;cr_lf&lt;/P&gt;&lt;P&gt;      INTO lv_str SEPARATED BY p_del.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      LOOP AT itab INTO ls_terms.&lt;/P&gt;&lt;P&gt;        WHILE sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;          ASSIGN COMPONENT sy-index  OF STRUCTURE ls_terms TO &amp;lt;comp&amp;gt;.&lt;/P&gt;&lt;P&gt;          IF sy-subrc NE 0.&lt;/P&gt;&lt;P&gt;            EXIT.&lt;/P&gt;&lt;P&gt;          ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          lr_descrref = cl_abap_typedescr=&amp;gt;describe_by_data( &amp;lt;comp&amp;gt; ).&lt;/P&gt;&lt;P&gt;          IF lr_descrref-&amp;gt;type_kind = 'P'.&lt;/P&gt;&lt;P&gt;            WRITE &amp;lt;comp&amp;gt; TO lv_char DECIMALS 2.&lt;/P&gt;&lt;P&gt;          ELSE.&lt;/P&gt;&lt;P&gt;            WRITE &amp;lt;comp&amp;gt; TO lv_char.&lt;/P&gt;&lt;P&gt;          ENDIF.&lt;/P&gt;&lt;P&gt;          SHIFT lv_char LEFT DELETING LEADING space.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          IF sy-index NE 1.&lt;/P&gt;&lt;P&gt;            CONCATENATE lv_str lv_char INTO lv_str SEPARATED BY p_del.&lt;/P&gt;&lt;P&gt;          ELSE.&lt;/P&gt;&lt;P&gt;            CONCATENATE lv_str lv_char INTO lv_str.&lt;/P&gt;&lt;P&gt;          ENDIF.&lt;/P&gt;&lt;P&gt;          CLEAR: lv_char.&lt;/P&gt;&lt;P&gt;        ENDWHILE.&lt;/P&gt;&lt;P&gt;        TRY.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;This statement passes the content of data object to the file specified&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;            TRANSFER lv_str TO p_terms.&lt;/P&gt;&lt;P&gt;          CATCH cx_sy_file_authority .&lt;/P&gt;&lt;P&gt;            FORMAT COLOR 6 ON.&lt;/P&gt;&lt;P&gt;            WRITE:/ 'No authorization to access the Term file'.&lt;/P&gt;&lt;P&gt;        ENDTRY.&lt;/P&gt;&lt;P&gt;        CLEAR lv_str.&lt;/P&gt;&lt;P&gt;      ENDLOOP.&lt;/P&gt;&lt;P&gt;      CLOSE DATASET p_terms.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Dec 2007 16:29:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-back-ground-processing-for-excel/m-p/3152844#M749806</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-17T16:29:53Z</dc:date>
    </item>
  </channel>
</rss>

