<?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 Abap run time error in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-run-time-error/m-p/6583636#M1434778</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This error is related to WCM (Work clearance process)&lt;/P&gt;&lt;P&gt;Whule excecuting the change transaction , getting this error in development server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Runtime Errors         CALL_FUNCTION_NOT_FOUND&lt;/P&gt;&lt;P&gt;Except.                CX_SY_DYN_CALL_ILLEGAL_FUNC&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; Short text&lt;/P&gt;&lt;P&gt;     Function module "WCGW_OBJ_IWERK_GET" not found.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; What happened?&lt;/P&gt;&lt;P&gt;     The function module "WCGW_OBJ_IWERK_GET" is called,&lt;/P&gt;&lt;P&gt;     but cannot be found in the library.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     Error in the ABAP Application Program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     The current ABAP program "SAPLWCFE" had to be terminated because it has&lt;/P&gt;&lt;P&gt;     come across a statement that unfortunately cannot be executed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Error analysis&lt;/P&gt;&lt;P&gt;     An exception occurred that is explained in detail below.&lt;/P&gt;&lt;P&gt;     The exception, which is assigned to class 'CX_SY_DYN_CALL_ILLEGAL_FUNC', was&lt;/P&gt;&lt;P&gt;      not caught and&lt;/P&gt;&lt;P&gt;     therefore caused a runtime error.&lt;/P&gt;&lt;P&gt;     The reason for the exception is:&lt;/P&gt;&lt;P&gt;     The program "SAPLWCFE" contains the CALL FUNCTION statement.&lt;/P&gt;&lt;P&gt;     The name of the function module to be called is "WCGW_OBJ_IWERK_GET".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     No function module exists with the name "WCGW_OBJ_IWERK_GET".&lt;/P&gt;&lt;P&gt;     All function modules are listed in the Function Library (SE37).&lt;/P&gt;&lt;P&gt;     -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     Possible reasons:&lt;/P&gt;&lt;P&gt;     a) Wrong name specified. Pay particular attention to&lt;/P&gt;&lt;P&gt;        upper/lower case and underscores ("_").&lt;/P&gt;&lt;P&gt;        or&lt;/P&gt;&lt;P&gt;     b) Transport error&lt;/P&gt;&lt;P&gt;     c) In the case of an enqueue/dequeue module,&lt;/P&gt;&lt;P&gt;        the lock object may not have been activated&lt;/P&gt;&lt;P&gt;        (ABAP/4 Dictionary).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Missing Handling of System Exception&lt;/P&gt;&lt;P&gt;    Program                                 SAPLWCFE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Trigger Location of Exception&lt;/P&gt;&lt;P&gt;    Program                                 SAPLWCFE&lt;/P&gt;&lt;P&gt;    Include                                 LWCFEI01&lt;/P&gt;&lt;P&gt;    Row                                     70&lt;/P&gt;&lt;P&gt;    Module type                             (MODULE PAI)&lt;/P&gt;&lt;P&gt;    Module Name                             D1100_INF&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Source Code Extract&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Line  SourceCde&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   40       LEAVE TO TRANSACTION ssc-fcode.&lt;/P&gt;&lt;P&gt;   41     WHEN wctpf_navigation-exit.&lt;/P&gt;&lt;P&gt;   42 *     CREATION &amp;lt;- .f.&lt;/P&gt;&lt;P&gt;   43 *     (your are reminded, that FB 'WCFX_DIALOG_INIT' isn't called)&lt;/P&gt;&lt;P&gt;   44       CALL FUNCTION 'WCFX_CREATION_RESET'&lt;/P&gt;&lt;P&gt;   45         EXCEPTIONS&lt;/P&gt;&lt;P&gt;   46           error  = 1&lt;/P&gt;&lt;P&gt;   47           OTHERS = 2.&lt;/P&gt;&lt;P&gt;   48       PERFORM lwcfwf01_exception_show IN PROGRAM saplwcfw&lt;/P&gt;&lt;P&gt;   49         USING&lt;/P&gt;&lt;P&gt;   50           sy-subrc&lt;/P&gt;&lt;P&gt;   51           'WCFX_CREATION_RESET'.&lt;/P&gt;&lt;P&gt;   52&lt;/P&gt;&lt;P&gt;   53       LEAVE PROGRAM.&lt;/P&gt;&lt;P&gt;   54     WHEN OTHERS.&lt;/P&gt;&lt;P&gt;   55 *   =&amp;gt; bug&lt;/P&gt;&lt;P&gt;   56       MESSAGE a724 WITH ssc-fcode.&lt;/P&gt;&lt;P&gt;   57 *       Funktionscode (&amp;amp;) ist nicht definiert&lt;/P&gt;&lt;P&gt;   58   ENDCASE.&lt;/P&gt;&lt;P&gt;   59 ENDMODULE.                             " D1100_EXIT  INPUT&lt;/P&gt;&lt;P&gt;   60&lt;/P&gt;&lt;P&gt;   61 ************************************************************************&lt;/P&gt;&lt;P&gt;   62 * Module D1100_INF INPUT&lt;/P&gt;&lt;P&gt;   63 *----&lt;/P&gt;&lt;HR originaltext="------------------------------------------------------------------" /&gt;&lt;P&gt;   64 * Purpose: get specific fields (WCM object) for (global) "INF"&lt;/P&gt;&lt;P&gt;   65 ************************************************************************&lt;/P&gt;&lt;P&gt;   66 MODULE d1100_inf INPUT.&lt;/P&gt;&lt;P&gt;   67   CHECK ( wcsresp-iwerk IS NOT INITIAL ).&lt;/P&gt;&lt;P&gt;   68&lt;/P&gt;&lt;P&gt;   69 * correct invisible planning plant at change/display mode&lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;   CALL FUNCTION 'WCGW_OBJ_IWERK_GET'&lt;/P&gt;&lt;P&gt;   71     EXPORTING&lt;/P&gt;&lt;P&gt;   72       i_aktyp  = inf-aktyp&lt;/P&gt;&lt;P&gt;   73       i_iwerk  = wcsresp-iwerk&lt;/P&gt;&lt;P&gt;   74       i_objart = inf-objart&lt;/P&gt;&lt;P&gt;   75       i_objtyp = inf-objtyp&lt;/P&gt;&lt;P&gt;   76       i_objkey = wcswap-wapnr&lt;/P&gt;&lt;P&gt;   77     IMPORTING&lt;/P&gt;&lt;P&gt;   78       e_iwerk  = wcsresp-iwerk&lt;/P&gt;&lt;P&gt;   79     EXCEPTIONS&lt;/P&gt;&lt;P&gt;   80       error    = 1&lt;/P&gt;&lt;P&gt;   81       OTHERS   = 2.&lt;/P&gt;&lt;P&gt;   82   PERFORM lwcfwf01_exception_show IN PROGRAM saplwcfw&lt;/P&gt;&lt;P&gt;   83     USING&lt;/P&gt;&lt;P&gt;   84       sy-subrc&lt;/P&gt;&lt;P&gt;   85       'WCGW_OBJ_IWERK_GET'.&lt;/P&gt;&lt;P&gt;   86&lt;/P&gt;&lt;P&gt;   87 * read customizing view for WCM object&lt;/P&gt;&lt;P&gt;   88   inf-iwerk = wcsresp-iwerk.&lt;/P&gt;&lt;P&gt;   89   CALL FUNCTION 'WCFC_WCCO_GET'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; regards &lt;/P&gt;&lt;P&gt;Sandeep&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 17 Feb 2010 09:24:49 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-02-17T09:24:49Z</dc:date>
    <item>
      <title>Abap run time error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-run-time-error/m-p/6583636#M1434778</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This error is related to WCM (Work clearance process)&lt;/P&gt;&lt;P&gt;Whule excecuting the change transaction , getting this error in development server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Runtime Errors         CALL_FUNCTION_NOT_FOUND&lt;/P&gt;&lt;P&gt;Except.                CX_SY_DYN_CALL_ILLEGAL_FUNC&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; Short text&lt;/P&gt;&lt;P&gt;     Function module "WCGW_OBJ_IWERK_GET" not found.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; What happened?&lt;/P&gt;&lt;P&gt;     The function module "WCGW_OBJ_IWERK_GET" is called,&lt;/P&gt;&lt;P&gt;     but cannot be found in the library.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     Error in the ABAP Application Program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     The current ABAP program "SAPLWCFE" had to be terminated because it has&lt;/P&gt;&lt;P&gt;     come across a statement that unfortunately cannot be executed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Error analysis&lt;/P&gt;&lt;P&gt;     An exception occurred that is explained in detail below.&lt;/P&gt;&lt;P&gt;     The exception, which is assigned to class 'CX_SY_DYN_CALL_ILLEGAL_FUNC', was&lt;/P&gt;&lt;P&gt;      not caught and&lt;/P&gt;&lt;P&gt;     therefore caused a runtime error.&lt;/P&gt;&lt;P&gt;     The reason for the exception is:&lt;/P&gt;&lt;P&gt;     The program "SAPLWCFE" contains the CALL FUNCTION statement.&lt;/P&gt;&lt;P&gt;     The name of the function module to be called is "WCGW_OBJ_IWERK_GET".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     No function module exists with the name "WCGW_OBJ_IWERK_GET".&lt;/P&gt;&lt;P&gt;     All function modules are listed in the Function Library (SE37).&lt;/P&gt;&lt;P&gt;     -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     Possible reasons:&lt;/P&gt;&lt;P&gt;     a) Wrong name specified. Pay particular attention to&lt;/P&gt;&lt;P&gt;        upper/lower case and underscores ("_").&lt;/P&gt;&lt;P&gt;        or&lt;/P&gt;&lt;P&gt;     b) Transport error&lt;/P&gt;&lt;P&gt;     c) In the case of an enqueue/dequeue module,&lt;/P&gt;&lt;P&gt;        the lock object may not have been activated&lt;/P&gt;&lt;P&gt;        (ABAP/4 Dictionary).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Missing Handling of System Exception&lt;/P&gt;&lt;P&gt;    Program                                 SAPLWCFE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Trigger Location of Exception&lt;/P&gt;&lt;P&gt;    Program                                 SAPLWCFE&lt;/P&gt;&lt;P&gt;    Include                                 LWCFEI01&lt;/P&gt;&lt;P&gt;    Row                                     70&lt;/P&gt;&lt;P&gt;    Module type                             (MODULE PAI)&lt;/P&gt;&lt;P&gt;    Module Name                             D1100_INF&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Source Code Extract&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Line  SourceCde&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   40       LEAVE TO TRANSACTION ssc-fcode.&lt;/P&gt;&lt;P&gt;   41     WHEN wctpf_navigation-exit.&lt;/P&gt;&lt;P&gt;   42 *     CREATION &amp;lt;- .f.&lt;/P&gt;&lt;P&gt;   43 *     (your are reminded, that FB 'WCFX_DIALOG_INIT' isn't called)&lt;/P&gt;&lt;P&gt;   44       CALL FUNCTION 'WCFX_CREATION_RESET'&lt;/P&gt;&lt;P&gt;   45         EXCEPTIONS&lt;/P&gt;&lt;P&gt;   46           error  = 1&lt;/P&gt;&lt;P&gt;   47           OTHERS = 2.&lt;/P&gt;&lt;P&gt;   48       PERFORM lwcfwf01_exception_show IN PROGRAM saplwcfw&lt;/P&gt;&lt;P&gt;   49         USING&lt;/P&gt;&lt;P&gt;   50           sy-subrc&lt;/P&gt;&lt;P&gt;   51           'WCFX_CREATION_RESET'.&lt;/P&gt;&lt;P&gt;   52&lt;/P&gt;&lt;P&gt;   53       LEAVE PROGRAM.&lt;/P&gt;&lt;P&gt;   54     WHEN OTHERS.&lt;/P&gt;&lt;P&gt;   55 *   =&amp;gt; bug&lt;/P&gt;&lt;P&gt;   56       MESSAGE a724 WITH ssc-fcode.&lt;/P&gt;&lt;P&gt;   57 *       Funktionscode (&amp;amp;) ist nicht definiert&lt;/P&gt;&lt;P&gt;   58   ENDCASE.&lt;/P&gt;&lt;P&gt;   59 ENDMODULE.                             " D1100_EXIT  INPUT&lt;/P&gt;&lt;P&gt;   60&lt;/P&gt;&lt;P&gt;   61 ************************************************************************&lt;/P&gt;&lt;P&gt;   62 * Module D1100_INF INPUT&lt;/P&gt;&lt;P&gt;   63 *----&lt;/P&gt;&lt;HR originaltext="------------------------------------------------------------------" /&gt;&lt;P&gt;   64 * Purpose: get specific fields (WCM object) for (global) "INF"&lt;/P&gt;&lt;P&gt;   65 ************************************************************************&lt;/P&gt;&lt;P&gt;   66 MODULE d1100_inf INPUT.&lt;/P&gt;&lt;P&gt;   67   CHECK ( wcsresp-iwerk IS NOT INITIAL ).&lt;/P&gt;&lt;P&gt;   68&lt;/P&gt;&lt;P&gt;   69 * correct invisible planning plant at change/display mode&lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;   CALL FUNCTION 'WCGW_OBJ_IWERK_GET'&lt;/P&gt;&lt;P&gt;   71     EXPORTING&lt;/P&gt;&lt;P&gt;   72       i_aktyp  = inf-aktyp&lt;/P&gt;&lt;P&gt;   73       i_iwerk  = wcsresp-iwerk&lt;/P&gt;&lt;P&gt;   74       i_objart = inf-objart&lt;/P&gt;&lt;P&gt;   75       i_objtyp = inf-objtyp&lt;/P&gt;&lt;P&gt;   76       i_objkey = wcswap-wapnr&lt;/P&gt;&lt;P&gt;   77     IMPORTING&lt;/P&gt;&lt;P&gt;   78       e_iwerk  = wcsresp-iwerk&lt;/P&gt;&lt;P&gt;   79     EXCEPTIONS&lt;/P&gt;&lt;P&gt;   80       error    = 1&lt;/P&gt;&lt;P&gt;   81       OTHERS   = 2.&lt;/P&gt;&lt;P&gt;   82   PERFORM lwcfwf01_exception_show IN PROGRAM saplwcfw&lt;/P&gt;&lt;P&gt;   83     USING&lt;/P&gt;&lt;P&gt;   84       sy-subrc&lt;/P&gt;&lt;P&gt;   85       'WCGW_OBJ_IWERK_GET'.&lt;/P&gt;&lt;P&gt;   86&lt;/P&gt;&lt;P&gt;   87 * read customizing view for WCM object&lt;/P&gt;&lt;P&gt;   88   inf-iwerk = wcsresp-iwerk.&lt;/P&gt;&lt;P&gt;   89   CALL FUNCTION 'WCFC_WCCO_GET'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; regards &lt;/P&gt;&lt;P&gt;Sandeep&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Feb 2010 09:24:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-run-time-error/m-p/6583636#M1434778</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-17T09:24:49Z</dc:date>
    </item>
    <item>
      <title>Re: Abap run time error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-run-time-error/m-p/6583637#M1434779</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;This all seems fairly self explanatory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;The program "SAPLWCFE" contains the CALL FUNCTION statement. The name of the function module to be called is "WCGW_OBJ_IWERK_GET". No function module exists with the name "WCGW_OBJ_IWERK_GET".&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Function module WCGW_OBJ_IWERK_GET is missing.  I've checked in my system and it exists, so I guess you need to find out what's happened to it in your system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Feb 2010 09:34:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-run-time-error/m-p/6583637#M1434779</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-17T09:34:07Z</dc:date>
    </item>
    <item>
      <title>Re: Abap run time error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-run-time-error/m-p/6583638#M1434780</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Feb 2010 05:24:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-run-time-error/m-p/6583638#M1434780</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-25T05:24:47Z</dc:date>
    </item>
  </channel>
</rss>

