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: 

field exit on fileld no editable

Former Member
0 Kudos

Hi abappers,

Are there any way for debbuging field exit?

How run the field exits on field no editable?

Is used the field exit on version >= 4.6C

Can you help me please?

Cordial greetings

5 REPLIES 5

Former Member
0 Kudos

This message was moderated.

GauthamV
Active Contributor
0 Kudos

hi,

execute RSMODPRF program by giving your

data element it will take directly to the code of field exit

just put a beak point there by break <username>.

now run your transaction for that field.

Former Member
0 Kudos

Thank you for your attention,

Gautham,

How I fix the breakpoint with my user on version 4.6C (on version ECC6 the icon I found but on version 4.6C I dont found the icon or menu)

Can you help me?

Cordial greetings.

GauthamV
Active Contributor
0 Kudos

hi,

Field exits are obselete after 4.6 version.

If you execute the program RSMODPRF with your data element

you will goto field exit which is nothing but a function module.

open it in se37 and you can place the break point.

Former Member
0 Kudos

Hi

A) Are there any way for debbuging field exit?

The trick to debug the field-exit is to download the data to a file on application server;

B) How run the field exits on field no editable?

It can't do it, because a field-exit is triggered as soon as a value of the field is changed.

D) Is used the field exit on version >= 4.6C

SAP doesn't support the field-exit from realese 4.7: the field-exit still works on the realese 4.7 and, I suppose, 5 and 6.00: but it doesn't work for enjoy transactions.

Anyway I believe it's better to replace the field-exit with a new solution from realese 4.7

Max