<?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: Table Maintenance Pulldown For KEY fields.... in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-pulldown-for-key-fields/m-p/1111363#M106309</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Deepak,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have to write all this in Screen PAI ( Flow logic )-&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 P_PROVIDER MODULE F4_HELP. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then you code will go in program in MODULE F4_HELP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 18 Oct 2005 10:12:12 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-10-18T10:12:12Z</dc:date>
    <item>
      <title>Table Maintenance Pulldown For KEY fields....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-pulldown-for-key-fields/m-p/1111358#M106304</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have 2 fields in Ztable.I also created function group, table maintenance generated.&lt;/P&gt;&lt;P&gt;The functionality i need is Pulldown for Key fields.&lt;/P&gt;&lt;P&gt;Where i need to code for this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Oct 2005 08:13:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-pulldown-for-key-fields/m-p/1111358#M106304</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-18T08:13:31Z</dc:date>
    </item>
    <item>
      <title>Re: Table Maintenance Pulldown For KEY fields....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-pulldown-for-key-fields/m-p/1111359#M106305</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;You have to code in PBO of the Generated program.&lt;/P&gt;&lt;P&gt;Try the sample code[for getting list box] for the corresponding field in PBO and kindly reward points if it helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;report z.&lt;/P&gt;&lt;P&gt;type-pools: vrm.&lt;/P&gt;&lt;P&gt;data: it_val type vrm_values,&lt;/P&gt;&lt;P&gt;      w_line like line of it_val.&lt;/P&gt;&lt;P&gt;parameters p_bukrs like t001-bukrs as listbox&lt;/P&gt;&lt;P&gt;           visible length 25 obligatory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;initialization.&lt;/P&gt;&lt;P&gt;  select bukrs butxt from t001 into (w_line-key, w_line-text).&lt;/P&gt;&lt;P&gt;    append w_line to it_val.&lt;/P&gt;&lt;P&gt;    check p_bukrs is initial.&lt;/P&gt;&lt;P&gt;    p_bukrs = w_line-key.&lt;/P&gt;&lt;P&gt;  endselect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen output.&lt;/P&gt;&lt;P&gt;  call function 'VRM_SET_VALUES'&lt;/P&gt;&lt;P&gt;       exporting&lt;/P&gt;&lt;P&gt;            id     = 'P_BUKRS'&lt;/P&gt;&lt;P&gt;            values = it_val.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;end-of-selection.&lt;/P&gt;&lt;P&gt;  write: / 'Company Code:', p_bukrs.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Oct 2005 08:22:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-pulldown-for-key-fields/m-p/1111359#M106305</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2005-10-18T08:22:28Z</dc:date>
    </item>
    <item>
      <title>Re: Table Maintenance Pulldown For KEY fields....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-pulldown-for-key-fields/m-p/1111360#M106306</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;I also did the same code as you did.&lt;/P&gt;&lt;P&gt;But little change.That PARAMATERS is not accepting.&lt;/P&gt;&lt;P&gt;It is giving error.&lt;/P&gt;&lt;P&gt;I did some changes while seeing your code.&lt;/P&gt;&lt;P&gt;Help me in this .&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Oct 2005 09:38:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-pulldown-for-key-fields/m-p/1111360#M106306</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-18T09:38:32Z</dc:date>
    </item>
    <item>
      <title>Re: Table Maintenance Pulldown For KEY fields....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-pulldown-for-key-fields/m-p/1111361#M106307</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You should change the attribute of key fields in the screen generated by table maintenance to show a list box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the PBO insert a module like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE LIST_BOX.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;refrsh it_val.&lt;/P&gt;&lt;P&gt;select * from table into (w_line-key, w_line-text).&lt;/P&gt;&lt;P&gt;append w_line to it_val.&lt;/P&gt;&lt;P&gt;endselect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call function 'VRM_SET_VALUES'&lt;/P&gt;&lt;P&gt;exporting&lt;/P&gt;&lt;P&gt;id = FIELDNAME (here insert the name of i/o field&lt;/P&gt;&lt;P&gt;values = it_val.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: max bianchi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Oct 2005 09:46:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-pulldown-for-key-fields/m-p/1111361#M106307</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-18T09:46:23Z</dc:date>
    </item>
    <item>
      <title>Re: Table Maintenance Pulldown For KEY fields....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-pulldown-for-key-fields/m-p/1111362#M106308</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;See my code.....&lt;/P&gt;&lt;P&gt;******************&lt;/P&gt;&lt;P&gt;TYPE-POOLS VRM .&lt;/P&gt;&lt;P&gt;DATA:&lt;/P&gt;&lt;P&gt;    p_provider type vrm_id,&lt;/P&gt;&lt;P&gt;    pk_lst   TYPE vrm_values,&lt;/P&gt;&lt;P&gt;    pk_lstln LIKE LINE OF pk_lst.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of itab occurs 0,&lt;/P&gt;&lt;P&gt;        provider like zfdmr_provider-provider,&lt;/P&gt;&lt;P&gt;        provnm like zfdmr_provider-provnm,&lt;/P&gt;&lt;P&gt;      end of itab.&lt;/P&gt;&lt;P&gt;select provider provnm from zfdmr_provider &lt;/P&gt;&lt;P&gt;              into table itab.&lt;/P&gt;&lt;P&gt; p_provider = 'ZFDMR_PROVIDER-PROVIDER'.&lt;/P&gt;&lt;P&gt; loop at itab.&lt;/P&gt;&lt;P&gt;   pk_lstln-key = itab-provider.&lt;/P&gt;&lt;P&gt;   pk_lstln-text = itab-provider.&lt;/P&gt;&lt;P&gt;   append pk_lstln to pk_lst.&lt;/P&gt;&lt;P&gt;   clear pk_lstln.&lt;/P&gt;&lt;P&gt; endloop.&lt;/P&gt;&lt;P&gt;    call function 'VRM_SET_VALUES'&lt;/P&gt;&lt;P&gt;      exporting&lt;/P&gt;&lt;P&gt;        id = p_provider&lt;/P&gt;&lt;P&gt;        values = pk_lst.&lt;/P&gt;&lt;P&gt;*******************************&lt;/P&gt;&lt;P&gt;I did all this code in PBO of Generated program.&lt;/P&gt;&lt;P&gt;But the pulldown/Listbox box is not comming.&lt;/P&gt;&lt;P&gt;Any suggestions are welcome.&lt;/P&gt;&lt;P&gt;Thanks....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Deepak333 k&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Deepak333 k&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Oct 2005 10:06:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-pulldown-for-key-fields/m-p/1111362#M106308</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-18T10:06:41Z</dc:date>
    </item>
    <item>
      <title>Re: Table Maintenance Pulldown For KEY fields....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-pulldown-for-key-fields/m-p/1111363#M106309</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Deepak,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have to write all this in Screen PAI ( Flow logic )-&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 P_PROVIDER MODULE F4_HELP. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then you code will go in program in MODULE F4_HELP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Oct 2005 10:12:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-pulldown-for-key-fields/m-p/1111363#M106309</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-18T10:12:12Z</dc:date>
    </item>
    <item>
      <title>Re: Table Maintenance Pulldown For KEY fields....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-pulldown-for-key-fields/m-p/1111364#M106310</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sanjay,&lt;/P&gt;&lt;P&gt;I am not looking for F4 help.&lt;/P&gt;&lt;P&gt;I am looking for PULLDOWN BOX.&lt;/P&gt;&lt;P&gt;If have any suggestion in this please....&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Oct 2005 10:24:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-pulldown-for-key-fields/m-p/1111364#M106310</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-18T10:24:25Z</dc:date>
    </item>
    <item>
      <title>Re: Table Maintenance Pulldown For KEY fields....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-pulldown-for-key-fields/m-p/1111365#M106311</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Deepak ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For pull down also this will work . &lt;/P&gt;&lt;P&gt;Only in screen painter you have to mark the Dropdown field as List Box ( in the Text I/O templates tab of screen attributes of elements ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pull down is similar to F4 help and you have to code in &lt;/P&gt;&lt;P&gt;PROCESS ON VALUE-REQUEST.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Oct 2005 10:27:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-pulldown-for-key-fields/m-p/1111365#M106311</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-18T10:27:58Z</dc:date>
    </item>
    <item>
      <title>Re: Table Maintenance Pulldown For KEY fields....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-pulldown-for-key-fields/m-p/1111366#M106312</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;DEEPAK, I THINK MAX HAS GVEN THE ANSWER.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;first declare a data field as(may be inside the internal table you declared)&lt;/P&gt;&lt;P&gt;data: fieldname LIKE dd03l-fieldname in top include.&lt;/P&gt;&lt;P&gt;this is the field to show the key field.&lt;/P&gt;&lt;P&gt;activate your code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You just go to screen layout(graphical mode). import this field by (from dictnary option).now in the attribute set it as listbox.thats it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now in pbo write module as populate_keyfield_list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;inside this modulle populate the list box with the name of key fields , using call function 'VRM_SET_VALUES'&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now use the code max has given&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Oct 2005 10:32:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-pulldown-for-key-fields/m-p/1111366#M106312</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-18T10:32:17Z</dc:date>
    </item>
    <item>
      <title>Re: Table Maintenance Pulldown For KEY fields....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-pulldown-for-key-fields/m-p/1111367#M106313</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Here I am getting LISTBOX, but I am not getting values in it.&lt;/P&gt;&lt;P&gt;****************************&lt;/P&gt;&lt;P&gt;TYPE-POOLS VRM .&lt;/P&gt;&lt;P&gt;DATA:&lt;/P&gt;&lt;P&gt;    p_provider type vrm_id,&lt;/P&gt;&lt;P&gt;    pk_lst   TYPE vrm_values,&lt;/P&gt;&lt;P&gt;    pk_lstln LIKE LINE OF pk_lst.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of itab occurs 0,&lt;/P&gt;&lt;P&gt;      provider like zfdmr_provider-provider,&lt;/P&gt;&lt;P&gt;      provnm like zfdmr_provider-provnm,&lt;/P&gt;&lt;P&gt;      end of itab.&lt;/P&gt;&lt;P&gt;select provider provnm from zfdmr_provider into &lt;/P&gt;&lt;P&gt;           (pk_lstln-key, pk_lstln-text ).&lt;/P&gt;&lt;P&gt; append pk_lstln to pk_lst.&lt;/P&gt;&lt;P&gt; p_provider = pk_lstln-key.&lt;/P&gt;&lt;P&gt;endselect.&lt;/P&gt;&lt;P&gt;    call function 'VRM_SET_VALUES'&lt;/P&gt;&lt;P&gt;      exporting&lt;/P&gt;&lt;P&gt;        id = p_provider&lt;/P&gt;&lt;P&gt;        values = pk_lst.&lt;/P&gt;&lt;P&gt;******************************&lt;/P&gt;&lt;P&gt;Please help in this.&lt;/P&gt;&lt;P&gt;I am not getting values in this.&lt;/P&gt;&lt;P&gt;I tried this code in PBO and in PAI.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Oct 2005 11:13:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-pulldown-for-key-fields/m-p/1111367#M106313</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-18T11:13:23Z</dc:date>
    </item>
    <item>
      <title>Re: Table Maintenance Pulldown For KEY fields....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-pulldown-for-key-fields/m-p/1111368#M106314</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is your screen field on which you want dropdown. You have to pass this name to P_PROVIDER before calling the FM 'VRM_SET_VALUES'.&lt;/P&gt;&lt;P&gt;P_PROVIDER = '&amp;lt;SCREENFIELDNAME&amp;gt;'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also put a breakpoint on FM 'VRM_SET_VALUES' and see if you have values in internal table pk_lst.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Oct 2005 11:46:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-pulldown-for-key-fields/m-p/1111368#M106314</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-18T11:46:00Z</dc:date>
    </item>
    <item>
      <title>Re: Table Maintenance Pulldown For KEY fields....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-pulldown-for-key-fields/m-p/1111369#M106315</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;data: begin of itab occurs 0,&lt;/P&gt;&lt;P&gt;        provider like zfdmr_provider-provider,&lt;/P&gt;&lt;P&gt;        provnm like zfdmr_provider-provnm,&lt;/P&gt;&lt;P&gt;      end of itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select provider provnm from zfdmr_provider into &lt;/P&gt;&lt;P&gt;(pk_lstln-key, pk_lstln-text ).&lt;/P&gt;&lt;P&gt;append pk_lstln to pk_lst.&lt;/P&gt;&lt;P&gt;*----&lt;DEL&gt;&amp;gt; ERROR&lt;/DEL&gt;--&amp;gt;p_provider = pk_lstln-key.&lt;/P&gt;&lt;P&gt;endselect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;p_provider = FIELD NAME OF THE FIELD OF THE DYNPRO&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call function 'VRM_SET_VALUES'&lt;/P&gt;&lt;P&gt;  exporting&lt;/P&gt;&lt;P&gt;    id     = p_provider&lt;/P&gt;&lt;P&gt;    values = pk_lst.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See my example (it works fine):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REFRESH LIST.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Insert the field name&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;NAME = 'ZFAGSA01-FL_CH_GLOB'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Fill the key table&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;PERFORM LOAD_DOMAIN_DATA USING CA_DOMAIN_9.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'VRM_SET_VALUES'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;        ID     = NAME&lt;/P&gt;&lt;P&gt;        VALUES = LIST.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But in my dynpro (by screen painter) I active the attribute to dysplay the field (ZFAGSA01-FL_CH_GLOB) as list box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Oct 2005 11:56:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-pulldown-for-key-fields/m-p/1111369#M106315</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-18T11:56:51Z</dc:date>
    </item>
  </channel>
</rss>

