‎2006 Apr 21 2:09 PM
‎2006 Apr 21 2:11 PM
hi Tharani,
Yes we can run
Check this out for the same
http://help.sap.com/saphelp_erp2005/helpdata/en/a5/631f0f43a211d189410000e829fbbd/frameset.htm
Regards,
Santosh
‎2006 Apr 21 2:11 PM
Hi Tharani,
Pl take a look at DEMO_MOD_TECH_MACROS.
Regards,
Suresh Datti
‎2006 Apr 21 2:11 PM
hi Tharani,
Yes we can run
Check this out for the same
http://help.sap.com/saphelp_erp2005/helpdata/en/a5/631f0f43a211d189410000e829fbbd/frameset.htm
Regards,
Santosh
‎2006 Apr 21 2:12 PM
U define macros in the ABAP
DEFINE INCR
&1
&2
END-OF-DEFINAITON
and u can call this macro as
INCR par1 par2
&1 &2 in the macro gets replaced with par1 and par2
‎2006 Apr 21 2:14 PM
hi
define macro ( concatenate charectors and append into table )
DEFINE mac_zcom_append_line.
clear &6.
concatenate &1 &2 &3 &4
into &6-line
separated by space.
append &6 to &5.
END-OF-DEFINITION.
Call Macro
mac_zcom_append_line text-003 'BAC' space space table_name.
order of the value should be maintained.
Feel free to ask further question
Message was edited by: Manoj Gupta
‎2006 Apr 21 2:17 PM
In this link http://help.sap.com/saphelp_erp2005/helpdata/en/a5/631f0f43a211d189410000e829fbbd/frameset.htm
I could see the details like..
To execute a macro:
In the planning table, choose Edit ® Macro.
The Macro Selection dialog box appears.
Where is this planning table? Do we have any Tcodes for this ?
‎2006 Apr 21 4:24 PM
Use transactions MF50(Planning Table Change mode) and MF52(Display mode).