<?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: Changes In Function Module in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/changes-in-function-module/m-p/4547257#M1073933</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The response is too good..thanks..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 30 Sep 2008 07:00:15 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-09-30T07:00:15Z</dc:date>
    <item>
      <title>Changes In Function Module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changes-in-function-module/m-p/4547251#M1073927</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello abap Gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My Zdevelopment reports shows the runtime errors due to &lt;/P&gt;&lt;P&gt;changes in this function module :-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ZCFM_HIDE_INITIALFIELD_ALV&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So anybody pls. suggest me what i can do for this.I m attaching the coding also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FUNCTION ZCFM_HIDE_INITIALFIELD_ALV.&lt;/P&gt;&lt;P&gt;*"----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;STRONG&gt;"&lt;/STRONG&gt;"Local Interface:&lt;/P&gt;&lt;P&gt;*"  IMPORTING&lt;/P&gt;&lt;P&gt;*"     REFERENCE(STRUC)&lt;/P&gt;&lt;P&gt;*"     REFERENCE(FIELDCAT) TYPE  SLIS_T_FIELDCAT_ALV&lt;/P&gt;&lt;P&gt;*"     REFERENCE(HIDE) OPTIONAL&lt;/P&gt;&lt;P&gt;*"  EXPORTING&lt;/P&gt;&lt;P&gt;*"     REFERENCE(FIELDCAT_E) TYPE  SLIS_T_FIELDCAT_ALV&lt;/P&gt;&lt;P&gt;*"  TABLES&lt;/P&gt;&lt;P&gt;*"      IT_TAB&lt;/P&gt;&lt;P&gt;*"      IT_TAB1&lt;/P&gt;&lt;P&gt;*"----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;DATA S_FIELDCAT TYPE SLIS_FIELDCAT_ALV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS &amp;lt;F1&amp;gt;.&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS &amp;lt;F2&amp;gt;.&lt;/P&gt;&lt;P&gt;DATA FIELDNAME(30).&lt;/P&gt;&lt;P&gt;DATA VALUE(100).&lt;/P&gt;&lt;P&gt;DATA : BEGIN OF DISPLAY OCCURS 0,&lt;/P&gt;&lt;P&gt;FIELDNAME LIKE DD03L-FIELDNAME,&lt;/P&gt;&lt;P&gt;END OF DISPLAY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT IT_TAB.&lt;/P&gt;&lt;P&gt;DO .&lt;/P&gt;&lt;P&gt;READ TABLE FIELDCAT INDEX SY-INDEX&lt;/P&gt;&lt;P&gt;INTO S_FIELDCAT.&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;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;ASSIGN SY-INDEX OF STRUCTURE IT_TAB1 TO &amp;lt;F1&amp;gt;.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;CONCATENATE 'IT_TAB-' S_FIELDCAT-FIELDNAME INTO&lt;/P&gt;&lt;P&gt;FIELDNAME.&lt;/P&gt;&lt;P&gt;ASSIGN (FIELDNAME) TO &amp;lt;F1&amp;gt;.&lt;/P&gt;&lt;P&gt;IF NOT &amp;lt;F1&amp;gt; IS INITIAL.&lt;/P&gt;&lt;P&gt;DISPLAY-FIELDNAME = S_FIELDCAT-FIELDNAME.&lt;/P&gt;&lt;P&gt;COLLECT DISPLAY.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDDO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;FIELDCAT_E = FIELDCAT.&lt;/P&gt;&lt;P&gt;LOOP AT FIELDCAT_E INTO S_FIELDCAT .&lt;/P&gt;&lt;P&gt;READ TABLE DISPLAY WITH KEY FIELDNAME = S_FIELDCAT-FIELDNAME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF SY-SUBRC NE 0.&lt;/P&gt;&lt;P&gt;IF HIDE IS INITIAL.&lt;/P&gt;&lt;P&gt;DELETE FIELDCAT_E.&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;S_FIELDCAT-NO_OUT = 'X'.&lt;/P&gt;&lt;P&gt;CLEAR S_FIELDCAT-KEY .&lt;/P&gt;&lt;P&gt;MODIFY FIELDCAT_E FROM S_FIELDCAT TRANSPORTING NO_OUT&lt;/P&gt;&lt;P&gt;KEY.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endfunction.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Sep 2008 04:42:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changes-in-function-module/m-p/4547251#M1073927</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-22T04:42:18Z</dc:date>
    </item>
    <item>
      <title>Re: Changes In Function Module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changes-in-function-module/m-p/4547252#M1073928</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;   What are runtime  errors you are getting?&lt;/P&gt;&lt;P&gt;  And which part of above function module modifed? Interface or source code?&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;  Get back with error datails, b'coz hard to analyze issue with given information...!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naveen Inuganti.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Sep 2008 05:05:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changes-in-function-module/m-p/4547252#M1073928</guid>
      <dc:creator>naveen_inuganti2</dc:creator>
      <dc:date>2008-09-22T05:05:32Z</dc:date>
    </item>
    <item>
      <title>Re: Changes In Function Module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changes-in-function-module/m-p/4547253#M1073929</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is all about the runtime error :-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Incorrect parameter with CALL FUNCTION&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Error analysis :- &lt;/P&gt;&lt;P&gt;&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_PARAM_MISSING', was&lt;/P&gt;&lt;P&gt;     not caught in&lt;/P&gt;&lt;P&gt;    procedure "HIDE_FIELDS" "(FORM)", nor was it propagated by a RAISING clause.&lt;/P&gt;&lt;P&gt;    Since the caller of the procedure could not have anticipated that the&lt;/P&gt;&lt;P&gt;    exception would occur, the current program is terminated.&lt;/P&gt;&lt;P&gt;    The reason for the exception is:&lt;/P&gt;&lt;P&gt;    When calling the function module "ZCFM_HIDE_INITIALFIELD_ALV", one of the&lt;/P&gt;&lt;P&gt;     parameters&lt;/P&gt;&lt;P&gt;    needed according to the interface description was not specified.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    This parameter was "IT_TAB1".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am not changing the function module, my couligue has change this he leave it &amp;amp; he doesn't tel to me. So pls. give some sol. to me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sumit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Sep 2008 06:58:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changes-in-function-module/m-p/4547253#M1073929</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-22T06:58:31Z</dc:date>
    </item>
    <item>
      <title>Re: Changes In Function Module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changes-in-function-module/m-p/4547254#M1073930</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;Through out the code I could see that internal table IT_ITAB1 is not used anywhere in the program. I feel instead of removing internal table IT_ITAB1 from declaration, open function module ZCFM_HIDE_INITIALFIELD_ALV in SE37 -&amp;gt; go to Tables tab and select optional check box against internal table IT_ITAB1 and activate it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reply back if it doesn't work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Sep 2008 09:12:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changes-in-function-module/m-p/4547254#M1073930</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-22T09:12:51Z</dc:date>
    </item>
    <item>
      <title>Re: Changes In Function Module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changes-in-function-module/m-p/4547255#M1073931</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Buddy, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its workiong fine.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Sep 2008 05:44:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changes-in-function-module/m-p/4547255#M1073931</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-23T05:44:55Z</dc:date>
    </item>
    <item>
      <title>Re: Changes In Function Module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changes-in-function-module/m-p/4547256#M1073932</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Also, for your future reference, use transaction ST22 where you can understand the reason of why run time error occured.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can yourself zero it down. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Ashish.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Sep 2008 09:16:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changes-in-function-module/m-p/4547256#M1073932</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-23T09:16:37Z</dc:date>
    </item>
    <item>
      <title>Re: Changes In Function Module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changes-in-function-module/m-p/4547257#M1073933</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The response is too good..thanks..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Sep 2008 07:00:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changes-in-function-module/m-p/4547257#M1073933</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-30T07:00:15Z</dc:date>
    </item>
  </channel>
</rss>

