<?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: RUNTIME ERROR IN FM in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-fm/m-p/1199924#M130798</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;in that case you can declare it as&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;data: ret_tab type table of DDSHRETVAL .&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 01 Mar 2006 07:48:32 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-03-01T07:48:32Z</dc:date>
    <item>
      <title>RUNTIME ERROR IN FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-fm/m-p/1199917#M130791</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;&lt;/P&gt;&lt;P&gt;This is w.r.t. FM F4IF_INT_TABLE_VALUE_REQUEST.&lt;/P&gt;&lt;P&gt;For the variable return_tab I had declared an internal table with headerline and assigned it to return_tab.&lt;/P&gt;&lt;P&gt;This was for retrieving the selected value by user in the list box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now i am not getting any compilation error but during runtime i am getting an error saying "In the FM you can specify fields of a specific type and length under "return-tab".Although the current specified field "return-tab" is the correct type,its length is incorrect."&lt;/P&gt;&lt;P&gt;Can anybody throw light on this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Praneeth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Mar 2006 07:29:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-fm/m-p/1199917#M130791</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-01T07:29:22Z</dc:date>
    </item>
    <item>
      <title>Re: RUNTIME ERROR IN FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-fm/m-p/1199918#M130792</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;could u plz send the code..so that we can check where ur going wrong.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Mar 2006 07:36:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-fm/m-p/1199918#M130792</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-01T07:36:07Z</dc:date>
    </item>
    <item>
      <title>Re: RUNTIME ERROR IN FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-fm/m-p/1199919#M130793</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i think u hav  given an internal table with header line ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.is this the same internal table u r populating for the f4 to be retrieved on a field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.perhaps on the f4 field check the declaration in ur program .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can u giv the code of the data declaration, f4_int_table value etc so that we can check the same ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Mar 2006 07:36:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-fm/m-p/1199919#M130793</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-01T07:36:55Z</dc:date>
    </item>
    <item>
      <title>Re: RUNTIME ERROR IN FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-fm/m-p/1199920#M130794</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Praneeth,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      This Function Module is for F4 help that returns the values selected in an internal table. Very handy when programming your very own F4 help for a field. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Please check out this example you may get an idea......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:&lt;/P&gt;&lt;P&gt;    begin of t_values occurs 2,&lt;/P&gt;&lt;P&gt;      value like kna1-begru,&lt;/P&gt;&lt;P&gt;    end of t_values,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    t_return like ddshretval occurs 0 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  t_values = 'PAR*'.&lt;/P&gt;&lt;P&gt;  append t_values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  t_values = 'UGG'.&lt;/P&gt;&lt;P&gt;  append t_values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  call function 'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;       exporting&lt;/P&gt;&lt;P&gt;            retfield        = 'BEGRU'&lt;/P&gt;&lt;P&gt;            value_org       = 'S'&lt;/P&gt;&lt;P&gt;       tables&lt;/P&gt;&lt;P&gt;            value_tab       = t_values&lt;/P&gt;&lt;P&gt;            return_tab      = t_return&lt;/P&gt;&lt;P&gt;       exceptions&lt;/P&gt;&lt;P&gt;            parameter_error = 1&lt;/P&gt;&lt;P&gt;            no_values_found = 2&lt;/P&gt;&lt;P&gt;            others          = 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;    read table t_return index 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    o_begru-low = t_return-fieldval.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    if o_begru-low = 'PAR*'.&lt;/P&gt;&lt;P&gt;      o_begru-option = 'CP'.&lt;/P&gt;&lt;P&gt;    else.&lt;/P&gt;&lt;P&gt;      o_begru-option = 'EQ'.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    o_begru-sign = 'I'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    append o_begru to s_begru.&lt;/P&gt;&lt;P&gt;  else.&lt;/P&gt;&lt;P&gt;    o_begru = i_begru.&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;Azaz Ali Shaik.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Mar 2006 07:37:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-fm/m-p/1199920#M130794</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-01T07:37:41Z</dc:date>
    </item>
    <item>
      <title>Re: RUNTIME ERROR IN FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-fm/m-p/1199921#M130795</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Praneeth,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &amp;lt;b&amp;gt;DATA: RET_TAB LIKE DDSHRETVAL OCCURS 0 WITH HEADER LINE.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;    IF RET_TAB[] IS NOT INITIAL.
      READ TABLE RET_TAB INDEX 1.
      IF SY-SUBRC = 0.
        P_PLAN = RET_TAB-FIELDVAL.
      ENDIF.
    ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check how you declared the RET_TAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Mar 2006 07:37:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-fm/m-p/1199921#M130795</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-01T07:37:56Z</dc:date>
    </item>
    <item>
      <title>Re: RUNTIME ERROR IN FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-fm/m-p/1199922#M130796</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;1. Declaration is not correct.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;2. Decare it like this&lt;/P&gt;&lt;P&gt;    Then u won't get any error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : RETURN_TAB	LIKE	DDSHRETVAL occurs 0 with header line.&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;regards,&lt;/P&gt;&lt;P&gt;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Mar 2006 07:38:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-fm/m-p/1199922#M130796</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-01T07:38:43Z</dc:date>
    </item>
    <item>
      <title>Re: RUNTIME ERROR IN FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-fm/m-p/1199923#M130797</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;&lt;/P&gt;&lt;P&gt;Thanks very much.I was indeed declaring it wrongly.your suggestion was to declare it as :&lt;/P&gt;&lt;P&gt;data : RETURN_TAB LIKE DDSHRETVAL occurs 0 with header line.&lt;/P&gt;&lt;P&gt;I have a small prob here I am not supposed to declare IT with headerline as per our coding standards.&lt;/P&gt;&lt;P&gt;Can u please suggest me any other way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Praneeth&lt;/P&gt;&lt;P&gt;Points rewarded&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Mar 2006 07:46:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-fm/m-p/1199923#M130797</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-01T07:46:19Z</dc:date>
    </item>
    <item>
      <title>Re: RUNTIME ERROR IN FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-fm/m-p/1199924#M130798</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;in that case you can declare it as&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;data: ret_tab type table of DDSHRETVAL .&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Mar 2006 07:48:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-fm/m-p/1199924#M130798</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-01T07:48:32Z</dc:date>
    </item>
    <item>
      <title>Re: RUNTIME ERROR IN FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-fm/m-p/1199925#M130799</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data: return_tab type standard table of ddshretval.&lt;/P&gt;&lt;P&gt;and work area separately&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Mar 2006 07:48:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-fm/m-p/1199925#M130799</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-01T07:48:43Z</dc:date>
    </item>
    <item>
      <title>Re: RUNTIME ERROR IN FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-fm/m-p/1199926#M130800</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;chang it to&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : RETURN_TAB type standard table of DDSHRETVAL .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Mar 2006 07:49:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-fm/m-p/1199926#M130800</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2006-03-01T07:49:21Z</dc:date>
    </item>
    <item>
      <title>Re: RUNTIME ERROR IN FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-fm/m-p/1199927#M130801</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Since DDSHRETVAL is a structure &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so u can say &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF intern OCCURS 0.&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE  DDshrretval. &lt;/P&gt;&lt;P&gt;DATA: END OF intern.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;vijay.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Mar 2006 07:54:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-fm/m-p/1199927#M130801</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-01T07:54:58Z</dc:date>
    </item>
    <item>
      <title>Re: RUNTIME ERROR IN FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-fm/m-p/1199928#M130802</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;&lt;/P&gt;&lt;P&gt;I am not getting any values into the RETURN_TAB.I had checked it with debugger.No values are returned when i am making selections in the list box of a input field on screen.Please advise&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am attaching the code :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  zsdchk_tbl_mnt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES : zsdbd_chk_tabls.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA     : ok_code TYPE sy-ucomm,&lt;/P&gt;&lt;P&gt;           input1(8) TYPE c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA     : BEGIN OF i_tabname OCCURS 0,&lt;/P&gt;&lt;P&gt;           tabname LIKE zsdbd_chk_tabls-tabname,&lt;/P&gt;&lt;P&gt;           END OF i_tabname.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA     : viewname LIKE zsdbd_chk_tabls-tabname.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA I_RETURN LIKE DDSHRETVAL OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL SCREEN 100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE init_screen_100 OUTPUT.&lt;/P&gt;&lt;P&gt;  CLEAR: input1.&lt;/P&gt;&lt;P&gt;ENDMODULE.                    "init_screen_100 OUTPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Creating drop down list for input field&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE create_dropdown_box INPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT tabname FROM zsdbd_chk_tabls INTO CORRESPONDING FIELDS OF TABLE i_tabname.&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;Providing f4 help through drop down list to the user&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DDIC_STRUCTURE         = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      retfield             = 'tabname'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  PVALKEY                = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      dynpprog             = sy-repid&lt;/P&gt;&lt;P&gt;      dynpnr               = sy-dynnr&lt;/P&gt;&lt;P&gt;      dynprofield          = 'A'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  STEPL                  = 0&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  WINDOW_TITLE           =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  VALUE                  = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      value_org            = 'S'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  MULTIPLE_CHOICE        = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DISPLAY                = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  CALLBACK_PROGRAM       = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  CALLBACK_FORM          = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  MARK_TAB               =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  USER_RESET             =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      value_tab            = i_tabname&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  FIELD_TAB              =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    RETURN_TAB             = i_return&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DYNPFLD_MAPPING        =&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;  PARAMETER_ERROR        = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  NO_VALUES_FOUND        = 2&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  OTHERS                 = 3&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;            .&lt;/P&gt;&lt;P&gt;  IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE.                    "create_dropdown_box INPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE user_command_0100 INPUT.&lt;/P&gt;&lt;P&gt;  CASE ok_code.&lt;/P&gt;&lt;P&gt;    WHEN 'MAINTAIN'.          "when user presses maintain button&lt;/P&gt;&lt;P&gt;    IF I_RETURN[] IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;      READ TABLE I_RETURN INDEX 1.&lt;/P&gt;&lt;P&gt;      IF SY-SUBRC = 0.&lt;/P&gt;&lt;P&gt;        VIEWNAME = I_RETURN-FIELDVAL.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    ENDIF.&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;Providing the view maintenance screen for check tables to the user.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'VIEW_MAINTENANCE_CALL'&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          action                         = 'U'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  CORR_NUMBER                          = '          '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  GENERATE_MAINT_TOOL_IF_MISSING       = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  SHOW_SELECTION_POPUP                 = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          view_name                      = viewname&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  NO_WARNING_FOR_CLIENTINDEP           = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  RFC_DESTINATION_FOR_UPGRADE          = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  CLIENT_FOR_UPGRADE                   = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  VARIANT_FOR_SELECTION                = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  COMPLEX_SELCONDS_USED                = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  CHECK_DDIC_MAINFLAG                  = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  SUPPRESS_WA_POPUP                    = ' '&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;  DBA_SELLIST                          =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  EXCL_CUA_FUNCT                       =&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;  CLIENT_REFERENCE                     = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  FOREIGN_LOCK                         = 2&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  INVALID_ACTION                       = 3&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  NO_CLIENTINDEPENDENT_AUTH            = 4&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  NO_DATABASE_FUNCTION                 = 5&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  NO_EDITOR_FUNCTION                   = 6&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  NO_SHOW_AUTH                         = 7&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  NO_TVDIR_ENTRY                       = 8&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  NO_UPD_AUTH                          = 9&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ONLY_SHOW_ALLOWED                    = 10&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  SYSTEM_FAILURE                       = 11&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  UNKNOWN_FIELD_IN_DBA_SELLIST         = 12&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  VIEW_NOT_FOUND                       = 13&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  MAINTENANCE_PROHIBITED               = 14&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  OTHERS                               = 15&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;                .&lt;/P&gt;&lt;P&gt;      IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;  ENDCASE.&lt;/P&gt;&lt;P&gt;ENDMODULE.                    "user_command_0100 INPUT&lt;/P&gt;&lt;P&gt;&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;Praneeth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Mar 2006 08:04:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-fm/m-p/1199928#M130802</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-01T08:04:51Z</dc:date>
    </item>
    <item>
      <title>Re: RUNTIME ERROR IN FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-fm/m-p/1199929#M130803</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi praneeth,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Why are u using return_tab ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Is this your requierment ?&lt;/P&gt;&lt;P&gt;   a) the user selects something from the list.&lt;/P&gt;&lt;P&gt;   b) u want to get the selected value&lt;/P&gt;&lt;P&gt;   c) plus, other fields (of the selected row)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. Then u can do like this &lt;/P&gt;&lt;P&gt;4. This program will display company information,&lt;/P&gt;&lt;P&gt;   and on selection,&lt;/P&gt;&lt;P&gt;  it will populate the other fields&lt;/P&gt;&lt;P&gt;  (from the selected value)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5. Select BUKRS,&lt;/P&gt;&lt;P&gt;   it will fill,&lt;/P&gt;&lt;P&gt;   company name,&lt;/P&gt;&lt;P&gt;   location&lt;/P&gt;&lt;P&gt;   country&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;6.  just copy paste in new program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; REPORT abc.&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;HR originaltext="---------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; DATA : dd	LIKE	TABLE OF dselc WITH HEADER LINE. "*--- IMPORTANT&lt;/P&gt;&lt;P&gt; DATA : ft	LIKE	TABLE OF dfies WITH HEADER LINE.&lt;/P&gt;&lt;P&gt; DATA : t001 LIKE TABLE OF t001 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="--------------------------" /&gt;&lt;P&gt; PARAMETERS : bukrs LIKE t001-bukrs .&lt;/P&gt;&lt;P&gt; PARAMETERS : butxt LIKE t001-butxt.&lt;/P&gt;&lt;P&gt; PARAMETERS : ort01 LIKE t001-ort01.&lt;/P&gt;&lt;P&gt; PARAMETERS : waers LIKE t001-waers.&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;HR originaltext="-------------------" /&gt;&lt;P&gt; AT SELECTION-SCREEN ON VALUE-REQUEST FOR bukrs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   SELECT * FROM t001 INTO TABLE t001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt; IMPORTANT&lt;/P&gt;&lt;P&gt;   REFRESH dd.&lt;/P&gt;&lt;P&gt;   dd-fldname = 'BUTXT'.&lt;/P&gt;&lt;P&gt;   dd-dyfldname = 'BUTXT'.&lt;/P&gt;&lt;P&gt;   APPEND dd.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   dd-fldname = 'ORT01'.&lt;/P&gt;&lt;P&gt;   dd-dyfldname = 'ORT01'.&lt;/P&gt;&lt;P&gt;   APPEND dd.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   dd-fldname = 'WAERS'.&lt;/P&gt;&lt;P&gt;   dd-dyfldname = 'WAERS'.&lt;/P&gt;&lt;P&gt;   APPEND dd.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*------- IMPORTANT&lt;/P&gt;&lt;P&gt;   REFRESH ft.&lt;/P&gt;&lt;P&gt;   ft-tabname  = 'T001'.&lt;/P&gt;&lt;P&gt;   ft-fieldname = 'BUTXT'.&lt;/P&gt;&lt;P&gt;   APPEND ft.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   ft-tabname  = 'T001'.&lt;/P&gt;&lt;P&gt;   ft-fieldname = 'WAERS'.&lt;/P&gt;&lt;P&gt;   APPEND ft.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   ft-tabname  = 'T001'.&lt;/P&gt;&lt;P&gt;   ft-fieldname = 'ORT01'.&lt;/P&gt;&lt;P&gt;   APPEND ft.&lt;/P&gt;&lt;P&gt;&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;   CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;     EXPORTING&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      ddic_structure  = 'T001'   "*----- IMPORTANT IF STANDARD STRUCT&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;       retfield        = 'BUKRS'&lt;/P&gt;&lt;P&gt;       dynpprog        = sy-repid&lt;/P&gt;&lt;P&gt;       dynpnr          = sy-dynnr&lt;/P&gt;&lt;P&gt;       dynprofield     = 'BUKRS'&lt;/P&gt;&lt;P&gt;       value_org       = 'S'&lt;/P&gt;&lt;P&gt;     TABLES&lt;/P&gt;&lt;P&gt;       field_tab       = ft "*---- IMPORTANT&lt;/P&gt;&lt;P&gt;       value_tab       = t001&lt;/P&gt;&lt;P&gt;       dynpfld_mapping = dd   "* IMPORTANT&lt;/P&gt;&lt;P&gt;     EXCEPTIONS&lt;/P&gt;&lt;P&gt;       parameter_error = 1&lt;/P&gt;&lt;P&gt;       no_values_found = 2&lt;/P&gt;&lt;P&gt;       OTHERS          = 3.&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;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Mar 2006 08:11:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-fm/m-p/1199929#M130803</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-01T08:11:47Z</dc:date>
    </item>
    <item>
      <title>Re: RUNTIME ERROR IN FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-fm/m-p/1199930#M130804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Praneeth,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
