Application Development 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: 

OB28

Former Member
0 Kudos

Hi,

i try to add user exit to this transaction:

what i did is:

i go to CHECK in one of the step and

went to abap editor, than i asked for access key to make changes,

and add a form.

my problem is:

1. i dont know if this is what i should do to add U.E.

2. i dont see the form that i add in the list of technical name.

did i do thos correctly?

how can i see my form in the technical name?

thanks,

dana.

1 ACCEPTED SOLUTION

raymond_giuseppi
Active Contributor
0 Kudos

You don't need a key to change SAP sample.

You create your own Z-program where you will insert your forms (rg by copying RGGBR000 check or RGGBS000 substitute)

Then you input the name of your program in table T80D.

Add your forms and don't forget to fill the internal table used for F4 in FORM GET_EXIT_TITLES .

  exits-name  = 'UXXX.
  exits-param = c_exit_param_none.
  exits-title = text-xxx.
  APPEND exits.

There are sample in sample programs.

<i>(Press F1 help on field user-exit number)</i>

Regards

5 REPLIES 5

raymond_giuseppi
Active Contributor
0 Kudos

You don't need a key to change SAP sample.

You create your own Z-program where you will insert your forms (rg by copying RGGBR000 check or RGGBS000 substitute)

Then you input the name of your program in table T80D.

Add your forms and don't forget to fill the internal table used for F4 in FORM GET_EXIT_TITLES .

  exits-name  = 'UXXX.
  exits-param = c_exit_param_none.
  exits-title = text-xxx.
  APPEND exits.

There are sample in sample programs.

<i>(Press F1 help on field user-exit number)</i>

Regards

0 Kudos

hi,

i really aprriciated your answer, it was very helpfull.

i have one more question: how do i input my program name in this table?

thank you,

dana.

0 Kudos

raymond, can you pls pls pls answer me how can i input my program in this table?

thank you.

0 Kudos

Use SM30 on view V_T80D "Client-Specific User Exits in FI-SL"

Change/Insert value with

GBLR	ZFSF_EX_004_02	Val/sub: Exits for rules
GBLS	ZFSF_EX_004_01	Val/sub:Exits for substitution

(Use your own names of course)

Don't forget to transport along with your include

Regards

0 Kudos

thank you very very much raymond,

you been very very helpfull!!!!

dana.