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

update column in screen painter

Former Member
0 Likes
848

i have column in screen painter and i write data when i make enter it's dissapear why???

1 ACCEPTED SOLUTION
Read only

nabheetscn
SAP Champion
SAP Champion
0 Likes
771

Hello the reason is PAI module is triggered where you dont do anything and screen refreshes.

Regards

Nabehet Madan

i have column in screen painter and i write data when i make enter it's dissapear why???

2 REPLIES 2
Read only

nabheetscn
SAP Champion
SAP Champion
0 Likes
772

Hello the reason is PAI module is triggered where you dont do anything and screen refreshes.

Regards

Nabehet Madan

Read only

MarcinPciak
Active Contributor
0 Likes
771

Did you have corresponding data object defined in program?

I guess this is where the issue comes from. Simply system can't exchange data b/w screen and program.

Try declaring one, it should help then.

Also, what do you mean by column ? If it is a table control you need to use definition of this table, the simplest is usually by


TABLES name_of_table.

If this is a single field taken as reference from DDIC you should simply define it like


DATA name_of_table-name_of_column TYPE name_of_table-name_of_column.

Regards

Marcin