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

To Disable 'CREATE' button

Former Member
0 Likes
615

Hi i have a requirement like to disable one CREATE Button(Creating of Business Partner IS-FS-CM) which is in standard ALV report.I can eliminate that button from PF status of that screen but we are not supposed to change the existing code.But that screen is BDT implemented.

Can you please help out me how to disable that button w/o changing the standard SAP code

3 REPLIES 3
Read only

Former Member
0 Likes
490

Hi,

look for screen exit´s for to do that.

Another option is find a user exit when click on CREATE button and stop the process with error message.

Read only

Former Member
0 Likes
490

Hi Krishna,

For example say your PF sataus name is 'STATUS-100' and function code for create is 'CREATE'.

then in your part of code use the following syntax,

SET PF-STATUS 'STATUS-100' EXCLUDING 'CREATE'.

I hope this will help you.

Regards,

Manoj Kumar P

Read only

Former Member
0 Likes
490

answered