cancel
Showing results for 
Search instead for 
Did you mean: 

file to filew scenario

0 Kudos

how to remove " (quotes) from my sendor file to reciever file

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi Sahil,

NameA.enclosureSign: Specify a string here that acts as a text delimiter. Text enclosed by such delimiters is transferred to the target structure unmodified although the default setting is to remove all text delimiters. Separators within such texts are ignored.

NameA.enclosureSignEnd : If the text delimiters for the beginning and end of the text are different, specify the text delimiter for the end of the text here.

If you do not make an entry here, then the entry from NameA.enclosureSign is used instead.

NameA.enclosureConversion: · Specify YES if the text delimiter is to be removed when the files are transferred or if the escape character is to be replaced.

· Enter NO if the character is to be transferred unaltered.

If you specify xml.enclosureSign=u201C and xml.enclosureSignEsc=u201Cu201C, text enclosed in quotation marks is transferred unchanged and the quotation marks are removed.

If the escape character for a quotation mark (u201Cu201C) itself occurs in the text, it is replaced by the quotation mark during the transfer.

For refer, check the below link:

http://help.sap.com/saphelp_srm40/helpdata/en/2c/181077dd7d6b4ea6a8029b20bf7e55/frameset.htm

Thanks,

former_member472138
Active Contributor
0 Kudos

Hi

You can also do this with the simple UDF. You can use this in a file whichever the field quotes comes in

Here a is the input value.

String b = "";

b = a.replaceAll(""", "");

Like all the special characters you can take and replace with zero.

...........

return b;

Regards

Pothana

Former Member
0 Kudos

Hi,

You can use

xml.enclosureSign: "

xml.enclosureSignEnd: "

Refer: http://wiki.sdn.sap.com/wiki/display/XI/FileContentConversion

Regards,

Abid Farooque