<?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: Append spread to xls in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/append-spread-to-xls/m-p/3474902#M835252</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Inside the loop, replace&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
WA_FINAL-MEINS = WA_SPREADSHEET-MEINS.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But check the result&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 10 Mar 2008 22:40:17 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-10T22:40:17Z</dc:date>
    <item>
      <title>Append spread to xls</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/append-spread-to-xls/m-p/3474886#M835236</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi friends&lt;/P&gt;&lt;P&gt;Plz any body suggest me&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have to covert the data i am giving in a spread sheet to xls format&lt;/P&gt;&lt;P&gt;the program uses the following routine when the radio button &lt;/P&gt;&lt;P&gt;material from spread sheet are selected&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM APPEND_SPREAD_TO_XLS .&lt;/P&gt;&lt;P&gt;  DATA: p_infile type string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  p_infile = p_file1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT I_SPREADSHEET INTO WA_SPREADSHEET.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    WA_FINAL-BID = TEXT-004.&lt;/P&gt;&lt;P&gt;    WA_FINAL-ITEM = TEXT-005.&lt;/P&gt;&lt;P&gt;    WA_FINAL-DATA = TEXT-006.&lt;/P&gt;&lt;P&gt;    WA_FINAL-DOC = SPACE.&lt;/P&gt;&lt;P&gt;    WA_FINAL-INDEX = WA_SPREADSHEET-INDEX.&lt;/P&gt;&lt;P&gt;    WA_FINAL-LINE = 'D'.&lt;/P&gt;&lt;P&gt;    WA_FINAL-SPAC1 = SPACE.&lt;/P&gt;&lt;P&gt;    WA_FINAL-chgkey = 'I'.&lt;/P&gt;&lt;P&gt;    WA_FINAL-SPAC2 = SPACE.&lt;/P&gt;&lt;P&gt;    WA_FINAL-INDEX1 = WA_SPREADSHEET-INDEX.&lt;/P&gt;&lt;P&gt;    WA_FINAL-SPAC4 = SPACE.&lt;/P&gt;&lt;P&gt;    WA_FINAL-ITDESC = TEXT-007.&lt;/P&gt;&lt;P&gt;    WA_FINAL-PROTYP = '1'.&lt;/P&gt;&lt;P&gt;    WA_FINAL-PRODESC = TEXT-008.&lt;/P&gt;&lt;P&gt;    WA_FINAL-MATNR = WA_SPREADSHEET-MATNR.&lt;/P&gt;&lt;P&gt;    WA_FINAL-MAKTX = WA_SPREADSHEET-MAKTX.&lt;/P&gt;&lt;P&gt;    WA_FINAL-MATKL = WA_SPREADSHEET-MATKL.&lt;/P&gt;&lt;P&gt;    WA_FINAL-WGBEZ60 = WA_SPREADSHEET-WGBEZ60.&lt;/P&gt;&lt;P&gt;    WA_FINAL-SPAC5 = SPACE.&lt;/P&gt;&lt;P&gt;    wa_final-DDATE = '00/00/0000'.&lt;/P&gt;&lt;P&gt;    WA_FINAL-DTIME = '0:00:00'.&lt;/P&gt;&lt;P&gt;    WA_FINAL-FDAT = '00/00/0000'.&lt;/P&gt;&lt;P&gt;    WA_FINAL-TDAT = '00/00/0000'.&lt;/P&gt;&lt;P&gt;    WA_FINAL-QTY = WA_SPREADSHEET-MENGE.&lt;/P&gt;&lt;P&gt;    WA_FINAL-MEINS = WA_SPREADSHEET-MEINS.&lt;/P&gt;&lt;P&gt;    WA_FINAL-PUNIT = SPACE.&lt;/P&gt;&lt;P&gt;    WA_FINAL-CURRY = 'USD'.&lt;/P&gt;&lt;P&gt;    wa_final-proid = wa_SPREADSHEET-matnr.&lt;/P&gt;&lt;P&gt;    APPEND WA_FINAL TO I_FINAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR I_MATERIAL.&lt;/P&gt;&lt;P&gt;  REFRESH I_MATERIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but the problem is when i gave the data in selection screen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Filename to dwnld Spread detl:the excel page vth some data&lt;/P&gt;&lt;P&gt;File name to upload the Spread:some file name&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;its giving the following error&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Error during coversion-field type conflict.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the descrption of the error is&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The sending and receiving fields have conflicting types. The receiving field has type P. Value EA was supposed to be transferred to this field, but this conflicts with the type definition for the receiving field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The incorrect field is field 1 of the receiver structure. Record 7 of the input file contains an error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz suggest&lt;/P&gt;&lt;P&gt;any help is highly appreciated&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2008 21:00:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/append-spread-to-xls/m-p/3474886#M835236</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-10T21:00:44Z</dc:date>
    </item>
    <item>
      <title>Re: Append spread to xls</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/append-spread-to-xls/m-p/3474887#M835237</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You're passing a character field, in this case, the unit of measure, to a numeric field, that's the problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2008 21:10:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/append-spread-to-xls/m-p/3474887#M835237</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-10T21:10:59Z</dc:date>
    </item>
    <item>
      <title>Re: Append spread to xls</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/append-spread-to-xls/m-p/3474888#M835238</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try to save your data in excel in same format as you are transporting .I mean if its numeric data with decimal point then dont save data with character string .That creates a dump.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2008 21:17:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/append-spread-to-xls/m-p/3474888#M835238</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-10T21:17:35Z</dc:date>
    </item>
    <item>
      <title>Re: Append spread to xls</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/append-spread-to-xls/m-p/3474889#M835239</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ramiro and nirad,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; yes when i gave the unit of measure as numeric field 34 instead of EA it worked&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but how to make it work both the character field also actuallythe functional consultant wants to give unit of measure as EA only&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz suggest&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help is highly appreciated&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2008 21:26:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/append-spread-to-xls/m-p/3474889#M835239</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-10T21:26:15Z</dc:date>
    </item>
    <item>
      <title>Re: Append spread to xls</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/append-spread-to-xls/m-p/3474890#M835240</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If the unit of measure can also be numeric, just make the receiving field a character type, the conversion P to C is supported, so no problem with that, make sure the receiving field has enough space to keep the P type (remember the sign and the decimal point)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2008 21:30:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/append-spread-to-xls/m-p/3474890#M835240</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-10T21:30:30Z</dc:date>
    </item>
    <item>
      <title>Re: Append spread to xls</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/append-spread-to-xls/m-p/3474891#M835241</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use conversion routine for data type conversion before moving those field to receiving field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2008 21:35:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/append-spread-to-xls/m-p/3474891#M835241</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-10T21:35:19Z</dc:date>
    </item>
    <item>
      <title>Re: Append spread to xls</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/append-spread-to-xls/m-p/3474892#M835242</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ramiro,&lt;/P&gt;&lt;P&gt;  Sorry i didnt get you what exactly i have to do Plz let me know clearly&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is anything i have change in the code to work if U/M is EA also&lt;/P&gt;&lt;P&gt;plz let me know clearly &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanq so much&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2008 21:38:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/append-spread-to-xls/m-p/3474892#M835242</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-10T21:38:29Z</dc:date>
    </item>
    <item>
      <title>Re: Append spread to xls</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/append-spread-to-xls/m-p/3474893#M835243</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi nirad,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      i dont have idea about conversion routine would tell me where i have write that &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz let me know&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2008 21:41:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/append-spread-to-xls/m-p/3474893#M835243</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-10T21:41:07Z</dc:date>
    </item>
    <item>
      <title>Re: Append spread to xls</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/append-spread-to-xls/m-p/3474894#M835244</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
