<?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: CALL_FUNCTION_CONFLICT_TAB_TYP in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-conflict-tab-typ/m-p/4835207#M1131138</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, but doing so, how do I define the exact fields that my original imp_tab_xls  table contained, becuase these is esential to have the same description and name as I have showed above.... ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if I do :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if imp_tab_xls-serge  ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when activating it says that the field: imp_tab_xls-serge does not exist....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 21 Nov 2008 15:08:02 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-11-21T15:08:02Z</dc:date>
    <item>
      <title>CALL_FUNCTION_CONFLICT_TAB_TYP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-conflict-tab-typ/m-p/4835205#M1131136</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have the following code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of imp_tab_xls occurs 0,&lt;/P&gt;&lt;P&gt;      serge like equi-serge,&lt;/P&gt;&lt;P&gt;      tip_cont(4) type c,&lt;/P&gt;&lt;P&gt;      dep_to like ztransfer-dep_to,&lt;/P&gt;&lt;P&gt;      datcrea like ztransfer-datcrea,&lt;/P&gt;&lt;P&gt;      end of imp_tab_xls.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK dmselection WITH FRAME TITLE text-001.&lt;/P&gt;&lt;P&gt;parameter: path like RLGRAP-FILENAME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK dmselection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call FUNCTION 'KCD_EXCEL_OLE_TO_INT_CONVERT'&lt;/P&gt;&lt;P&gt;  Exporting&lt;/P&gt;&lt;P&gt;     FILENAME  = path&lt;/P&gt;&lt;P&gt;     I_BEGIN_COL = 1&lt;/P&gt;&lt;P&gt;     I_BEGIN_ROW = 1&lt;/P&gt;&lt;P&gt;     I_END_COL = 7&lt;/P&gt;&lt;P&gt;     I_END_ROW = 65000&lt;/P&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;      INTERN = imp_tab_xls&lt;/P&gt;&lt;P&gt;  EXCEPTIONS&lt;/P&gt;&lt;P&gt;      INCONSISTENT_PARAMETERS&lt;/P&gt;&lt;P&gt;      UPLOAD_OLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When running it, it ends in short dump with the following error:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Runtime errors         CALL_FUNCTION_CONFLICT_TAB_TY&lt;/P&gt;&lt;P&gt;Exception              CX_SY_DYN_CALL_ILLEGAL_TYPE&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;P&gt;And this is the Error analysis:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An exception occurred. This exception will be dealt with in more d&lt;/P&gt;&lt;P&gt;below. The exception, assigned to the class 'CX_SY_DYN_CALL_ILLEGA&lt;/P&gt;&lt;P&gt; not caught, which&lt;/P&gt;&lt;P&gt; led to a runtime error. The reason for this exception is:&lt;/P&gt;&lt;P&gt;The system tried to pass internal table "IMP_TAB_XLS[]" to the for&lt;/P&gt;&lt;P&gt;parameter "INTERN", but a type conflict occurred between the&lt;/P&gt;&lt;P&gt;formal and the actual parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The condition selected below has been violated:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(" ") The access types defined for the tables are incompatible.&lt;/P&gt;&lt;P&gt;      The following hierarchy shows the compatibility rules:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                          ANY_TABLE&lt;/P&gt;&lt;P&gt;                          /       \&lt;/P&gt;&lt;P&gt;                         /         \&lt;/P&gt;&lt;P&gt;                    INDEX_TABLE   HASHED_TABLE&lt;/P&gt;&lt;P&gt;                    /        \&lt;/P&gt;&lt;P&gt;                   /          \&lt;/P&gt;&lt;P&gt;            STANDARD_TABLE    SORTED_TABLE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      A concrete access type is only compatible with types higher&lt;/P&gt;&lt;P&gt;      in the hierarchy. For example, STANDARD_TABLE is compatible&lt;/P&gt;&lt;P&gt;      with INDEX_TABLE and ANY_TABLE, but not with HASHED_TABLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;("X") The line types of the tables are incompatible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;("X") The table keys of the tables are not identical.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(" ") One of the tables has a UNIQUE key, but the other has a&lt;/P&gt;&lt;P&gt;      NON-UNIQUE key.&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;P&gt;&lt;/P&gt;&lt;P&gt;How can I solve this problem?&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Nov 2008 14:47:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-conflict-tab-typ/m-p/4835205#M1131136</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-21T14:47:54Z</dc:date>
    </item>
    <item>
      <title>Re: CALL_FUNCTION_CONFLICT_TAB_TYP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-conflict-tab-typ/m-p/4835206#M1131137</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;declare imp_tab_xls  as :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; data : imp_tab_xls type  kcde_cells  occurs 0.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Nov 2008 14:53:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-conflict-tab-typ/m-p/4835206#M1131137</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-21T14:53:33Z</dc:date>
    </item>
    <item>
      <title>Re: CALL_FUNCTION_CONFLICT_TAB_TYP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-conflict-tab-typ/m-p/4835207#M1131138</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, but doing so, how do I define the exact fields that my original imp_tab_xls  table contained, becuase these is esential to have the same description and name as I have showed above.... ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if I do :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if imp_tab_xls-serge  ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when activating it says that the field: imp_tab_xls-serge does not exist....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Nov 2008 15:08:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-conflict-tab-typ/m-p/4835207#M1131138</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-21T15:08:02Z</dc:date>
    </item>
    <item>
      <title>Re: CALL_FUNCTION_CONFLICT_TAB_TYP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-conflict-tab-typ/m-p/4835208#M1131139</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One point is that we have to declare variables the way it is declared in FM ..  'KCD_EXCEL_OLE_TO_INT_CONVERT' ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this FM .. tables INTERN refers to KCDE_CELLS .. so we also need to refer to the same ..&lt;/P&gt;&lt;P&gt;U don't have the field serge in KCDE_CELLS .. U need to get serge from KCDE_CELLS-VALUE ..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Nov 2008 15:14:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-conflict-tab-typ/m-p/4835208#M1131139</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-21T15:14:03Z</dc:date>
    </item>
  </channel>
</rss>

