‎2007 May 23 11:51 AM
hi guru's...
i need to give a parameter at selection screen, in the field of cno.but it should not visible to the user,and it sholud be like ' * '.means i don't want to display watever the infomation,but it should be in stars.how can we do it.if usefull full points
thanx
lokanadhan.k
‎2007 May 23 11:55 AM
AT SELECTION-SCREEN OUTPUT.
LOOP AT SCREEN.
IF SCREEN-NAME = 'P_MATNR'.
SCREEN-INVISIBLE = '1'.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
REGARDS
SHIBA DUTTA
‎2007 May 23 11:55 AM
AT SELECTION-SCREEN OUTPUT.
LOOP AT SCREEN.
IF SCREEN-NAME = 'P_MATNR'.
SCREEN-INVISIBLE = '1'.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
REGARDS
SHIBA DUTTA
‎2007 May 23 12:38 PM
hi dutta,
i want to enter the input in cno field.but while entering it sholud visible like password.in the sense in " * ".
thanx
lokanadhan.k
‎2007 May 23 12:42 PM
‎2007 May 23 12:44 PM
Hi Loknath,
The below code should solve ur problem. Make sure to write this code in the event INITIALIZATION.
PARAMETERS: p_pass.
INITIALIZATION.
LOOP AT SCREEN.
IF screen-name EQ 'P_PASS'.
screen-invisible = '1'.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
Let me know if the above solves your issue.
Regards,
Pradeep Chintala.
‎2007 May 23 12:53 PM
hi,
check this.
parameters:name(10).
WRITE:/ NAME.
at selection-screen output.
loop at screen.
IF screen-name = 'NAME'.
SCREEN-ACTIVE = '1'.
SCREEN-INVISIBLE = '1'.
SCREEN-INPUT = '1'.
SCREEN-OUTPUT = '1'.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
<b>reward if helpful</b>
RGDS,
BHARAT.
‎2007 May 23 12:00 PM
PARAMETERS: pa_carr TYPE sflight-carrid.
AT SELECTION-SCREEN OUTPUT.
LOOP AT SCREEN.
IF screen-name = 'PA_CARR'.
screen-invisible = '1'.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
‎2007 May 23 12:00 PM
hi,
AT SELECTION-SCREEN OUTPUT.
parameter: p_matnr like matnr default ' ******* '.
LOOP AT SCREEN.
IF SCREEN-NAME = 'P_MATNR'.
SCREEN-INVISIBLE = '1'.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
if helpful reward some points.
with regards,
suresh babu aluri.
‎2007 May 23 12:01 PM
Hai,
PARAMETERS : CNO TYPE C(10) MODIF ID SC1.
AT SELECTION-SCREEN OUTPUT.
LOOP AT SCREEN.
IF SCREEN-GROUP1 = 'SC1'.
SCREEN-INVISIBLE = '1'.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
Regards,
Padmam.
‎2007 May 23 12:17 PM
hi,,
TABLES : eban.
***********************************************
FIRST BLOCK
**********************************************
SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME.
SELECT-OPTIONS s_matnr FOR eban-matnr NO INTERVALS MODIF ID abc.
SELECTION-SCREEN END OF BLOCK b1.
AT SELECTION-SCREEN output.
LOOP AT SCREEN.
IF screen-group1 = 'ABC'.
screen-active = 0.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
this will disable your selection parameter
rewards if useful,
regards,
nazeer
‎2007 May 23 1:29 PM
Hi,
Try this:
PARAMETERS: p_pwd(10) TYPE c LOWER CASE OBLIGATORY DEFAULT 'secret' MODIF ID 999.
AT SELECTION-SCREEN OUTPUT.
LOOP AT SCREEN.
IF screen-group1 = '999'.
screen-invisible = '1'.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
Regards,
Diwakar
‎2007 May 23 1:31 PM
Hi,
Try this:
PARAMETERS: p_pwd(10) TYPE c LOWER CASE OBLIGATORY DEFAULT 'secret' MODIF ID 999.
AT SELECTION-SCREEN OUTPUT.
LOOP AT SCREEN.
IF screen-group1 = '999'.
screen-invisible = '1'.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
Regards,