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

is there any popup function module which have the functionality of inputing

Former Member
0 Likes
499

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

4 REPLIES 4
Read only

Former Member
0 Likes
479

DO a search for a FM of POPUPVALUE*

Read only

Former Member
0 Likes
479

Hi,

Check the following FM

POPUP_GET_VALUES

POPUP_TO_GET_VALUE

Reward if helpful.

Read only

Former Member
0 Likes
479

i got the right function module (POPUP_GET_VALUES) in my investigation. any how thanks for the experts

Read only

Former Member
0 Likes
479

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