2008 May 15 7:51 PM
I find the following new syntax in version 7.1. Anybody have info related to these?
1.
TYPES:
BEGIN OF s1,
comp1 TYPE I,
comp2 TYPE syst BOXED,
END OF s1.
2.
concat_lines_of
3
to_mixed
4
from_mixed
5.
&&
a®
2008 May 15 8:31 PM
2008 May 15 7:58 PM
hi the first can ge explained in declaring the internal tables we use the command like this..
data: begin of itab occurs 0 ,
field1 type c,
end of itab.
but this is not good and it takes some fixed memory even though the internal table occupies so small space..for the bet memory allocation we use the types..
types: begin of wa,
field1 type c,
end of wa.
data: itab type standard table of wa with header line .
hope it clearify ur doubt..
regards,
venkat.
2008 May 15 8:03 PM
2008 May 15 8:12 PM
Rich,
I have seen this in Process integration Netweaver 7.1. some custom program written , that i needs to be corrected.
Can somebody please give sap documentation link , to know details about this syntax.
a®
2008 May 15 8:14 PM
2008 May 15 8:17 PM
Rich,
some custom program written , that i needs to be corrected.
a®
2008 May 15 8:21 PM
2008 May 15 8:27 PM
In regard to the first one, where BOXED is being used. The english documenation is not yet available, but you should have the german. Do F1 help on this word, the copy the german documantation, use google's translation tools to translate to english, yes I know, it will be bad, but unless you are a native german speaker, that's the best you have.
As for the others, are they macros?
Regards,
Rich Heilman
2008 May 15 8:31 PM
2008 May 15 8:36 PM
Rich,
These are not in macros.
Thanks for you help, F1 help are in German, That's okay. i can get some help after translation. and also find one document from SAPteched 07.
May this will useful to you also.
http://media.sapintel.com/CD200%20ABAP%2071.pdf
a®
2008 May 15 10:31 PM