Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Read selected Dropdown values in Module Pool

former_member386063
Participant
0 Likes
1,686

Hello Experts,

I'm stuck in a very urgent issue.

I have created 2 dropdowns in my screen. I want to select entry from the dropdowns and selected enteries should be displayed in the next screen.

How to read these values. I know how to read the values from F4 help but dropdown is creating a problem. FM used for  reading values :"DYNP_VALUE_READ".

Please help.

Regards,

Titiksha

3 REPLIES 3
Read only

Former Member
0 Likes
1,002

Hi Titiksha,

You will find this answer in the discussion below:

SAP Library - SAP NetWeaver by Key Capability

Regards,

Ashvin

Read only

Former Member
0 Likes
1,002

Hi.

if you successfully done dropdown list for field after that the value you selected from dropdown list stores in screen field(i.e. dropdown down field).

There is no need of DYNP_VALUES_READ Fm.

regards.

laxman

Read only

Former Member
0 Likes
1,002

Hi,

     Check the below example.

table: ZCH

data : begin of ifmtp occurs 0,

           form_type like zch-process,

        end of ifmtp.

  ifmtp-form_type = 'Sample'.

   APPEND ifmtp.

   ifmtp-form_type = 'Repair'.

   APPEND ifmtp.

   CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'

     EXPORTING

       retfield  = 'FORM_TYPE'

       value_org = 'S'

     TABLES

       value_tab = ifmtp.