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

Requiremt Routines

Former Member
0 Likes
921

HI Experts,

When we add a new requirement in VOFM, it generated two FORM routines as below.

FORM KOBED_997.

Here I write some code to make sy-subrc 0 OR 4...

ENDFORM.

FORM KOBEV_997.

ENDFORM.

What is the use of the second one i.e. KOBEV one. I always use the first one for say ignoring the pricing condition..

Couuld you please explain this in detail?

HI Experts,

When we add a new requirement in VOFM, it generated two FORM routines as below.

FORM KOBED_997.

Here I write some code to make sy-subrc 0 OR 4...

ENDFORM.

FORM KOBEV_997.

ENDFORM.

What is the use of the second one i.e. KOBEV one. I always use the first one for say ignoring the pricing condition..

Couuld you please explain this in detail?

2 REPLIES 2
Read only

Former Member
0 Likes
846

Hi,

KOBEV is a pre-check performed on header processing

KOBED is the real check performed on position processing.

So it better to performance to check everything what possible on header processing in KOBEV.

(You could see OSS-note 156230)

Regards,

Read only

Former Member
0 Likes
846

This message was moderated.