‎2006 Jun 06 11:03 AM
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.
‎2006 Jun 06 11:11 AM
Uncheck the unicode check attribute in the associated program and the warning message will disappear.
‎2006 Jun 06 11:32 AM
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.