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

reports

Former Member
0 Likes
1,232

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,213

AT SELECTION-SCREEN OUTPUT.

LOOP AT SCREEN.

IF SCREEN-NAME = 'P_MATNR'.

SCREEN-INVISIBLE = '1'.

MODIFY SCREEN.

ENDIF.

ENDLOOP.

REGARDS

SHIBA DUTTA

11 REPLIES 11
Read only

Former Member
0 Likes
1,214

AT SELECTION-SCREEN OUTPUT.

LOOP AT SCREEN.

IF SCREEN-NAME = 'P_MATNR'.

SCREEN-INVISIBLE = '1'.

MODIFY SCREEN.

ENDIF.

ENDLOOP.

REGARDS

SHIBA DUTTA

Read only

0 Likes
1,213

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

Read only

0 Likes
1,213

You can enter value in this field

Read only

0 Likes
1,213

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.

Read only

0 Likes
1,213

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.

Read only

Former Member
0 Likes
1,213

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.

Read only

Former Member
0 Likes
1,213

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.

Read only

Former Member
0 Likes
1,213

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.

Read only

Former Member
0 Likes
1,213

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

Read only

Former Member
0 Likes
1,213

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

Read only

Former Member
0 Likes
1,213

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,