Application Development 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: 

Filling Parameters Automatically After Press Enter???

Former Member
0 Kudos

Hi Abap expert,

I have list of parameters

parameters: NAMEV like zcon-NNAV,

                   NUMBL like zcon-NUBL ,

                  CONTN like zcon-CONN OBLIGATORY,

                  VENDO like zcon-VEND,

                  DARRV like zcon-DARR ,

                  DSORP like zcon-DSOP ,

                 DARRS like zcon-DARR ,

                 DSORS like zcon-DSOP ,

                 WEIGHT like zcon-WEIG,

                 ZCOMMENT like zcon-ZCOM.

This programme is used for updating table.

so, i want when the user write in field CONTN and press enter.

The programme read from table and fill automatically the other parameters.

Can some one help me.

3 REPLIES 3

Former Member
0 Kudos

Hi ,

use AT SELECTION-SCREEN  event

Former Member
0 Kudos

You are doing this in report or module pool program.

If you are doing this in report then use AT SELECTION-SCREEN  event as Maxim said,

But if you are doing this in module pool the use PAI event.

At PAI event use on request like

Suppose u have field CONTN then

Field CONTN module abc on request.

in side the abc module do your coding and assign the values to your field.

Regards

Neeraj

Former Member
0 Kudos

Hi Vamshi,

Use AT SELECTION-SCREEN ON CONTN event and write code for reading from table and filling other parameters under this event.

Regards,

Sheetal.