WA_FINAL-MEINS = WA_SPREADSHEET-MEINS.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this the problematic field right?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead of type p, make the wa_final-meins a character type with enough space to keep a numeric type in case you need it.&lt;/P&gt;&lt;P&gt;You need to also change the final table field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By the way, what type is WA_SPREADSHEET-MEINS?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2008 21:41:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/append-spread-to-xls/m-p/3474894#M835244</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-10T21:41:57Z</dc:date>
    </item>
    <item>
      <title>Re: Append spread to xls</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/append-spread-to-xls/m-p/3474895#M835245</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ramiro,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;yes the field is&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WA_FINAL-MEINS = WA_SPREADSHEET-MEINS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but it is declared like this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; WA_SPREADSHEET TYPE T_MATERIAL,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BEGIN OF T_MATERIAL,&lt;/P&gt;&lt;P&gt;          INDEX(3) TYPE C,&lt;/P&gt;&lt;P&gt;          MATNR TYPE MARA-MATNR,                   "Material Number&lt;/P&gt;&lt;P&gt;          MAKTX TYPE MAKT-MAKTX,                   "Material description&lt;/P&gt;&lt;P&gt;          MENGE TYPE MSEG-MENGE,&lt;/P&gt;&lt;P&gt;          MEINS TYPE MARA-MEINS,                   "Base Unit of Measure&lt;/P&gt;&lt;P&gt;          MATKL TYPE MARA-MATKL,                   "Material group&lt;/P&gt;&lt;P&gt;          WGBEZ60 TYPE T023T-WGBEZ60,              "Material grp Desc.&lt;/P&gt;&lt;P&gt;       END OF T_MATERIAL,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz suggest how to change from p to c and check for the decimal points&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2008 21:48:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/append-spread-to-xls/m-p/3474895#M835245</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-10T21:48:29Z</dc:date>
    </item>
    <item>
      <title>Re: Append spread to xls</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/append-spread-to-xls/m-p/3474896#M835246</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;how are wa_final and i_final declared?.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to declare theirs meins the same way as that table, Type MARA-MEINS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2008 21:53:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/append-spread-to-xls/m-p/3474896#M835246</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-10T21:53:04Z</dc:date>
    </item>
    <item>
      <title>Re: Append spread to xls</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/append-spread-to-xls/m-p/3474897#M835247</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ramiro,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; both the wa_final and i_final represents the same table &lt;/P&gt;&lt;P&gt;t_final&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BEGIN OF T_FINAL,&lt;/P&gt;&lt;P&gt;         BID(30) TYPE C,&lt;/P&gt;&lt;P&gt;         ITEM(15) TYPE C,&lt;/P&gt;&lt;P&gt;         DATA(30) TYPE C,&lt;/P&gt;&lt;P&gt;         DOC(30) TYPE C,&lt;/P&gt;&lt;P&gt;         INDEX(3) TYPE C,&lt;/P&gt;&lt;P&gt;         LINE(1) TYPE C,&lt;/P&gt;&lt;P&gt;         SPAC1(10) TYPE C,&lt;/P&gt;&lt;P&gt;         chgkey(1) TYPE C,&lt;/P&gt;&lt;P&gt;         SPAC2(10) TYPE C,&lt;/P&gt;&lt;P&gt;         INDEX1(3) TYPE C,&lt;/P&gt;&lt;P&gt;         SPAC4(10) TYPE C,&lt;/P&gt;&lt;P&gt;         ITDESC(30) TYPE C,&lt;/P&gt;&lt;P&gt;         PROTYP(1) TYPE C,&lt;/P&gt;&lt;P&gt;         PRODESC(30) TYPE C,&lt;/P&gt;&lt;P&gt;         MATNR TYPE MARA-MATNR,                   "Material Number&lt;/P&gt;&lt;P&gt;         MAKTX TYPE MAKT-MAKTX,                   "Material description&lt;/P&gt;&lt;P&gt;         MATKL TYPE MARA-MATKL,                   "Material group&lt;/P&gt;&lt;P&gt;         WGBEZ60 TYPE T023T-WGBEZ60,              "Material grp Desc.&lt;/P&gt;&lt;P&gt;         SPAC5(10) TYPE C,&lt;/P&gt;&lt;P&gt;         ddate type d,&lt;/P&gt;&lt;P&gt;         dtime type t,&lt;/P&gt;&lt;P&gt;         fdat type d,&lt;/P&gt;&lt;P&gt;         tdat type d,&lt;/P&gt;&lt;P&gt;         qty(3) type c,&lt;/P&gt;&lt;P&gt;         MEINS TYPE MARA-MEINS,                   "Base Unit of Measure&lt;/P&gt;&lt;P&gt;         punit(10) type c,&lt;/P&gt;&lt;P&gt;         curry(3) type c,&lt;/P&gt;&lt;P&gt;         proid type mara-matnr,&lt;/P&gt;&lt;P&gt;      END OF T_FINAL.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2008 21:56:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/append-spread-to-xls/m-p/3474897#M835247</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-10T21:56:11Z</dc:date>
    </item>
    <item>
      <title>Re: Append spread to xls</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/append-spread-to-xls/m-p/3474898#M835248</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So... is working now?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2008 21:57:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/append-spread-to-xls/m-p/3474898#M835248</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-10T21:57:57Z</dc:date>
    </item>
    <item>
      <title>Re: Append spread to xls</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/append-spread-to-xls/m-p/3474899#M835249</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ramiro,&lt;/P&gt;&lt;P&gt;Its only working for numeric fileds when itried giving U/M as 23&lt;/P&gt;&lt;P&gt;its working and bytes transfered&lt;/P&gt;&lt;P&gt;but when i tried using EA as U/M&lt;/P&gt;&lt;P&gt;its getting the same error&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what is wrong&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz suggest&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2008 22:06:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/append-spread-to-xls/m-p/3474899#M835249</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-10T22:06:26Z</dc:date>
    </item>
    <item>
      <title>Re: Append spread to xls</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/append-spread-to-xls/m-p/3474900#M835250</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry, my fault&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
