‎2007 Sep 18 11:52 AM
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.
‎2007 Sep 18 12:26 PM
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