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

Make Fields Non Editable on Debugger

Former Member
0 Likes
1,294

Hi..

Well I have a program which deal with some sensitive data and passwords, I need to restrict users with debugging access from changing field content at runtime (in debugger). Is this possible?

and also I have a password field, can I make it a password field at debugger? I do not want to show password on debugger.

Thank you in Advance.

Isuru

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
999

Hi,

In Authorization object S_DEVELOP, OBJTYPE = 'DEBUG', ACTVT = '03'. ( Allow only users to display in debug ). Assign a role for this authorization object.

Hope it helps.

Sujay

4 REPLIES 4
Read only

Subhankar
Active Contributor
0 Likes
999

Hi ,

You can write the logic inside the macro. Then debugging is not possible.

Thanks

Subhankar

Read only

SuhaSaha
Product and Topic Expert
Product and Topic Expert
0 Likes
999

As already mentioned you can always write the code inside a macro & prevent the developer from debugging it. But the flip side of using macro is "YOU CAN'T DEBUG !!!". Hence no troubleshooting

Anyways back to your question. You can direct your query to your basis team if they can provide "no change" authorisation while debugging this particular program. Hope you get my point.

BR,

Suhas

Read only

Former Member
0 Likes
1,000

Hi,

In Authorization object S_DEVELOP, OBJTYPE = 'DEBUG', ACTVT = '03'. ( Allow only users to display in debug ). Assign a role for this authorization object.

Hope it helps.

Sujay

Read only

Former Member
0 Likes
999

it may be a little too complex but,

you might try giving those parameters in the exporting parameters of a local class's method.

Edited by: Y. Ajith Kumar on Aug 23, 2010 1:14 PM