<?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: unicode error in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/3570128#M859220</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 gave you the code for  WS_DOWNLOAD.&lt;/P&gt;&lt;P&gt;If u exactly tell me wat are the function modules you are using,&lt;/P&gt;&lt;P&gt;I will give you the respective sample code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ws_upload or?&lt;/P&gt;&lt;P&gt;download or?&lt;/P&gt;&lt;P&gt;upload?............tell me exact one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sandeep Reddy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 19 May 2008 13:05:12 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-19T13:05:12Z</dc:date>
    <item>
      <title>unicode error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/3570120#M859212</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am getting unicode errror i.e. UC_OBJECTS_NOT_CONVERTIBLE means dataobjects in unicode programs cannot be converted,&lt;/P&gt;&lt;P&gt;while upgrading from 4.6 to ECC 6.0, when iam trying to open downloaded file in excel.&lt;/P&gt;&lt;P&gt;In debugging, error occurs while executing statment "CALL METHOD OF obj_ex_sheet " in the code given below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="--------------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM open_downloaded_file_in_excel * &lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="--------------------------------------------------------------------" /&gt;&lt;P&gt;FORM open_downloaded_file_in_excel.&lt;/P&gt;&lt;P&gt;DATA:&lt;/P&gt;&lt;P&gt;lv_ole_books TYPE ole2_object,&lt;/P&gt;&lt;P&gt;lv_ole_sheets TYPE ole2_object,&lt;/P&gt;&lt;P&gt;lv_subrc LIKE sy-subrc,&lt;/P&gt;&lt;P&gt;lv_title(70) TYPE c,&lt;/P&gt;&lt;P&gt;lv_text1(70) TYPE c,&lt;/P&gt;&lt;P&gt;lv_text2(70) TYPE c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start excel &lt;/P&gt;&lt;P&gt;CREATE OBJECT obj_ex_sheet 'EXCEL.SHEET'.&lt;/P&gt;&lt;P&gt;IF sy-subrc NE 0.&lt;/P&gt;&lt;P&gt;lv_subrc = sy-subrc.&lt;/P&gt;&lt;P&gt;FREE OBJECT obj_ex_sheet.&lt;/P&gt;&lt;P&gt;PERFORM error_handling_ms_excel USING lv_subrc.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL METHOD OF obj_ex_sheet 'Application' = obj_ex_app.&lt;/P&gt;&lt;P&gt;IF sy-subrc NE 0.&lt;/P&gt;&lt;P&gt;lv_subrc = sy-subrc.&lt;/P&gt;&lt;P&gt;FREE OBJECT obj_ex_app.&lt;/P&gt;&lt;P&gt;FREE OBJECT obj_ex_sheet.&lt;/P&gt;&lt;P&gt;PERFORM error_handling_ms_excel USING lv_subrc.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;SET PROPERTY OF obj_ex_app 'Visible' = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;open data file: main file &lt;/P&gt;&lt;P&gt;CALL METHOD OF obj_ex_app 'Workbooks' = lv_ole_books.&lt;/P&gt;&lt;P&gt;CALL METHOD OF lv_ole_books 'Open' = obj_ex_wbook&lt;/P&gt;&lt;P&gt;EXPORTING #1 = gv_filename&lt;/P&gt;&lt;P&gt;#2 = 2&lt;/P&gt;&lt;P&gt;#3 = 0&lt;/P&gt;&lt;P&gt;#4 = 1&lt;/P&gt;&lt;P&gt;#5 = 0&lt;/P&gt;&lt;P&gt;#6 = 0&lt;/P&gt;&lt;P&gt;#7 = 1.&lt;/P&gt;&lt;P&gt;IF sy-subrc NE 0.&lt;/P&gt;&lt;P&gt;lv_subrc = sy-subrc.&lt;/P&gt;&lt;P&gt;FREE OBJECT obj_ex_wbook.&lt;/P&gt;&lt;P&gt;FREE OBJECT obj_ex_app.&lt;/P&gt;&lt;P&gt;FREE OBJECT obj_ex_sheet.&lt;/P&gt;&lt;P&gt;PERFORM error_handling_ms_excel USING lv_subrc.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;FREE OBJECT lv_ole_books.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL METHOD OF obj_ex_wbook 'Worksheets' = lv_ole_sheets.&lt;/P&gt;&lt;P&gt;CALL METHOD OF lv_ole_sheets 'Item' = obj_ex_wsheet&lt;/P&gt;&lt;P&gt;EXPORTING #1 = 1.&lt;/P&gt;&lt;P&gt;FREE OBJECT lv_ole_sheets.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GET PROPERTY OF obj_ex_wsheet 'UsedRange' = obj_ex_usedrange.&lt;/P&gt;&lt;P&gt;CALL METHOD OF obj_ex_usedrange 'AutoFormat'&lt;/P&gt;&lt;P&gt;EXPORTING #1 = 18.&lt;/P&gt;&lt;P&gt;SET PROPERTY OF obj_ex_wsheet 'Name' = sy-tcode.&lt;/P&gt;&lt;P&gt;FREE OBJECT obj_ex_usedrange.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PERFORM free_ole_objects.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'FLUSH'&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;OTHERS = 0.&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;regards,&lt;/P&gt;&lt;P&gt;Divya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Mar 2008 05:26:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/3570120#M859212</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-26T05:26:46Z</dc:date>
    </item>
    <item>
      <title>Re: unicode error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/3570121#M859213</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;&lt;/P&gt;&lt;P&gt;Go to program attributes and enable the check box&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*UNICODE CHECKS ACTIVE"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Mar 2008 05:40:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/3570121#M859213</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-26T05:40:48Z</dc:date>
    </item>
    <item>
      <title>Re: unicode error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/3570122#M859214</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;its not working.I hv already tried.&lt;/P&gt;&lt;P&gt;give me some other solution....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Mar 2008 05:52:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/3570122#M859214</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-26T05:52:57Z</dc:date>
    </item>
    <item>
      <title>Re: unicode error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/3570123#M859215</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any take on this....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I really need solution ASAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;bye,&lt;/P&gt;&lt;P&gt;Divya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Mar 2008 07:34:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/3570123#M859215</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-27T07:34:32Z</dc:date>
    </item>
    <item>
      <title>Re: unicode error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/3570124#M859216</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;Use TCode &lt;STRONG&gt;UCCHECK&lt;/STRONG&gt;,Give ur program name and execute .It will show the errors and solution.do accordingly.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Mar 2008 07:44:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/3570124#M859216</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-27T07:44:39Z</dc:date>
    </item>
    <item>
      <title>Re: unicode error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/3570125#M859217</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I hv executed the Tcode UCCHECK with my program and I get the error as " Upload/WS_UPLOAD and Download/WS_DOWNLOAD are obolete since they are not Unicode enabled; use the class cl_gui_frontend_services"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so plz tell me how can I implement this class for WS_DOWNLOAD  ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASAP&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;its urgent !!!!!!!&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;bye&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Mar 2008 10:40:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/3570125#M859217</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-27T10:40:55Z</dc:date>
    </item>
    <item>
      <title>Re: unicode error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/3570126#M859218</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi divya&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try with GUI_DOWNLOAD&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 May 2008 12:46:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/3570126#M859218</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-19T12:46:08Z</dc:date>
    </item>
    <item>
      <title>Re: unicode error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/3570127#M859219</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 am giving sample code..to replace this function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   CALL FUNCTION 'WS_DOWNLOAD'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;             FILENAME                = P_OUTFIL&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;             FILETYPE                = 'DAT'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        TABLES&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;             DATA_TAB                = ITABCOMMA&lt;/P&gt;&lt;/LI&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;             FILE_OPEN_ERROR         = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;             FILE_WRITE_ERROR        = 2&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;             INVALID_FILESIZE        = 3&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;             INVALID_TABLE_WIDTH     = 4&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;             INVALID_TYPE            = 5&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;             NO_BATCH                = 6&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;             UNKNOWN_ERROR           = 7&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;             GUI_REFUSE_FILETRANSFER = 8&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;             OTHERS                  = 9.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NEW CODE:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: V_FILENAME TYPE STRING.&lt;/P&gt;&lt;P&gt;V_FILENAME = P_OUTFIL.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'GUI_DOWNLOAD'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    FILENAME                        = V_FILENAME&lt;/P&gt;&lt;P&gt;    FILETYPE                        = 'DAT'&lt;/P&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    DATA_TAB                        = ITABCOMMA&lt;/P&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;P&gt;   FILE_WRITE_ERROR                = 1&lt;/P&gt;&lt;P&gt;   NO_BATCH                        = 2&lt;/P&gt;&lt;P&gt;   GUI_REFUSE_FILETRANSFER         = 3&lt;/P&gt;&lt;P&gt;   INVALID_TYPE                    = 4&lt;/P&gt;&lt;P&gt;   NO_AUTHORITY                    = 5&lt;/P&gt;&lt;P&gt;   UNKNOWN_ERROR                   = 6&lt;/P&gt;&lt;P&gt;   HEADER_NOT_ALLOWED              = 7&lt;/P&gt;&lt;P&gt;   SEPARATOR_NOT_ALLOWED           = 8&lt;/P&gt;&lt;P&gt;   FILESIZE_NOT_ALLOWED            = 9&lt;/P&gt;&lt;P&gt;   HEADER_TOO_LONG                 = 10&lt;/P&gt;&lt;P&gt;   DP_ERROR_CREATE                 = 11&lt;/P&gt;&lt;P&gt;   DP_ERROR_SEND                   = 12&lt;/P&gt;&lt;P&gt;   DP_ERROR_WRITE                  = 13&lt;/P&gt;&lt;P&gt;   UNKNOWN_DP_ERROR                = 14&lt;/P&gt;&lt;P&gt;   ACCESS_DENIED                   = 15&lt;/P&gt;&lt;P&gt;   DP_OUT_OF_MEMORY                = 16&lt;/P&gt;&lt;P&gt;   DISK_FULL                       = 17&lt;/P&gt;&lt;P&gt;   DP_TIMEOUT                      = 18&lt;/P&gt;&lt;P&gt;   FILE_NOT_FOUND                  = 19&lt;/P&gt;&lt;P&gt;   DATAPROVIDER_EXCEPTION          = 20&lt;/P&gt;&lt;P&gt;   CONTROL_FLUSH_ERROR             = 21&lt;/P&gt;&lt;P&gt;   OTHERS                          = 22.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead of GUI_DOWNLOAD, you can use the METHOD from Cl_GuI_Frontendservices =&amp;gt; GUI_DOWNLOAD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If u hav any doubts, please revert back.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sandeep Reddy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 May 2008 13:02:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/3570127#M859219</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-19T13:02:07Z</dc:date>
    </item>
    <item>
      <title>Re: unicode error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/3570128#M859220</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 gave you the code for  WS_DOWNLOAD.&lt;/P&gt;&lt;P&gt;If u exactly tell me wat are the function modules you are using,&lt;/P&gt;&lt;P&gt;I will give you the respective sample code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ws_upload or?&lt;/P&gt;&lt;P&gt;download or?&lt;/P&gt;&lt;P&gt;upload?............tell me exact one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sandeep Reddy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 May 2008 13:05:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/3570128#M859220</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-19T13:05:12Z</dc:date>
    </item>
    <item>
      <title>Re: unicode error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/3570129#M859221</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Divya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use XXL_FULL_API function module, to download data to a excel file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also read the below document, on how to use it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Parameters of the XXL_FULL_API Function Module&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table Parameters&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;List data DATA, any structure&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          o Please note that the data table can contain both rows and columns, which are not intended to be used in the list object. You can restrict the rows to be transferred with the parameters DATA_STARTING/ENDING_AT (see below). Which columns are transferred and in which order they are to appear in the list object, is controlled by table SEMA (see also&lt;/P&gt;&lt;P&gt;          o Table SEMA ) Please note that the data table must not be transferred empty; it must always contain at least one row.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Titles of the vertical keys VKEY&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Number of the key column (INT2)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Text (domain SCRTEXT_L)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Characteristics of the horizontal keys HKEY&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      (see also&lt;/P&gt;&lt;P&gt;      Table HKEY )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hierarchy level (INT2)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Number of the column (INT2)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Text (domain SCRTEXT_L)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Semantic information SEMA &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Column number (INT2)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Type (C 3, value supply)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Standard aggregattion (C 3, value supply)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Origin of the column, i.e. number of the column in DATA (INT2)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Assigned currency column (from Release 2.1B)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Printed texts PRINT_TEXT&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HeaderFooter (C, value supply: H/F)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LeftCenterRight (C, value supply: L/C/R)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Line number (INT2)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Text (C 60)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Online texts ONLINE_TEXT&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Line number (INT2)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Key text (domain SCRTEXT_L)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Value text (C 60)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Scalar Input Parameters&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;File name for the list object FILENAME (C &lt;span class="lia-unicode-emoji" title=":smiling_face_with_sunglasses:"&gt;😎&lt;/span&gt;&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Title row HEADER_1 (C 60)&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Subtitle HEADER_2 (C 60)&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;First row to be transferred in the data table DATA_STARTING_AT (N)&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Last row to be transferred in the data table DATA_ENDING_AT (N)&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          o By supplying the parameters DATA_STARTING/ENDING_AT it is possible to identify a range of consecutive lines in the data table. If one of the two parameters does not have its default value, only the range defined by the two values is transferred. Please note that the range to be transferred from the table DATA must not be empty. For the same reason, the data table as a whole must never be empty.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;No. of V keys N_VRT_KEYS (N)&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;No. of H keys N_HRZ_KEYS (N)&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;No. of attribute columns (i.e. columns in the actual data range) N_ATT_COLS (N)&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Switch for string conversions SEMA_TYPE (C, value supply: 'blank'/X)&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Default title for storing the list object in SAPoffice (domain SO_OBJ_DES)&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Flag to determine the default processing option NO_START (C, value supply: 'blank'/X)&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Flag to suppress the selection screen NO_DIALOG (C, value supply: 'blank'/X)&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          o If both NO_DIALOG = u2018Xu2019 and NO_START = u2018Xu2019, the selection screen of XXL is suppressed. The list object will automatically be stored in SAPoffice under the title determined by SO_TITLE (in case SO_TITLE is empty, an artificial title will be created). In every other combination of the two parameters (including the default one), the selection screen will be displayed. In this case, the value in NO_START will only determine which option is given as the default when the selection screen is displayed for the first time, whereas NO_DIALOG will have no effect at all.&lt;/P&gt;&lt;P&gt;          o In case XXL_FULL_API is called during background processing, it behaves as if both NO_DIALOG = u2018Xu2019 and NO_START = u2018Xu2019.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Muthu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 May 2008 13:05:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/3570129#M859221</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-19T13:05:46Z</dc:date>
    </item>
    <item>
      <title>Re: unicode error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/3570130#M859222</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;dear friend&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In a non-Unicode system, the data is read or written without conversion. In a Unicode system, the characters of the file are handled according to the non-Unicode codepage that would be assigned at the time of reading or writing in a non-Unicode system according to the entry in the database table TCP0C of the current text environment. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rewards expected.&lt;/P&gt;&lt;P&gt;vivek srivastava&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 May 2008 13:10:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error/m-p/3570130#M859222</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-19T13:10:14Z</dc:date>
    </item>
  </channel>
</rss>

