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: 

User authorization

Former Member
0 Kudos

Hello,

I need to give, only display authorization(access) to a user.so the user can only display the screen for the perticular transaction. he should not be able to modify any data in hte transaction.

can any budy help me to get it.

Thanks in advance.

Bhavesh

5 REPLIES 5

Former Member
0 Kudos

Hello Babhyankar ,

You just need to put this code in your PBO module.

If sy-uname = <User for whom you want the data to be in display mode>.

loop at screen.

input = 0.

output = 1.

modify screen.

Endloop.

Endif.

It will display all the data in the screen in non editable mode.

Hope this piece of code helps you OR gives you some idea.

OR you need to Create a Authorization Object taking help of your BASIS team and can give display and create option to users accordingly.

Cheers,

Suvendu

Former Member
0 Kudos

Hi,

If you have created that screen that you can set that in the properties of that field as No Input,only Display.

Regards,

Sharath

0 Kudos

Dear Sharath,

actually i am refering to the basis side. i am talking about role and profile maintenance part.

thanks for the quick help

Bhavesh

0 Kudos

hi,

actually i am refering to the basis side. i am talking about role and profile maintenance part.

thanks for the quick help

Bhavesh

JPReyes
Active Contributor
0 Kudos
  • No cross posting

Read the "Rules of Engagement"

Regards

Juan