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

How to update the data from user exit to program screen fields

Former Member
0 Likes
586

Hi Gurus,

I need to update the date from user exit to TXN code TRIP Screens fields

But this is screen fields contains the structure name.

Structure name is: ptk08.

Please guide me how to transfer data from user exit to screen fields.

Thanks in Advance

Ramesh

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
396

hello,

did you try change field value via "assign" command?

example:

FIELD-SYMBOLS <zfvbrp> TYPE STANDARD TABLE.

DATA: zsvbrp(20) VALUE '(SAPMV60A)xvbrp[]'.

ASSIGN (zsvbrp) TO <zfvbrp>.

CHECK sy-subrc = 0.

REFRESH <zfvbrp>.

greetings,darek

hello,

did you try change field value via "assign" command?

example:

FIELD-SYMBOLS <zfvbrp> TYPE STANDARD TABLE.

DATA: zsvbrp(20) VALUE '(SAPMV60A)xvbrp[]'.

ASSIGN (zsvbrp) TO <zfvbrp>.

CHECK sy-subrc = 0.

REFRESH <zfvbrp>.

greetings,darek

1 REPLY 1
Read only

Former Member
0 Likes
397

hello,

did you try change field value via "assign" command?

example:

FIELD-SYMBOLS <zfvbrp> TYPE STANDARD TABLE.

DATA: zsvbrp(20) VALUE '(SAPMV60A)xvbrp[]'.

ASSIGN (zsvbrp) TO <zfvbrp>.

CHECK sy-subrc = 0.

REFRESH <zfvbrp>.

greetings,darek