Application Development 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: 

Modifying standard SAP screen and PAI/PBO modules?

Former Member
0 Kudos

Hi,

I have a SAP screen in which we need to dipplay and populate a Z-field. For this particular screen I haven't found any suitable user-exit or BAdi, so what are my options for moifying the screen? Is there some modification flag or modification assistant in ABAP Screen Painter that can be used so that future SAP support packages and additions will detect the change made to the screen (so that the modification isn't overwritten in future releases)?

Thanks for your help. Points will be given!

Regards,

/ Christian

5 REPLIES 5

former_member181962
Active Contributor
0 Kudos

MOdifications to SAP standard screens will definitely be overwritten in further releases. Are you sure that the transaction doesn't have any user exit or badi?

Which transaction are you working on?

Regards,

ravi

Former Member
0 Kudos

If there are no screen exits or BADIs available,nothing can be done to modify SAP standard screens.

However using the acccess key,you can modify SAP standard screen to suit your own requirements.This however will not be supported by SAP in futures upgrades.

You can also refer to SAP about this issue.

Former Member
0 Kudos

Hi!

Thanks for the answers. One more question - how could you find possible screen exits for any given screen?

0 Kudos

You can do something like this :

  • Find SAP Modifactions

SELECT * FROM tadir

INTO TABLE jtab

WHERE pgmid = 'R3TR'

AND object = 'SMOD'

AND devclass = <devclass>.

Former Member
0 Kudos

what is the transaction you are working on?