‎2014 Aug 25 11:20 AM
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
‎2014 Aug 25 11:42 AM
Hi Titiksha,
You will find this answer in the discussion below:
SAP Library - SAP NetWeaver by Key Capability
Regards,
Ashvin
‎2014 Aug 25 11:52 AM
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
‎2014 Aug 25 1:44 PM
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.