CAll function 'CONVERSION_EXIT_CUNIT_INPUT'
EXPORTING
input = WA_SPREADSHEET-MEINS.
IMPORTING
output = WA_FINAL-MEINS 
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2008 22:19:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/append-spread-to-xls/m-p/3474900#M835250</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-10T22:19:05Z</dc:date>
    </item>
    <item>
      <title>Re: Append spread to xls</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/append-spread-to-xls/m-p/3474901#M835251</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ramiro where exactly i have give that function module&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i tried giving in the form before the loop its not working &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz suggest&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2008 22:32:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/append-spread-to-xls/m-p/3474901#M835251</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-10T22:32:38Z</dc:date>
    </item>
    <item>
      <title>Re: Append spread to xls</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/append-spread-to-xls/m-p/3474902#M835252</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Inside the loop, replace&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
WA_FINAL-MEINS = WA_SPREADSHEET-MEINS.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But check the result&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2008 22:40:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/append-spread-to-xls/m-p/3474902#M835252</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-10T22:40:17Z</dc:date>
    </item>
    <item>
      <title>Re: Append spread to xls</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/append-spread-to-xls/m-p/3474903#M835253</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ramiro,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     plz check this code getting the same error&lt;/P&gt;&lt;P&gt;plz correct me&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM APPEND_SPREAD_TO_XLS .&lt;/P&gt;&lt;P&gt;  DATA: p_infile type string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  p_infile = p_file1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'CONVERSION_EXIT_CUNIT_INPUT'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      input                = WA_SPREADSHEET-MEINS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   IMPORTING&lt;/P&gt;&lt;P&gt;     OUTPUT               = WA_FINAL-MEINS .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  EXCEPTIONS&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    UNIT_NOT_FOUND       = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    OTHERS               = 2&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT I_SPREADSHEET INTO WA_SPREADSHEET.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    WA_FINAL-BID = TEXT-004.&lt;/P&gt;&lt;P&gt;    WA_FINAL-ITEM = TEXT-005.&lt;/P&gt;&lt;P&gt;    WA_FINAL-DATA = TEXT-006.&lt;/P&gt;&lt;P&gt;    WA_FINAL-DOC = SPACE.&lt;/P&gt;&lt;P&gt;    WA_FINAL-INDEX = WA_SPREADSHEET-INDEX.&lt;/P&gt;&lt;P&gt;    WA_FINAL-LINE = 'D'.&lt;/P&gt;&lt;P&gt;    WA_FINAL-SPAC1 = SPACE.&lt;/P&gt;&lt;P&gt;    WA_FINAL-chgkey = 'I'.&lt;/P&gt;&lt;P&gt;    WA_FINAL-SPAC2 = SPACE.&lt;/P&gt;&lt;P&gt;    WA_FINAL-INDEX1 = WA_SPREADSHEET-INDEX.&lt;/P&gt;&lt;P&gt;    WA_FINAL-SPAC4 = SPACE.&lt;/P&gt;&lt;P&gt;    WA_FINAL-ITDESC = TEXT-007.&lt;/P&gt;&lt;P&gt;    WA_FINAL-PROTYP = '1'.&lt;/P&gt;&lt;P&gt;    WA_FINAL-PRODESC = TEXT-008.&lt;/P&gt;&lt;P&gt;    WA_FINAL-MATNR = WA_SPREADSHEET-MATNR.&lt;/P&gt;&lt;P&gt;    WA_FINAL-MAKTX = WA_SPREADSHEET-MAKTX.&lt;/P&gt;&lt;P&gt;    WA_FINAL-MATKL = WA_SPREADSHEET-MATKL.&lt;/P&gt;&lt;P&gt;    WA_FINAL-WGBEZ60 = WA_SPREADSHEET-WGBEZ60.&lt;/P&gt;&lt;P&gt;    WA_FINAL-SPAC5 = SPACE.&lt;/P&gt;&lt;P&gt;    wa_final-DDATE = '00/00/0000'.&lt;/P&gt;&lt;P&gt;    WA_FINAL-DTIME = '0:00:00'.&lt;/P&gt;&lt;P&gt;    WA_FINAL-FDAT = '00/00/0000'.&lt;/P&gt;&lt;P&gt;    WA_FINAL-TDAT = '00/00/0000'.&lt;/P&gt;&lt;P&gt;    WA_FINAL-QTY = WA_SPREADSHEET-MENGE.&lt;/P&gt;&lt;P&gt;    WA_FINAL-MEINS = WA_SPREADSHEET-MEINS.&lt;/P&gt;&lt;P&gt;    WA_FINAL-PUNIT = SPACE.&lt;/P&gt;&lt;P&gt;    WA_FINAL-CURRY = 'USD'.&lt;/P&gt;&lt;P&gt;    wa_final-proid = wa_SPREADSHEET-matnr.&lt;/P&gt;&lt;P&gt;    APPEND WA_FINAL TO I_FINAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR I_MATERIAL.&lt;/P&gt;&lt;P&gt;  REFRESH I_MATERIAL.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'GUI_DOWNLOAD'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      FILENAME              = P_INFILE&lt;/P&gt;&lt;P&gt;      FILETYPE              = 'ASC'&lt;/P&gt;&lt;P&gt;      APPEND                = 'X'&lt;/P&gt;&lt;P&gt;      WRITE_FIELD_SEPARATOR = 'X'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      DATA_TAB              = I_FINAL.&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC = 0.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: sukruthi raj on Mar 11, 2008 1:26 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Mar 2008 00:45:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/append-spread-to-xls/m-p/3474903#M835253</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-11T00:45:20Z</dc:date>
    </item>
  </channel>
</rss>

