<?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: Regarding the function module 'DYNP_VALUES_READ' in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-function-module-dynp-values-read/m-p/4700145#M1104536</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i got the value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 29 Oct 2008 06:40:51 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-10-29T06:40:51Z</dc:date>
    <item>
      <title>Regarding the function module 'DYNP_VALUES_READ'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-function-module-dynp-values-read/m-p/4700144#M1104535</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;     There are two input fields on my popup screen. &lt;/P&gt;&lt;P&gt;1. Plant&lt;/P&gt;&lt;P&gt;2. OrderNo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have created F4 help for the order no. But i want to capture the plant value so that i can get order no based on the plant.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For that, i have written the below code. The internal table tl_dynpfields is not getting filled after the function module  'DYNP_VALUES_READ'  gets executed. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone tell me what mistake i am commiting.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_pro1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES : BEGIN OF tp_dynpfields,&lt;/P&gt;&lt;P&gt;          fieldname  LIKE dynpread-fieldname,&lt;/P&gt;&lt;P&gt;          stepl      LIKE dynpread-stepl,&lt;/P&gt;&lt;P&gt;          fieldvalue LIKE dynpread-fieldvalue,&lt;/P&gt;&lt;P&gt;          fieldinp   LIKE dynpread-fieldinp,&lt;/P&gt;&lt;P&gt;          END OF tp_dynpfields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA : wl_dynpfields TYPE tp_dynpfields,&lt;/P&gt;&lt;P&gt;         tl_dynpfields TYPE STANDARD TABLE OF tp_dynpfields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  wl_dynpfields-fieldname = 'P_PLANT1'.&lt;/P&gt;&lt;P&gt;  APPEND wl_dynpfields TO tl_dynpfields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'DYNP_VALUES_READ'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      dyname                         = sy-repid&lt;/P&gt;&lt;P&gt;      dynumb                         = '0200'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      dynpfields                     = tl_dynpfields&lt;/P&gt;&lt;P&gt;   EXCEPTIONS&lt;/P&gt;&lt;P&gt;     invalid_abapworkarea           = 1&lt;/P&gt;&lt;P&gt;     invalid_dynprofield            = 2&lt;/P&gt;&lt;P&gt;     invalid_dynproname             = 3&lt;/P&gt;&lt;P&gt;     invalid_dynpronummer           = 4&lt;/P&gt;&lt;P&gt;     invalid_request                = 5&lt;/P&gt;&lt;P&gt;     no_fielddescription            = 6&lt;/P&gt;&lt;P&gt;     invalid_parameter              = 7&lt;/P&gt;&lt;P&gt;     undefind_error                 = 8&lt;/P&gt;&lt;P&gt;     double_conversion              = 9&lt;/P&gt;&lt;P&gt;     stepl_not_found                = 10&lt;/P&gt;&lt;P&gt;     OTHERS                         = 11.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Ibrahim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Oct 2008 06:38:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-function-module-dynp-values-read/m-p/4700144#M1104535</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-29T06:38:00Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding the function module 'DYNP_VALUES_READ'</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-function-module-dynp-values-read/m-p/4700145#M1104536</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i got the value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Oct 2008 06:40:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-function-module-dynp-values-read/m-p/4700145#M1104536</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-29T06:40:51Z</dc:date>
    </item>
  </channel>
</rss>

