<?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: subroutines in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/subroutines/m-p/4401353#M1046194</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;Define one local itab for FILEDS with structure and internal table...&lt;/P&gt;&lt;P&gt;Append that itab with entries...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After the loop..&lt;/P&gt;&lt;P&gt;write this syntax...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FILEDS() = ITAB()&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here finally FIELDS table carrie out the entries from subroutine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naveen.I&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 01 Sep 2008 07:35:51 GMT</pubDate>
    <dc:creator>naveen_inuganti2</dc:creator>
    <dc:date>2008-09-01T07:35:51Z</dc:date>
    <item>
      <title>subroutines</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/subroutines/m-p/4401342#M1046183</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;i'm using a function module where in table parameter i defined &lt;/P&gt;&lt;P&gt;FIELDS like RFC_DB_FLD. and pass this table through this subroutine&lt;/P&gt;&lt;P&gt; PERFORM Y_WS3  TABLES OPTIONS FIELDS DATA DATA1 DATA2 USING QSELECT&lt;/P&gt;&lt;P&gt;QUSER .&lt;/P&gt;&lt;P&gt; after getting these values in this form parameters&lt;/P&gt;&lt;P&gt;FORM Y_WS3  TABLES OPTIONS  FIELDS DATA DATA1  DATA2&lt;/P&gt;&lt;P&gt;USING QSELECT QUSER.&lt;/P&gt;&lt;P&gt; now i'm facing this error in one of my loop  &lt;/P&gt;&lt;P&gt;*The data object "FIELDS" has no structure and therefore no component		*&lt;/P&gt;&lt;P&gt;*called "FIELDNAME".	*&lt;/P&gt;&lt;P&gt;pls suggest me possible solution.&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Sep 2008 05:54:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/subroutines/m-p/4401342#M1046183</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-01T05:54:53Z</dc:date>
    </item>
    <item>
      <title>Re: subroutines</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/subroutines/m-p/4401343#M1046184</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anuj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  While writing the form statement you need to declare the type of that parameters.&lt;/P&gt;&lt;P&gt;For Instance:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
data : options type table of it_table1,
         fields type RFC_DB_FLD,
         qseelct type wa_tab.

PERFORM Y_WS3 TABLES OPTIONS FIELDS 
                             USING QSELECT.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now the form statemnt should be written in this form:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
FORM Y_WS3 TABLES OPTIONS LIKE IT_TABLE1
                                   FIELDS LIKE RFC_DB_FLD
                             USING QSELECT LIKE WA_TAB.
