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

USER EXIT---FF67

Former Member
0 Likes
1,348

HI ALL

am writing a sample user exit for the FF67 transaction for which F40K0001 is the exit which am giving the enhancement asignments.After that am going to the components and am going into include file * INCLUDE ZXF40U01*.And am writing the code(that am displaying below )and when i go and execute the FF67 i see that my user exit is not executing.I activated evrything in the user exit.Still the same result.Please help.

INCLUDE ZXF40U01.

TABLES:FEBMKA.

DATA:BUKRS TYPE FEBMKA-BUKRS.

DATA:HBKID TYPE FEBMKA-HBKID.

DATA:HKTID TYPE FEBMKA-HKTID.

DATA:VGMAN TYPE FEBMKA-VGMAN.

DATA:VALUT TYPE FEBEP-VALUT.

DATA:KWBTR TYPE FEBMKA-KWBTR.

DATA:BELNR TYPE FEBMKK-BELNR.

IF BUKRS EQ '0001'.

MESSAGE E000(0) WITH 'ERROR'.

ENDIF.

IF HBKID EQ 'DB'.

MESSAGE E000(0) WITH 'ERROR'.

ENDIF.

IF HKTID EQ 'GIRO'.

MESSAGE E000(0) WITH 'ERROR'.

ENDIF.

IF VGMAN EQ '0001'.

MESSAGE E000(0) WITH 'ERROR'.

ENDIF.

IF VALUT EQ '21.03.2008'.

MESSAGE E000(0) WITH 'ERROR'.

ENDIF.

IF KWBTR EQ '1000'.

MESSAGE E000(0) WITH 'ERROR'.

ENDIF.

IF BELNR EQ '20001'.

MESSAGE E000(0) WITH 'ERROR'.

ENDIF.

With regards

Vijay

HI ALL

am writing a sample user exit for the FF67 transaction for which F40K0001 is the exit which am giving the enhancement asignments.After that am going to the components and am going into include file * INCLUDE ZXF40U01*.And am writing the code(that am displaying below )and when i go and execute the FF67 i see that my user exit is not executing.I activated evrything in the user exit.Still the same result.Please help.

INCLUDE ZXF40U01.

TABLES:FEBMKA.

DATA:BUKRS TYPE FEBMKA-BUKRS.

DATA:HBKID TYPE FEBMKA-HBKID.

DATA:HKTID TYPE FEBMKA-HKTID.

DATA:VGMAN TYPE FEBMKA-VGMAN.

DATA:VALUT TYPE FEBEP-VALUT.

DATA:KWBTR TYPE FEBMKA-KWBTR.

DATA:BELNR TYPE FEBMKK-BELNR.

IF BUKRS EQ '0001'.

MESSAGE E000(0) WITH 'ERROR'.

ENDIF.

IF HBKID EQ 'DB'.

MESSAGE E000(0) WITH 'ERROR'.

ENDIF.

IF HKTID EQ 'GIRO'.

MESSAGE E000(0) WITH 'ERROR'.

ENDIF.

IF VGMAN EQ '0001'.

MESSAGE E000(0) WITH 'ERROR'.

ENDIF.

IF VALUT EQ '21.03.2008'.

MESSAGE E000(0) WITH 'ERROR'.

ENDIF.

IF KWBTR EQ '1000'.

MESSAGE E000(0) WITH 'ERROR'.

ENDIF.

IF BELNR EQ '20001'.

MESSAGE E000(0) WITH 'ERROR'.

ENDIF.

With regards

Vijay

3 REPLIES 3
Read only

Former Member
0 Likes
873

Hi,

Did you activate the user-exit ???

REWARD IF USEFUL

Read only

0 Likes
873

Hi shree,

Yes.i have activated evrything i mean the ZFF67

Read only

0 Likes
873

Hi,

U need to activate the project hat you have assigned to this user exit. Go to CMOD assign a component to this project. Then activate the project. Only then your user exit will become active.

For assigning component to user exit you can refer any standard post in SDN.

I hope this resoleves ur problem.....