‎2008 Jan 04 9:55 AM
Hi All,
I want to add impicit enhancements on the report program RFFOUS_C ( used for check printing) but i dont have any idea what is impicit enhancements and how to do the same.
Please help.
Regards,
Vivek
‎2008 Jan 04 9:59 AM
Hi Vivek,
It is well described in the SAP help:
http://help.sap.com/saphelp_nw70/helpdata/en/42/d356adddec036fe10000000a114cbd/frameset.htm
Regards,
John.
‎2008 Jan 04 10:11 AM
hi
good
In ABAP programs, implicit enhancement options are predefined at the following places:
· At the end of an include. There are some restrictions, for example, not at the end of a method include.
· At the end of a PUBLIC-, PROTECTED-, PRIVATE-SECTION of a class.
· At the end of the implementation part of a class (before the ENDCLASS, which belongs to CLASS IMPLEMENTATION).
· At the end of an interface definition (before the ENDINTERFACE).
· At the end of a structure definition (before TYPES END OF, DATA END OF, CONSTANTS END OF, and STATICS END OF).
· At the beginning and at the end of a procedure (FORM, FUNCTION, METHOD). That is, after commands FORM, FUNCTION, and METHOD, and before statements ENDFORM, ENDFUNCTION, and ENDMETHOD.
· At the end of the CHANGING-, IMPORTING-, EXPORTING-parameter list of a method. These enhancement options are located in the middle of a statement.
http://help.sap.com/saphelp_nw04s/helpdata/en/29/e59441026aae5fe10000000a1550b0/content.htm
thanks
mrutyun^