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: 

problem field exit

Former Member
0 Kudos

I abap expert...

I have a problem with field exit for KOB1.

I created field exit for the 'Order' field, in the first screen of kob1.

data element AUFNR, screen 0110 and program RKAEP000.

AUFNR ACTIVE RKAEP000 0110 <- this my.

SAPLKACB 1007 <- already exist.

SAPLKACB 2007 <

In the FM for aufnr:

function field_exit_aufnr.

*"----


""Interfaccia locale:

*" IMPORTING

*" VALUE(INPUT)

*" EXPORTING

*" VALUE(OUTPUT)

*"----


output = input.

message e000(zo) with 'bella'.<-this message no work

.....

Someone help me? i forget or wrong something?

Thank you

1 ACCEPTED SOLUTION

Former Member
0 Kudos

copy piece of the screen from RZ11

Nome param.

abap/fieldexit

Val.default no

Val. attuale yes

is set to 'yes'... the problem is in my field exit

8 REPLIES 8

Former Member
0 Kudos

You have to activate field-exits support in your SAP system settings (ask you BASIS administrators).

BR, JAcek

P.S PLEASE reward helpful answers

Former Member
0 Kudos

Thanks, I can have the possibility to see if the fiel exit support is atcive, with my ID, or only an administrator?

0 Kudos

The profile parameter abap/fieldexit should be set to 'YES'.

Use transaction RZ11 to check the parameter value. Needless to say, If you have authorization to RZ11 you will be able to execute it.

-Kiran

*Please reward useful answers

0 Kudos

you can check if it is active running RSPARAM program in SE38 transaction . YOu have to find abap/fieldexits in parameters name. There must by 'YES' value in user defined vales column (second one). I dont know if you can do it by yourself it depends of your authorisations. Bu there is one warning. After setting value to yes you have to restart your whole system !!! , to have it working.

BR, Jacek

P>S plese reward helpful answers

have you activated your field exit ?? (chec using RSMODPRF

- program)

ANd opne more question - are you testing it on your develpment system ?? ora after transporting to otehr system ??

Message was edited by: Jacek S³owikowski

Message was edited by: Jacek S³owikowski

Former Member
0 Kudos

copy piece of the screen from RZ11

Nome param.

abap/fieldexit

Val.default no

Val. attuale yes

is set to 'yes'... the problem is in my field exit

0 Kudos

Hi Fabrizio

I believe the field-exit doesn't work in the selection-screen, but only in the dialog screen.

From Sap note 29377:

Field exit technology was developed for input fields on dynpros and cannot be used for other/new dynpro elements. This means that this technology does not offer support for the new ScreenPainter elements such as graphical elements (e.g. checkbuttons, radiobuttons, dropdown listboxes), controls (except for table controls which are supported like a step loop), or selection screens.

Max

0 Kudos

KOB1 is a report. Field exit dosen't work in selections screens.

Regards.

Former Member
0 Kudos

Ok all, thanks.

You have resolv my problem,

points for all.

Bye