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

Hide the Table entry

Former Member
0 Likes
703

Hi all,

I need to maintained the passwords in the table, while maintaing need to take the case sensitive.

But it is taking CAPS. and It should not visible in the display mode. is it possible.

Regards,

Sri

3 REPLIES 3
Read only

Former Member
0 Likes
553

Yes. If you want to make it case sensitive, then set this flag in the domain of the corresponding field.

If you want to mask the contents of the field, then in PBO, modify screen field properties as follows:

In screen layout, set the screen group (1, 2, 3, or 4) of this field (column) as, say PWD.

In PBO add the following line..

MODULE MASK_PASSWORD.

Add the following code to this module:

LOOP at SCREEN.

screen-active = 1

screen-input = 1..

screen-output = 0.

screen-invisible = 1.

modify screen.

endif.

ENDLOOP.

This will make the entries in the field (or all fields with screen group = PWD) show as '*********'.

Read only

Former Member
0 Likes
553

Hi,

If you have a custom program to do the maintenance of data, you can set the field of password on screen (as "invisible" in screen painter).

If you wish that the password do not appear is table in SE16, you have to criptography the password before save and de-criptography when read from table.

Best regards,

Leandro Mengue

Read only

Former Member
0 Likes
553

Hi guys,

I got the solution, just define the Domain as XUBCODE for the particular field

Regards,

Sri