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

Regarding Exits in Validations

Former Member
0 Likes
2,200

Hi SAP Gurus,

For a validation, I need to write an exit, so i copied 'RGGBR000 ' into a Z program, and i have given a new exit , but wen i go to GGB0-Prerequisites->Exit , i am not able to find it.

Plz help,

Thanks & Regards,

Pavan.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,883

Hi Pavan,

Probably you have not maintained entries for client specific User Exits in FI-SL using transaction code GCX2.

Go to transaction GCX2 and mainatin following entry.

Application Area : GBLR

Ext Prog : ZRGGBR000 ( Change this to your Z-Program instead of RGGBR000 )

Hope this wil resolve your problem.

All The Best!!!

Regards,

Anil Salekar

Hi SAP Gurus,

For a validation, I need to write an exit, so i copied 'RGGBR000 ' into a Z program, and i have given a new exit , but wen i go to GGB0-Prerequisites->Exit , i am not able to find it.

Plz help,

Thanks & Regards,

Pavan.

6 REPLIES 6
Read only

jaideepsharma
Active Contributor
0 Likes
1,883

Hi,

You can't see the include name but can see the subroutines you have created in the Z-include.

KR Jaideep,

Read only

0 Likes
1,883

Thanks ,

Ya , i have given in a subroutine(Perform) , But not able to get in GGB0-> exit column.

Plz suggest!

Read only

SuhaSaha
Product and Topic Expert
Product and Topic Expert
0 Likes
1,883

Hello Pavan,

I donot think you have to write any PERFORM statement. You have to added the exit subroutine to the table exits.

In the copied program RGGBR000 you will find a subroutine GET_EXIT_TITLES where you need to add the name of your subroutine.


  exits-name  = 'U100'. "Exit Name
  exits-param = c_exit_param_none.        "Complete data used in exit.
  exits-title = 'Test Exit'. "Exit Title
  APPEND exits.

The FORM is called dynamically based on the Validation Prerequisite.

Hope i am clear.

BR,

Suhas

Read only

Former Member
0 Likes
1,884

Hi Pavan,

Probably you have not maintained entries for client specific User Exits in FI-SL using transaction code GCX2.

Go to transaction GCX2 and mainatin following entry.

Application Area : GBLR

Ext Prog : ZRGGBR000 ( Change this to your Z-Program instead of RGGBR000 )

Hope this wil resolve your problem.

All The Best!!!

Regards,

Anil Salekar

Read only

0 Likes
1,883

Thanks all ,

Problem solved,

I have not maintained in gcx2.

Regards,

Pavan.

Read only

0 Likes
1,883

This message was moderated.