HI,
Welcome to SDN...
I dont believe that ABAP has <b>WITH</b> Clause...
ABAP Have some of below clauses...
<b>SELECT
ENDSELECT
INTO
WHERE
HAVING
ORDER-BY
GROUP-BY
FROM</b>
u can also use loops like...
<b>DO...ENDDO.
WHILE....ENDWHILE.
LOOP....ENDLOOP.</b>
Regards
CNU
Nothing like that, but of cousre your requirement can be done in ABAP other ways. For example, If you want to dynamically fill a field, you can use the ASSIGN COMPONENT statement. I would really have to understand your required in order to point you in the right direction. Can you explain a bit more?
Regards,
Rich HEilman
Hi Ian,
Perhaps you can build an macro.
Syntax:
DEFINE macro.
... &1 ... &9 ...
END-OF-DEFINITION.
Regards,
Ferry Lianto
So far things look like this
data: itab type table of t_itab,
w_itab type t_itab.
w_itab-tabname = 'Tablename'.
w_itab-position = 'Pos'.
...
append w_itab to itab.
whereas it might read ...
with w_itab do
tabname = 'Tablename'.
position = 'Pos'.
endwith
Add a comment