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

Input value FM require

Former Member
0 Likes
962

Hi Experts,

Is there any function module which take input a integer value with continue and cancel button.

and i want to set the label of input field and set default value for input field.

and return the input value or cancel command code.

thanks

3 REPLIES 3
Read only

RaymondGiuseppi
Active Contributor
0 Likes
603

Check via SE37 there are many FM (use wildcard POPUPVALUE*) like POPUP_TO_GET_VALUE.

Regards,

Raymond

Read only

Former Member
0 Likes
603

Hi

data : sval type table of  sval with header line.
  sval-tabname =  'VBAP' " Find a table which has type I field
  sval-fieldname = 'ANZSN'. " Pass the Field here

  call function 'POPUP_GET_VALUES'
    exporting
*     NO_VALUE_CHECK        = ' '
      popup_title           = 'Enter A Numeric Value'
      start_column          = '5'
      start_row             = '5'
*   importing
*    returncode            = 
    tables
      fields                = sval
   exceptions
     error_in_fields       = 1
     others                = 2

Cheerz

Ram .

Read only

Former Member
0 Likes
603

I found the fm for the same