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: 

pop up values in abap

0 Kudos
355

Hi Abaper's,

I am facing one issue in VA02 transaction.

My question is how to capture the pop up screen internal table values means when we select a line from that pop up(say we have 4 lines) the requied or the selected value has to be saved in the one of the field in va02 transaction.

5 REPLIES 5

PeterJonker
Active Contributor
0 Kudos
217

Which popup you are talking about ? Did you program a popup yourself ?

If so which function module did you use and how did you code this.

If not, which popup for which field are you talking about ?

0 Kudos
217

Yes peter, in standard program we implemented custom pop up function module.

call function 'ZZ_POPUP'.


             
EXPORTING
                 endpos_col 
= 68

                endpos_row  
= 14

                startpos_col
= 24

                startpos_row
= 1

                titletext   
= lv_title

             
TABLES

                valuetab    
= it_papec_tbl_new.

and above internal table has 4 fields in it.i want to read those values and have to populate it into custom field which will be in VBAP structure.

So how to populate the selected value in the pop up and populate in the vbap table.?

Former Member
0 Kudos
217

Hi,

whats the field in VA02 transaction? is it standard fied? and in VA02 means it should save in any one of the table. please provide some more details of your issue.

Thanks,

Sree

0 Kudos
217

Hi Sree,

It is actually a custom field in vbap table.

0 Kudos
217

Hi,

have you written the logic to pass the selected value to tabel field?

call FM POPUP_GET_VALUES to pass list of values to that field.

Thanks,

Sree