‎2007 Aug 09 11:02 AM
Hi Experts,
my requirement is that i need a function module which have the functionality same as popup_to_confirm but i need 2 input fields in that popup. so please send me if u know from your experienc with an expample.
with Regards,
Ram
‎2007 Aug 09 11:06 AM
‎2007 Aug 09 11:13 AM
Hi,
Check the following FM
POPUP_GET_VALUES
POPUP_TO_GET_VALUE
Reward if helpful.
‎2007 Aug 09 11:20 AM
i got the right function module (POPUP_GET_VALUES) in my investigation. any how thanks for the experts
‎2007 Aug 09 11:23 AM
Hi Ram,
try this ang look into fields.
data: fields type table of SVAL with header line.
*
fields-tabname = 'MARA'. fields-fieldname = 'MATNR'. append fields.
fields-tabname = 'BKPF'. fields-fieldname = 'BUDAT'. append fields.
CALL FUNCTION 'POPUP_GET_VALUES'
EXPORTING
POPUP_TITLE = 'Value Insert'
TABLES
FIELDS = fields.
*
Regards, Dieter