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

SAP log-on screen

Former Member
0 Likes
994

Hello every one....Thanks for your support. I have a question.

May be this may be a simple question but I am bit curious about the logic in our SAP log-on screen,when we type password in the I/O field it shows '*' symbol i tried to search for it but am hopeless,can some one please explain me what they have done there?

Thankyou
Askar.

1 ACCEPTED SOLUTION
7 REPLIES 7
Read only

Former Member
0 Likes
961

Hi Imran,

              They maintained that I/O field attributes as "Invisible".

Regards,

Ramu velaga.

Read only

krishna_k19
Contributor
0 Likes
961

Hi Askar,

   May be they applied the below logic.

in module Output.

LOOP AT SCREEN.

     IF SCREEN-NAME = 'LPASWRD'.

       SCREEN-INVISIBLE = 1.

       MODIFY SCREEN.

     ENDIF.

   ENDLOOP.

so automatically the field will appear **** and at the same time while entering the data it will take as a ***.

Regards,

Krishna

Read only

0 Likes
961

Thanks for your reply....
Really helped me....

Is there any way to trigger an event ( PBO,PAI ) when the user enters a data in the I/O field?

Ex: I am having 5 fields,the 5th field is the total of the 4 fields.

when the user enters the values in any of the 4 fields the 5th field should show the total.
Is it possible??

( user wont be pressing any push buttons etc and this case POV wont be useful i tried )
Hope you can help me.

Thanks

Askar

Read only

0 Likes
961

Event 'On Data Change' can work. else you need to press enter to reflect the value in 5th field.

Read only

0 Likes
961

can you please tell me a brief about 'On Data Change' ?

Read only

0 Likes
961

In the PAI event, call the method CHECK_CHANGED_DATA. This method automatically triggers the data_changed event.

Ref:

http://wiki.sdn.sap.com/wiki/display/ABAP/Making+ALV+to+react+to+Change+data+automatically