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

Exit

Former Member
0 Likes
533

The FM EXIT_SAPLATPC_001 has an include zxatpu01...This is an Exit.

Similarly,

The FM EXIT_SAPFV45K_001 has an include zxvvau03 ..This is also an Exit.

Although,these two are exits but the way they are called is different.

Exit_SAPLATPC_004 is called as:

call customer-function '001'

tables

t_atpcsx = p_atpcsx

t_atpfieldx = p_atpfieldx.

Whereas,

EXIT_SAPFV45K_001 is called as:

call function 'EXIT_SAPFV45K_001'

exporting

ivbak = vbak

ivbkd = vbkd

changing

da_kkber = da_kkber.

Can anyone explain the difference in the calling procedure.Are both of them customer-Exit.

Is cutomer-Exit and Function Module exit 2 different Concepts.

1 REPLY 1
Read only

Former Member
0 Likes
447

Dear SK,

Initial versions used EXIT_SAPFV45K_001 to call exits and in later developments called using call customer-function ' 001'.

Functional module exit is one of the customer exits.The others are screen , menu and field exits.

Regards,

Madhu