cancel
Showing results for 
Search instead for 
Did you mean: 

FF_5 & FEBAN user exit - FEB00001 (include ZXF01U01)

former_member399569
Participant
0 Kudos

Hi,

We have added this user exit in transaction FF_5 and FEBAN and it is working correctly.

but this user exit is not been called when we try to post individual line item using txn FEBAN.

after go thru the standard program, seems there is a checking on field FEBKO-KIPRE and FEBEP-PIPRE.

I can't find the function of these fields in any forum and 'where used list' button.

Has anyone got idea or got same experience with me?

Thanks

program: RFEBBU10

select * from febko into table yfebko

where kukey in r_kukey

and kipre ne 'X'.

loop at yfebko.

select * from febep into table yfebep

where kukey = febko-kukey

and pipre ne 'X'.

loop at yfebep.

......

*perform userexit using testrun.*

....

endloop.

endloop.

Accepted Solutions (0)

Answers (2)

Answers (2)

former_member399569
Participant
0 Kudos

thanks.. has forward to my functional and pending their feedback.

Renan_Correa
Active Contributor
0 Kudos

HEllo,

The meaning of field FEBKO-KIPRE is that: 'All items on header record

were interpreted.'

Programm RFEBBU10 (Einzelposten_Auswerten) make a select on tables

FEBKO and FEBEP. Interpreted all items and after that the field KIPRE

respectively PIPRE is set to 'X'. Is KIPRE filled with 'X', there is no

way to check or to interpret the same items again. The fact is:

If the items are not interpreted the first time, there is no

possibility to interpret it next time.

For further info please refer to the SAP note 494777.

REgards,

REnan