我需要在扼杀中划定不同的界线。
为此,我需要使用CR + LF 六dec性质。
问题是,当我利用8个轨道/果园环境时,我只需要做这样的事情:
constants : c_lf type x value 10 .
constants : c_cr type x value 13 .
data : g_html type string.
concatenate <html> c_cr c_lf into g_html.
但是,在16个轨道/果园环境中,X变量并不代表CR和LF正确的六分母代表。
因此,我要利用这样的东西:
constants : c_lf(2) type x value 0010 .
constants : c_cr(2) type x value 0013 .
data : g_html type string.
concatenate <html> c_cr c_lf into g_html.
因此,可以找到ABAPWebAS使用的tes/char的数量?
感谢!