ENDFORM.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will be helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Swarna Munukoti.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Sep 2008 06:12:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/subroutines/m-p/4401343#M1046184</guid>
      <dc:creator>former_member217544</dc:creator>
      <dc:date>2008-09-01T06:12:55Z</dc:date>
    </item>
    <item>
      <title>Re: subroutines</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/subroutines/m-p/4401344#M1046185</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;Change your code like this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PERFORM Y_WS3 TABLES OPTIONS 
                                           FIELDS 
                                           DATA 
                                           DATA1 
                                           DATA2
                                USING QSELECT
                                           QUSER .&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;FORM Y_WS3 TABLES OPTIONS type standard table 
                                     FIELDS type standard table
                                     DATA type standard table
                                     DATA1 type standard table
                                     DATA2 type standard table
                          USING QSELECT 
                                     QUSER.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naveen.I&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Sep 2008 06:19:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/subroutines/m-p/4401344#M1046185</guid>
      <dc:creator>naveen_inuganti2</dc:creator>
      <dc:date>2008-09-01T06:19:57Z</dc:date>
    </item>
    <item>
      <title>Re: subroutines</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/subroutines/m-p/4401345#M1046186</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi swarna,&lt;/P&gt;&lt;P&gt;thanks for reply but when i declaring like&lt;/P&gt;&lt;P&gt;FORM Y_WS3  TABLES OPTIONS  FIELDS like RFC_DB_FLD DATA DATA1  DATA2&lt;/P&gt;&lt;P&gt;USING QSELECT QUSER.&lt;/P&gt;&lt;P&gt;then i'm getting error.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;For typing of TABLES parameters, only table types should be used. -&lt;/STRONG&gt;	&lt;/P&gt;&lt;P&gt;if i using 	&lt;/P&gt;&lt;P&gt;FORM Y_WS3  TABLES OPTIONS  FIELDS structure RFC_DB_FLD DATA DATA1  DATA2&lt;/P&gt;&lt;P&gt;USING QSELECT QUSER.&lt;/P&gt;&lt;P&gt;then i got processor error &lt;/P&gt;&lt;P&gt;*Different number of parameters in FORM and PERFORM (routine: Y_WS3,		*&lt;/P&gt;&lt;P&gt;*number of formal parameters: 0, number of actual parameters: 7).	*&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;anuj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Sep 2008 06:20:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/subroutines/m-p/4401345#M1046186</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-01T06:20:15Z</dc:date>
    </item>
    <item>
      <title>Re: subroutines</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/subroutines/m-p/4401346#M1046187</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anuj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; I have just taken 2 parameters and explained with them..&lt;/P&gt;&lt;P&gt;If there are 7 parameters in form then in form statement also you need to declare the corresponding types for all the 7 parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if the declarations are in this way:&lt;/P&gt;&lt;P&gt;data: OPTIONS type table of it_tab1&lt;/P&gt;&lt;P&gt;        FIELDS type table of RFC_DB_FLD      &lt;/P&gt;&lt;P&gt;         DATA type table of it_tab2&lt;/P&gt;&lt;P&gt;         DATA1 type table of it_tab3&lt;/P&gt;&lt;P&gt;         DATA2 type table of it_tab4,&lt;/P&gt;&lt;P&gt;         qselect type wa_tab1,&lt;/P&gt;&lt;P&gt;         qyser type wa_tab2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then form should be written in the following way:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM Y_WS3 TABLES OPTIONS structure it_tab1&lt;/P&gt;&lt;P&gt;                                   FIELDS structure RFC_DB_FLD      &lt;/P&gt;&lt;P&gt;                                    DATA structure it_tab2&lt;/P&gt;&lt;P&gt;                                    DATA1 structure it_tab3&lt;/P&gt;&lt;P&gt;                                    DATA2 structure it_tab4&lt;/P&gt;&lt;P&gt;                       USING QSELECT type wa_tab1&lt;/P&gt;&lt;P&gt;                                  QUSER type wa_tab2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Swarna Munukoti.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Sep 2008 06:36:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/subroutines/m-p/4401346#M1046187</guid>
      <dc:creator>former_member217544</dc:creator>
      <dc:date>2008-09-01T06:36:07Z</dc:date>
    </item>
    <item>
      <title>Re: subroutines</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/subroutines/m-p/4401347#M1046188</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi awarna, thanks for reply ,&lt;/P&gt;&lt;P&gt;i know u r taking abt all fields it's nt a matter of problem.&lt;/P&gt;&lt;P&gt;k  , now i defined &lt;/P&gt;&lt;P&gt;form as a &lt;/P&gt;&lt;P&gt;FORM Y_WS3  TABLES OPTIONS structure RFC_DB_OPT FIELDS structure RFC_DB_FLD DATA structure ZTAB_4000 DATA1 structure ZTAB_4000 DATA2 structure ZTAB_4000&lt;/P&gt;&lt;P&gt;USING QSELECT QUSER.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where as pls note i'm using function module.&lt;/P&gt;&lt;P&gt;in table parameters &lt;/P&gt;&lt;P&gt;OPTIONS like RFC_DB_OPT,&lt;/P&gt;&lt;P&gt;FIELDS  like  RFC_DB_FLD,&lt;/P&gt;&lt;P&gt;same as others with their &lt;STRONG&gt;respective structure&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so my perform is PERFORM Y_WS3  TABLES OPTIONS FIELDS DATA DATA1 DATA2 USING QSELECT&lt;/P&gt;&lt;P&gt;QUSER .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but now i'm getting error&lt;/P&gt;&lt;P&gt;Different number of parameters in FORM and PERFORM (routine: Y_WS3,		&lt;/P&gt;&lt;P&gt;number of formal parameters: 0, number of actual parameters: 7).		&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and previouslly before defining form with structure i'm getting this error n both wkg fine with same no's of parameters.&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Sep 2008 06:55:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/subroutines/m-p/4401347#M1046188</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-01T06:55:50Z</dc:date>
    </item>
    <item>
      <title>Re: subroutines</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/subroutines/m-p/4401348#M1046189</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 is the error you got with following declaration of formal parameters...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;FORM Y_WS3 TABLES OPTIONS type standard table 
                                     FIELDS type standard table
                                     DATA type standard table
                                     DATA1 type standard table
                                     DATA2 type standard table
                          USING QSELECT 
                                     QUSER.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;---Naveen.I&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Sep 2008 06:59:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/subroutines/m-p/4401348#M1046189</guid>
      <dc:creator>naveen_inuganti2</dc:creator>
      <dc:date>2008-09-01T06:59:24Z</dc:date>
    </item>
    <item>
      <title>Re: subroutines</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/subroutines/m-p/4401349#M1046190</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;FORM Y_WS3 TABLES OPTIONS like RFC_DB_OPT FIELDS like RFC_DB_FLD DATA....................&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sathar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Sep 2008 07:00:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/subroutines/m-p/4401349#M1046190</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-01T07:00:33Z</dc:date>
    </item>
    <item>
      <title>Re: subroutines</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/subroutines/m-p/4401350#M1046191</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi naveen&lt;/P&gt;&lt;P&gt;if i'm using ur method then i;m getting error that table type should use so i created respective table types n used all ,&lt;/P&gt;&lt;P&gt;now perform is &lt;/P&gt;&lt;P&gt; PERFORM Y_WS3  TABLES OPTIONS FIELDS DATA DATA1 DATA2 USING QSELECT&lt;/P&gt;&lt;P&gt;QUSER .&lt;/P&gt;&lt;P&gt;and form is &lt;/P&gt;&lt;P&gt;FORM Y_WS3  TABLES OPTIONS type YAJ FIELDS type yaj1 DATA TYPE YAJ2  DATA1 TYPE YAJ2 DATA2 TYPE YAJ2&lt;/P&gt;&lt;P&gt;USING QSELECT QUSER.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but now i'm getting error&lt;/P&gt;&lt;P&gt;Different number of parameters in FORM and PERFORM (routine: Y_WS3, &lt;/P&gt;&lt;P&gt;number of formal parameters: 0, number of actual parameters: 7). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and previouslly before defining form with type  i'm getting this error n both wkg fine with same no's of parameters.&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Sep 2008 07:10:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/subroutines/m-p/4401350#M1046191</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-01T07:10:17Z</dc:date>
    </item>
    <item>
      <title>Re: subroutines</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/subroutines/m-p/4401351#M1046192</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anuj...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not...&lt;/P&gt;&lt;P&gt; &amp;gt; OPTIONS type YAJ &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;no need to mention that YAJ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can try the syntax...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; OPTINS TYPE STANDARD TABLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here "Stadard table" is the key word.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz get back with result again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naveen.I&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Sep 2008 07:18:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/subroutines/m-p/4401351#M1046192</guid>
      <dc:creator>naveen_inuganti2</dc:creator>
      <dc:date>2008-09-01T07:18:31Z</dc:date>
    </item>
    <item>
      <title>Re: subroutines</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/subroutines/m-p/4401352#M1046193</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanx naveen it's help me but in form inside a loop it's throw a error that&lt;/P&gt;&lt;P&gt;*The data object "FIELDS" has no structure and therefore no component called "FIELDNAME".	*	&lt;/P&gt;&lt;P&gt;		&lt;/P&gt;&lt;P&gt;here is code also&lt;/P&gt;&lt;P&gt;    DATA NUMBER_OF_FIELDS TYPE I.&lt;/P&gt;&lt;P&gt;    DESCRIBE TABLE FIELDS LINES NUMBER_OF_FIELDS.&lt;/P&gt;&lt;P&gt;    IF NUMBER_OF_FIELDS = 0.&lt;/P&gt;&lt;P&gt;      LOOP AT TABLE_STRUCTURE.&lt;/P&gt;&lt;P&gt;        MOVE TABLE_STRUCTURE-FIELDNAME TO FIELDS-FIELDNAME.----&lt;/P&gt;&lt;HR originaltext="-------------------" /&gt;&lt;P&gt; &amp;gt; error&lt;/P&gt;&lt;P&gt;        APPEND FIELDS.&lt;/P&gt;&lt;P&gt;      ENDLOOP.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;anuj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Sep 2008 07:28:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/subroutines/m-p/4401352#M1046193</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-01T07:28:02Z</dc:date>
    </item>
    <item>
      <title>Re: subroutines</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/subroutines/m-p/4401353#M1046194</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;Define one local itab for FILEDS with structure and internal table...&lt;/P&gt;&lt;P&gt;Append that itab with entries...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After the loop..&lt;/P&gt;&lt;P&gt;write this syntax...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FILEDS() = ITAB()&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here finally FIELDS table carrie out the entries from subroutine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naveen.I&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Sep 2008 07:35:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/subroutines/m-p/4401353#M1046194</guid>
      <dc:creator>naveen_inuganti2</dc:creator>
      <dc:date>2008-09-01T07:35:51Z</dc:date>
    </item>
    <item>
      <title>Re: subroutines</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/subroutines/m-p/4401354#M1046195</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anuj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following syntax working fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FUNCTION ZEXFM.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;*"----------------------------------------------------------------------
*"*"Local interface:
*"  TABLES
*"      FIELDS STRUCTURE  RFC_DB_FLD
*"      OPTIONS STRUCTURE  RFC_DB_OPT
*"----------------------------------------------------------------------
perform exfm TABLES OPTIONS FIELDS.



ENDFUNCTION.


*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;  Include           LZ701715F01                                      *
*&amp;amp;---------------------------------------------------------------------*
FORM exfm TABLES OPTIONS structure RFC_DB_OPT FIELDS structure RFC_DB_FLD.

endform.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Sep 2008 07:46:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/subroutines/m-p/4401354#M1046195</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-01T07:46:07Z</dc:date>
    </item>
    <item>
      <title>Re: subroutines</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/subroutines/m-p/4401355#M1046196</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks all.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Oct 2009 06:44:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/subroutines/m-p/4401355#M1046196</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-10-13T06:44:17Z</dc:date>
    </item>
  </channel>
</rss>

