2013 Apr 26 6:53 AM
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.
2013 Apr 26 7:45 AM
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.
2013 Apr 26 7:08 AM
Hi Imran,
They maintained that I/O field attributes as "Invisible".
Regards,
Ramu velaga.
2013 Apr 26 7:18 AM
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
2013 Apr 26 7:45 AM
2013 Apr 26 8:05 AM
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
2013 Apr 26 8:26 AM
Event 'On Data Change' can work. else you need to press enter to reflect the value in 5th field.
2013 Apr 26 9:23 AM
2013 Apr 26 10:45 AM
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
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |