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....
SAPABAPBORtype Created by Wang, Jerry, last modified on Jan 06, 2017You might have observed that in both settype and relationship metadata table, there aretypeBUS1178 maintained. What is it?It is BORtypefor ... ABAP 原创 JerryWang汪子熙 ...
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...