<?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: Module-pool programing help in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programing-help/m-p/2167444#M459223</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is the use of the function code.&lt;/P&gt;&lt;P&gt;We are not using that function code anywhere.&lt;/P&gt;&lt;P&gt;Also i have done what you have said but i m not getting the output.&lt;/P&gt;&lt;P&gt;So tell now what to do and where to use that function code SEL or anything else.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 02 May 2007 10:58:03 GMT</pubDate>
    <dc:creator>hareesh_tadepalli</dc:creator>
    <dc:date>2007-05-02T10:58:03Z</dc:date>
    <item>
      <title>Module-pool programing help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programing-help/m-p/2167438#M459217</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sir&lt;/P&gt;&lt;P&gt; I want help regarding the Module pool programing.&lt;/P&gt;&lt;P&gt; Please help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; The problem description is as follows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; On the layout editor , i have reterived one filed LIFNR from the table MSEG and put the listbox coding for it by using the POV event and function module F4IF_INT_TABLE_VALUE_REQUEST.and the list is also showing vendor numbers on executing the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now further i have selected all the address fields from the same table MSEG on the layout editor.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now the problem is that when i select the vendor number on the executable screen , i want the address fields automatically get filled according to the vendor number.&lt;/P&gt;&lt;P&gt;For eg ,we have selected 1000 as a vendor number then the address corresponding to 1000 automatically gets display in the respective fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For this i don;t know the logic.Please help me .&lt;/P&gt;&lt;P&gt;I will be grateful to all to help me as soon as possible.&lt;/P&gt;&lt;P&gt;Points will be awarded to the best satisfactory answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The much more important point is that i will learn a new concept.&lt;/P&gt;&lt;P&gt;Thanks a lot&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 May 2007 09:37:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programing-help/m-p/2167438#M459217</guid>
      <dc:creator>hareesh_tadepalli</dc:creator>
      <dc:date>2007-05-02T09:37:43Z</dc:date>
    </item>
    <item>
      <title>Re: Module-pool programing help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programing-help/m-p/2167439#M459218</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hareesh, I'm not sure I fully understand what you are trying to achieve, but you could set up a structure and an internal table to disply the relevant data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Set up a structure containing the fields you wish to display.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Set up an internal table referencing the structure &lt;/P&gt;&lt;P&gt;    DATA: it_table LIKE zstructure OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. Create a table control&lt;/P&gt;&lt;P&gt;   CONTROLS: cont_table  TYPE TABLEVIEW USING SCREEN nnnn.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. Create table control on your screen and use the "Dictionary/program fields window" button to load the fields of the structure which you wish to display into the table control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5. Populate the internal table in a PBO event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;6. Loop at the internal table into your structure as follows:&lt;/P&gt;&lt;P&gt;  LOOP AT it_table INTO zstructure&lt;/P&gt;&lt;P&gt;          WITH CONTROL cont_table&lt;/P&gt;&lt;P&gt;          CURSOR cont_table-current_line.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 May 2007 10:08:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programing-help/m-p/2167439#M459218</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-02T10:08:27Z</dc:date>
    </item>
    <item>
      <title>Re: Module-pool programing help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programing-help/m-p/2167440#M459219</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;  Use function module DYNP_VALUES_READ for this purpose.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kasi S&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 May 2007 10:14:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programing-help/m-p/2167440#M459219</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-02T10:14:47Z</dc:date>
    </item>
    <item>
      <title>Re: Module-pool programing help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programing-help/m-p/2167441#M459220</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;please elaborate the answer and tell me how to use this function module&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 May 2007 10:26:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programing-help/m-p/2167441#M459220</guid>
      <dc:creator>hareesh_tadepalli</dc:creator>
      <dc:date>2007-05-02T10:26:25Z</dc:date>
    </item>
    <item>
      <title>Re: Module-pool programing help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programing-help/m-p/2167442#M459221</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if your requirement is when you choose the value from list box(drop down box) it should fetch the value to other fields then do like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in layout you have already defined the input box as list box by selecting the drop down option in the property window there you can find fct code input box in that window just assign any fn code like SEL or something to that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now in your PBO module write the code for fetching the value in other fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;module filldata output.&lt;/P&gt;&lt;P&gt;if not &amp;lt;screenfield lifnr&amp;gt; is initial.&lt;/P&gt;&lt;P&gt;select f1 into &amp;lt;screen field&amp;gt; from dbtab where lifnr = &amp;lt;screen field lifnr&amp;gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endmodule.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;shiba dutta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 May 2007 10:43:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programing-help/m-p/2167442#M459221</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-02T10:43:55Z</dc:date>
    </item>
    <item>
      <title>Re: Module-pool programing help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programing-help/m-p/2167443#M459222</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hareesh,&lt;/P&gt;&lt;P&gt; read the return table parameter &amp;lt;b&amp;gt;RETURN_TAB&amp;lt;/b&amp;gt; of the fm &amp;lt;b&amp;gt;'F4IF_INT_TABLE_VALUE_REQUEST&amp;lt;/b&amp;gt;' after selecting the value of the vendor and use the fm &amp;lt;b&amp;gt;'DYNP_VALUES_UPDATE&amp;lt;/b&amp;gt;' to update the address fields based on the value read from the table &amp;lt;b&amp;gt;RETURN_TAB&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 May 2007 10:50:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programing-help/m-p/2167443#M459222</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-02T10:50:42Z</dc:date>
    </item>
    <item>
      <title>Re: Module-pool programing help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programing-help/m-p/2167444#M459223</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is the use of the function code.&lt;/P&gt;&lt;P&gt;We are not using that function code anywhere.&lt;/P&gt;&lt;P&gt;Also i have done what you have said but i m not getting the output.&lt;/P&gt;&lt;P&gt;So tell now what to do and where to use that function code SEL or anything else.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 May 2007 10:58:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programing-help/m-p/2167444#M459223</guid>
      <dc:creator>hareesh_tadepalli</dc:creator>
      <dc:date>2007-05-02T10:58:03Z</dc:date>
    </item>
    <item>
      <title>Re: Module-pool programing help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programing-help/m-p/2167445#M459224</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is the use of the function code.&lt;/P&gt;&lt;P&gt;We are not using that function code anywhere.&lt;/P&gt;&lt;P&gt;Also i have done what you have said but i m not getting the output.&lt;/P&gt;&lt;P&gt;So tell now what to do and where to use that function code SEL or anything else.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 May 2007 10:58:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programing-help/m-p/2167445#M459224</guid>
      <dc:creator>hareesh_tadepalli</dc:creator>
      <dc:date>2007-05-02T10:58:36Z</dc:date>
    </item>
    <item>
      <title>Re: Module-pool programing help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programing-help/m-p/2167446#M459225</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the fn code does not do anything just it will trigger PAI when you select any value from the list box(drop down) and then it will trigger the PBO so only you can get the result.  because you have to write the code in PBO and for triggering PBO on the value selection from list box you have to trigger PAI. so assign the fcode no need to code any thing extra for that fcode. by the way just paste your code here...&lt;/P&gt;&lt;P&gt;we can try to solve that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;shiba dutta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 May 2007 11:12:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programing-help/m-p/2167446#M459225</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-02T11:12:03Z</dc:date>
    </item>
    <item>
      <title>Re: Module-pool programing help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programing-help/m-p/2167447#M459226</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp; Report  Z_DELIVERY_PUZZ                                             *&lt;/P&gt;&lt;P&gt;*&amp;amp;                                                                     *&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;                                                                     *&lt;/P&gt;&lt;P&gt;*&amp;amp;                                                                     *&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  z_delivery_puzz                         .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES : mseg,lfa1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : BEGIN OF it_lfa1 OCCURS 0,&lt;/P&gt;&lt;P&gt;       lifnr LIKE lfa1-lifnr,&lt;/P&gt;&lt;P&gt;       END OF it_lfa1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : BEGIN OF it_addr OCCURS 0,&lt;/P&gt;&lt;P&gt;       name1 LIKE lfa1-name1,&lt;/P&gt;&lt;P&gt;       stras LIKE lfa1-stras,&lt;/P&gt;&lt;P&gt;       ort01 LIKE lfa1-ort01,&lt;/P&gt;&lt;P&gt;       ort02 LIKE lfa1-ort02,&lt;/P&gt;&lt;P&gt;       pstlz LIKE lfa1-pstlz,&lt;/P&gt;&lt;P&gt;       END OF it_addr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL SCREEN 1000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Module  f4_lifnr_pov  INPUT&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE f4_lifnr_pov INPUT.&lt;/P&gt;&lt;P&gt;  SELECT lifnr FROM lfa1 INTO TABLE it_lfa1.&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               = 'LIFNR'&lt;/P&gt;&lt;P&gt;      value_org              = 'S'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      value_tab              = it_lfa1&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    RETURN_TAB             = ITAB&lt;/P&gt;&lt;/LI&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;&lt;/P&gt;&lt;P&gt;ENDMODULE.                 " f4_lifnr_pov  INPUT&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Module  USER_COMMAND_1000  INPUT&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE user_command_1000 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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CASE sy-ucomm.&lt;/P&gt;&lt;P&gt;    WHEN 'EXIT'.&lt;/P&gt;&lt;P&gt;      LEAVE PROGRAM.&lt;/P&gt;&lt;P&gt;  ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE.                 " USER_COMMAND_1000  INPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Module  status_1000  OUTPUT&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE status_1000 OUTPUT.&lt;/P&gt;&lt;P&gt;  if not it_lfa1-lifnr is initial.&lt;/P&gt;&lt;P&gt;  SELECT name1&lt;/P&gt;&lt;P&gt;         stras&lt;/P&gt;&lt;P&gt;         ort01&lt;/P&gt;&lt;P&gt;         ort02&lt;/P&gt;&lt;P&gt;         pstlz FROM lfa1 INTO (it_addr-name1,it_addr-stras,it_addr-ort01,it_addr-ort02,it_addr-pstlz) WHERE lifnr = it_lfa1-lifnr.&lt;/P&gt;&lt;P&gt; endselect.&lt;/P&gt;&lt;P&gt; endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE.                 " status_1000  OUTPUT..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*FLOW LOGIC CODING&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS BEFORE OUTPUT.&lt;/P&gt;&lt;P&gt;  MODULE status_1000.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;PROCESS AFTER INPUT.&lt;/P&gt;&lt;P&gt; MODULE USER_COMMAND_1000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS ON VALUE-REQUEST.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD LFA1-lifnr MODULE f4_lifnr_pov.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*LAYOUT EDITOR&lt;/P&gt;&lt;P&gt; LIFNR FIELD IS SELECTED FROM TABLE LFA1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; REST ADDRESS FIELDS ARE SELECTED FROM IT_ADDR INTERNAL TABLE FROM THE PROG.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 May 2007 11:30:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programing-help/m-p/2167447#M459226</guid>
      <dc:creator>hareesh_tadepalli</dc:creator>
      <dc:date>2007-05-02T11:30:36Z</dc:date>
    </item>
    <item>
      <title>Re: Module-pool programing help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programing-help/m-p/2167448#M459227</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;NOW ITS SHOWING THE OUTPUT BUT THE PROBLEM IS THAT WHEN I CHANGE THE VENDOR NUMBER FROM THE LISTBOX THEN ALSO IT SHOWS THE SAME ADDRESS .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ITS NOT CHANGING THE ADDRESS ACCORDING TO THE VENDOR NUMBER.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PLEASE HELP ME  AND ALSO TELL ME WHERE TO USE THIS FUNCTION MODULES &lt;/P&gt;&lt;P&gt; lIKE DYNP_READ_VALUES&lt;/P&gt;&lt;P&gt;        DYNP_READ_UPDATE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AND WHEN TO USE RETURN_TAB FIELD  OF THE FUNCTION MODULE&lt;/P&gt;&lt;P&gt;F4IF_INT_TAB_VALUE_REQUEST.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 May 2007 11:39:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programing-help/m-p/2167448#M459227</guid>
      <dc:creator>hareesh_tadepalli</dc:creator>
      <dc:date>2007-05-02T11:39:25Z</dc:date>
    </item>
    <item>
      <title>Re: Module-pool programing help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programing-help/m-p/2167449#M459228</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I GOT THE PROBLEM THAT BY DEFAULT MY VENDOR GET SELECTED IS&lt;/P&gt;&lt;P&gt; "YELLOW_FRT" AND ITS DISPLAYING THE ADDRESS OF THIS VENDOR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EVEN I M CHANGING THE VENDOR NUMBER FROM THE LISTBOX THEN ALSO VALUE IS NOT CHANGING .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so TELL ME THE SOLUTION FOR THIS PROBLEM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I HAVE GIVEN THREE QUESTIONS STILL ONE REPLY HAS NOT COME.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 May 2007 12:06:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programing-help/m-p/2167449#M459228</guid>
      <dc:creator>hareesh_tadepalli</dc:creator>
      <dc:date>2007-05-02T12:06:42Z</dc:date>
    </item>
    <item>
      <title>Re: Module-pool programing help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programing-help/m-p/2167450#M459229</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hareesh,&lt;/P&gt;&lt;P&gt; check the link below, it has answers for ur questions&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_47x200/helpdata/en/9f/dbabe435c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_47x200/helpdata/en/9f/dbabe435c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also check this demo program&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;DEMO_DYNPRO_DROPDOWN_LISTBOX&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 May 2007 13:55:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-programing-help/m-p/2167450#M459229</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-02T13:55:14Z</dc:date>
    </item>
  </channel>
</rss>

