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

FM : RV_MESSAGE_UPDATE

Former Member
0 Kudos
1,202

Hi all,

Can anyone please tell me how to use FM RV_MESSAGE_UPDATE?

Thanks and regards,

Ridhima.

2 REPLIES 2
Read only

anversha_s
Active Contributor
0 Kudos
611

HI,

chk this.

  • current messages

DATA: XNAST LIKE VNAST OCCURS 20 WITH HEADER LINE.

  • old messages

DATA: YNAST LIKE NAST OCCURS 20 WITH HEADER LINE.

  • do all necessary commit functions

CALL FUNCTION 'RV_MESSAGE_UPDATE'

EXPORTING

MSG_OBJKY = MSG_OBJKY

TABLES

MSG_XNAST = XNAST

MSG_YNAST = YNAST.

rgds

anver

Read only

Former Member
0 Kudos
611

Hi ,

DATA : l_objkey LIKE nast-objky.

CALL FUNCTION 'RV_MESSAGE_UPDATE'

EXPORTING

msg_kappl = 'OQ'

msg_objky = l_objkey

TABLES

msg_xnast = xnast

msg_ynast = ynast

EXCEPTIONS

no_update = 1

OTHERS = 2.

Hope this helps

Regards

Sunil.M