2008 Apr 30 2:42 PM
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
2008 Apr 30 3:03 PM
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
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
2008 Apr 30 3:03 PM
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
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |