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

warnig message in FORM PROTOCOL_UPDATE_SPOOL

Former Member
0 Likes
570

this is the standard invoice program,,,

during updating of 4.6c into 5.00 ,, this area giving me a error like

inunicode program, "." character cannot appear in names ,as it does not here in the name 'SYST-MSGNO'.

and this total update_spool giving me an error

can u send me how to solve and help me to find the update notes for this area

IF i_itcpp-tdspoolid NE space.

PERFORM protocol_update_spool USING '342' i_itcpp- tdspoolid space space space.

ENDIF.

-


----


  • FORM PROTOCOL_UPDATE_SPOOL *

----


  • The messages are collected for the processing protocol. *

----


FORM protocol_update_spool USING syst-msgno h_i_itcpp-tdspoolid

syst-msgv2 syst-msgv3 syst-msgv4.

syst-msgid = 'VN'.

syst-msgv1 = h_i_itcpp-tdspoolid.

CONDENSE syst-msgv1.

CHECK xscreen = space.

CALL FUNCTION 'NAST_PROTOCOL_UPDATE'

EXPORTING

msg_arbgb = syst-msgid

msg_nr = syst-msgno

msg_ty = syst-msgty

msg_v1 = syst-msgv1

msg_v2 = syst-msgv2

msg_v3 = syst-msgv3

msg_v4 = syst-msgv4

EXCEPTIONS

OTHERS = 1.

ENDFORM.

2 REPLIES 2
Read only

nishanthbhandar
Contributor
0 Likes
499

Uncheck the unicode check attribute in the associated program and the warning message will disappear.

Read only

0 Likes
499

Please use this FM to update NAST.

RV_MESSAGE_UPDATE_SINGLE

FM NAST_PROTOCOL_UPDATE is used to store processing log.

Hope this will help.