EXPORTING
* DDIC_STRUCTURE = ' '
retfield = &amp;lt;b&amp;gt;'TABNAME'&amp;lt;/b&amp;gt;
dynpprog = sy-repid
dynpnr = sy-dynnr
dynprofield = 'A'
value_org = 'S'
TABLES
value_tab = i_tabname
RETURN_TAB = i_return
EXCEPTIONS
 PARAMETER_ERROR = 1
 NO_VALUES_FOUND = 2
 OTHERS = 3
.
IF sy-subrc &amp;lt;&amp;gt; 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
* WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Mar 2006 08:21:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-fm/m-p/1199930#M130804</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-01T08:21:16Z</dc:date>
    </item>
    <item>
      <title>Re: RUNTIME ERROR IN FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-fm/m-p/1199931#M130805</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Amit!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am supposed to do in Module pool program only.&lt;/P&gt;&lt;P&gt;Instead of return_tab what is the other alternative.&lt;/P&gt;&lt;P&gt;Please advise&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Praneeth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Mar 2006 08:38:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-fm/m-p/1199931#M130805</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-01T08:38:17Z</dc:date>
    </item>
    <item>
      <title>Re: RUNTIME ERROR IN FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-fm/m-p/1199932#M130806</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Praneeth,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this Demp Program For F4 Help in Module pool, they used with out return tab.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;&lt;/P&gt;&lt;P&gt;DEMO_DYNPRO_F4_HELP_MODULE&amp;lt;/b&amp;gt;&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;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Mar 2006 08:44:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-fm/m-p/1199932#M130806</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-01T08:44:07Z</dc:date>
    </item>
    <item>
      <title>Re: RUNTIME ERROR IN FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-fm/m-p/1199933#M130807</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;declare like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: RET_TAB TYPE STANDARD TABLE OF DDSHRETVAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Make sure that, the fields in the internal table which u r getting as F4 are &amp;lt;b&amp;gt;refernces to DDIC&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. if still u r not getting , then try to fill the fiel-tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:lT_FIELD type standard table of DFIES,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lt_field-fieldname = FIELDNAME.&lt;/P&gt;&lt;P&gt;lT_field-intlen    = 100.&lt;/P&gt;&lt;P&gt;lT_field-leng      = 30.&lt;/P&gt;&lt;P&gt;lT_field-outputlen = 30.&lt;/P&gt;&lt;P&gt;APPEND LT_FIELD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. PASS LT_FIELD TO FIELD_TAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. NOW U CAN USE EITHER VALUE_ORG = 'S' OR 'C'. U WILL GET THE REQUIRED RESULT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Mar 2006 08:55:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/runtime-error-in-fm/m-p/1199933#M130807</guid>
      <dc:creator>hymavathi_oruganti</dc:creator>
      <dc:date>2006-03-01T08:55:37Z</dc:date>
    </item>
  </channel>
</rss>

