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

Reg include generated in function library

Former Member
0 Likes
2,060

Hi Experts,

I have three include generated while creating maintanance view

*****************************************************************

  • THIS FILE IS GENERATED BY THE FUNCTION LIBRARY. *

  • NEVER CHANGE IT MANUALLY, PLEASE! *

*****************************************************************

INCLUDE LZZMEDRUCK_SPU01.

"ZUS_ME_PRINT_PO_SP1

INCLUDE LZZMEDRUCK_SPU02.

"TABLEFRAME_ZZMEDRUCK_SP

INCLUDE LZZMEDRUCK_SPU03.

"TABLEPROC_ZZMEDRUCK_SP

All these includes are created in function group zzmedruck_sp.

I need to delete these includes.

Thanks in Advance,

Sashti

7 REPLIES 7
Read only

Former Member
0 Likes
1,204

Include program that are created in function group while create Table maintenance

should not be deleted because they are use internally by Table maintenance.

You can delete it from :

SE80>Function group->Name--->Right click and delete

Includes are just 'I' type programs you can use function module:

RS_DELETE_PROGRAM

to delete includes.

Regards,

Gurpreet

Read only

0 Likes
1,204

Hai

the function group is used for other part and i cannot and also should not delete function group. Is there any option to make those includes disabled . because it creates problem while using for other code changes. How to revert back(disable) those includes? im in situation to immediately revert back my changes.

Thanks,

Sashti

Read only

0 Likes
1,204

Just Goto>SE80>Function Group

Comment out the Includes(I.e * in front of the include)

Then activate and check the function group works properly.If not uncomment include.

Regards,

Gurpreet

Read only

0 Likes
1,204

thanks,

I tried RS_DELETE_PROGRAM to delete those includes, but i get error Only delete function module includes using the Function Builder

can u guide me how to proceed?

Read only

0 Likes
1,204

Those include programs for Function modules but these function modules can be used by Table maintenance

JUST open function group check if there any function module exists.

ZZMEDRUCK_SPU01/2/3 or any other that is using the same includes

try to delete those function module from SE37 but check the dependencies

of function module.

INCLUDE LZZMEDRUCK_SPU01-----Just comment it in the main include
         I think there are dependencies for that reason you cannot delete it
        Create a new one and use it

Regards,

Gurpreet

Read only

0 Likes
1,204

Hai ,

those includes fall under this main include INCLUDE LZZMEDRUCK_SPUXX. " Function Modules

i need the first include INCLUDE LZZMEDRUCK_SPU01. present within the main include, hence cannot comment the whole include LZZMEDRUCK_SPUXX and go ahead with the coding part.

can u guide me?

Thanks,

Sashti

Read only

0 Likes
1,204

Thanks singh, i resolved it, but u helped me a lot.