Application Development 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: 

Message code - Code Inspector

Former Member
0 Kudos

Hi All,

I am making program unicode compliant. When I use code inspector, I am getting following error. Please le me know how to rectify these. Also pLease let me know

Where I will get enough information about different message code.

Message code 1700

Program ZSDS_DEPLOYMENT include ZSDS_DEPLOYMENT row 000464 column 0000

Char. Strings w/o text elements will not be translated.

"error: source / destination not in ZSDSLOCMAP"

perform write_error using 'error: Source/Destination not in ZDSPLOCMAP'

wt_inputrec-MATERIAL wt_inputrec-SOURCELOC

wt_inputrec-DESTLOC wt_inputrec-DATESHP wt_inputrec-QTY.

-


Also I am getting message code error 1701.

Message code 1701

Program ZSDS_DEPLOYMENT include ZSDS_DEPLOYMENT row 001092 column 0000

TEXT-E16 is not defined in text pool of

if sy-subrc <> 0.

move text-E16 to message.

move wt_zmkunnr_mu-kunnr to paramater.

E16 is not available in text messages.

-


Thanks

1 REPLY 1

Former Member
0 Kudos

Hello,

in the first case you are using a literal as parameter for a subroutine. That's the problem. In SAP code inspector you will get an error/warning. You can define your own message class or you use the text pool to solve the problem.

In the second case you give the answer yourself. You can not move an undefined variable to another. You have to define it in the text pool.

Regards,

Sven