Skip to Content
0
Former Member
Mar 11, 2009 at 03:27 AM

Asterisk value in Java UDF

78 Views

Hello everyone,

I would like to add an asterisk (*) in a Java lookup UDF in a mapping program.

example:

String content = "";

MappingTrace importanttrace;

importanttrace = container.getTrace();

// filling the string with our RFC-XML (with values)

String m = "<?xml version=\"1.0\" encoding=\"UTF-8\"?><ns0:RFC_READ_TABLE xmlns:ns0=\"urn:sap-com:document:sap:rfc:functions\"><QUERY_TABLE>"a"</QUERY_TABLE><DATA></DATA><FIELDS><item><FIELDNAME>"b"</FIELDNAME></item></FIELDS><OPTIONS><item><TEXT>*</TEXT></item></OPTIONS></ns0:RFC_READ_TABLE>";

The asterisk should be between the <TEXT></TEXT> xml tag.

Do I need to use ascii characters for this?

Thanks in advance!

IX