TYPES: BEGIN OF t_date, year(4) TYPE n, month(2) TYPE n, day(2) TYPE n, END OF t_date.FIELD-SYMBOLS <fs> TYPE t_date. ASSIGN sy-datum TO <fs> CASTING. WRITE / sy-datum. SKIP. WRITE: / <fs>-year , / <fs>-month, / <fs>-day. 2. 3. 4. 5. 6. 7. 8. 9....
ABAPCORRESPONDING 加条件abaprange RANGES 语句:用与选择表相同的结构创建内表,可使用RANGES语句,如下所示:语法:RANGES <seltab> FOR <f>. 该语句创建选择表<seltab>,该表参考数据库表的列<f>或内部字段<f>。选择表<seltab>必须在程序中填充。不必在程序中再用TABLES语句 ...
SAP Managed Tags: ABAP Development Hi, I have to use one statement in field-symbol similar to "move-corresponding" in normal internal table.Is it possible to use statement similar to "Move-corresponding in field-symbols". For Eg: Field-symbols <FA_IT> type standard table. data:begin of...
I wanted to get the name of the proxy class as varible and then exceute the appropriate ones...but because of the type casting problems it seems that all I can do is do data declaration for all the classes and then use case statement to choose the right one based on the parameter. O...