2007 Feb 13 1:37 PM
Hi Experts,
May i know if there is any FM to generate a password with SPECIFIC pattern like there should not be digits after 2 letters..etc if given a length as input?
Thanks
Dan
2007 Feb 13 1:41 PM
Hi Experts,
May i know if there is any FM to generate a password with SPECIFIC pattern like there should not be digits after 2 letters..etc if given a length as input?
Thanks
Dan
2007 Feb 13 1:39 PM
there is no such FM...u need to write code internally in ur program to handle this.
2007 Feb 13 1:41 PM
2007 Feb 13 4:53 PM
Hi,
Thanks a lot!
Can you also tell me how to assign this generated pass word for a document sa VBELN?
2007 Feb 13 2:03 PM
See the code
Password Field on Selection-screen
The following code sets a PARAMETER to be a password input field, where for security
purposes only *'s are displayed on the screen during input
i.e. Password: *******
Parameters: p_password like sy-uname.
*******************************************************
*AT SELECTION-SCREEN OUTPUT.
AT SELECTION-SCREEN OUTPUT.
loop at screen.
check screen-name eq 'P_PASSWORD'.
move: 1 to screen-invisible.
modify screen.
endloop.
2007 Feb 15 4:01 AM
Hi,
Also you can use the above FM's & class cl_abap_random to set the seed so that you can generate consecutive passwords in different sequences.
it is better that the passwords should not be in sequence.
Award points if you find it help ful.
2007 Feb 15 4:06 AM
Hi,
Also you can use the above FM's & class cl_abap_random to set the seed so that you can generate consecutive passwords in different sequences.
it is better that the passwords should not be in sequence.
Award points if you find it help ful.
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |