Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Implicit Enhancements

Former Member
0 Likes
428

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

2 REPLIES 2
Read only

Former Member
0 Likes
404

Hi Vivek,

It is well described in the SAP help:

http://help.sap.com/saphelp_nw70/helpdata/en/42/d356adddec036fe10000000a114cbd/frameset.htm

Regards,

John.

Read only

Former Member
0 Likes
404

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^