Hi Pooja,
We need three screens screens. Lets say
100 - Sign in screen (with User name and password input fields)
200 - Sign up page
300 - Forget ID Page
In the main program.
SELECTION-SCREEN BEGINOFBLOCK b1 WITHFRAMETITLEtext-01.
PARAMETER : r_signin RADIOBUTTONGROUP rad1 USER-COMMAND fc,
r_signup RADIOBUTTONGROUP rad1,
r_recover RADIOBUTTONGROUP rad1,
SELECTION-SCREENENDOFBLOCK b1
AT SELECTION-SCREENOUTPUT.
if r_signin = 'X'
call screen 100STARTINGAT30 30.
elseif r_singup = 'X'.
call screen 200STARTINGAT30 20.
elseif r_recover = 'X'.
call screen 300 starting at 20 20.
endif.
Create three screens by double clicking on the screen nos.
Design corresponding layouts and the write the required code in PBO and PAI modules for each screen.