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

In Exits

Former Member
0 Likes
713

Hi,

Which are the abap statements i can't use in user-exits?

1 ACCEPTED SOLUTION
Read only

gaursri
Active Contributor
0 Likes
691

Hi Amitab,

User exit is provided by SAP if the customer feels that he needs to modify something.As we all know that the scenario depends upon various factor.So if anything other than standard is met during business process you need to modify it.So in the modification you can write code just as the normal ABAP coding.The things may depend on the application usages.Which can be sorted out only when it you using those exits.It is recommended that User exit be the last option.There are many application specific user exit.So coding also has to be done in consideration of keeping those things in mind.

Have a best day ahead.

Hi,

Which are the abap statements i can't use in user-exits?

4 REPLIES 4
Read only

Former Member
0 Likes
691

Hi,

You can use any statements in the user-exits apart based on the exit available... if its a screen exit, then you can use screen declaration....

you cannot use the abap events statements in the exits...

Regards,

Siddarth

Read only

gaursri
Active Contributor
0 Likes
692

Hi Amitab,

User exit is provided by SAP if the customer feels that he needs to modify something.As we all know that the scenario depends upon various factor.So if anything other than standard is met during business process you need to modify it.So in the modification you can write code just as the normal ABAP coding.The things may depend on the application usages.Which can be sorted out only when it you using those exits.It is recommended that User exit be the last option.There are many application specific user exit.So coding also has to be done in consideration of keeping those things in mind.

Have a best day ahead.

Read only

Former Member
0 Likes
691

Hi,

Also,You should not use COMMIT WORK.

Read only

Former Member
0 Likes
691

thanks everybody