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

copying standard program

Former Member
0 Likes
976

Hi All,

For our requirement we have copied the standard program RFEBLB00 into Z program. Now this Z program no longer calls the RFEBLB20 but it calls the copy of that program ZRFBLB20. For some reason the user exits are not working in it. Why these user exits are not working I want them to be executed because before we are making copy of this program we have written some code in them. Shall I replace that code in the main program or what shall I do.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
938

Hi,,

As strom ther is no need of user exits once u make the copy of the standard program. User exits are used to write some piece of code in standard program. here entir program is Zprogarm so no need of exits.

7 REPLIES 7
Read only

Former Member
0 Likes
938

Hi,

Once u took the copy of the report.....there is no need for exits...try to write the same coding within ur report...

Exits are only for standard reports..

U cant use it in Z reports...

Regards,

Storm.

Read only

Former Member
0 Likes
938

Hi,

change only the name of the RFEBLB00 program.

dont change the remaining program names.

Read only

Former Member
0 Likes
939

Hi,,

As strom ther is no need of user exits once u make the copy of the standard program. User exits are used to write some piece of code in standard program. here entir program is Zprogarm so no need of exits.

Read only

0 Likes
938

Hi,

Whta u sadi is right there is no need of user exits in zprogarm but arleady(i.e. before making a copy of standard program) user exits have been implemented, now they are not implementing.

so only solution for me is to write the entire code now right.

Read only

0 Likes
938

Hi..

Just do one thing

the programs have the syntax like call customer function 001 or 002 like that write then the system will search for function module exit_<prgname>_001 or exit_<prgname>_001 which does not exits in u r case, i.e. exit_zprg_001 not possible to create and not possible to copy also so. try like this

call funtion exit_standardprgname_001

insted of call customer function..

i think it will solve u r problem

regards,

Sunil Kumar Mutyala

Read only

0 Likes
938

Hi Sunil,

Thanks that solved my problem..

i simply replaced that call customer function 001. with call function exit_RFEBLB20_001 and it worked.

Read only

Former Member
0 Likes
938

Hi Arvind,

User exits are only to make a little bit customization for standard programs or standard transactions.. So in your case you had copied a standard program into a Zprogram.. so user exits are not at all necessary in this case and they will not be acted on your program if you write something in that user exit.

if you want to make react the user exit then you don't copy the standard program and write your code in USER EXIT.

Hope this would help you.

Regards

Narin Nandivada