Application Development 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: 

How to create password field in screen painter

Former Member
0 Kudos

hi

i have facing same problem , how to use encript formula for password field.mean password field look like(******) type.

second issue if i give wrong password .its showing login succefully.

Any one can slove my isssue.

thanks

laxmikanta.

11 REPLIES 11

Former Member
0 Kudos

Hi,

Search the forum with the fields "password field hidden" to find how to make a field appear as ****.

For the second part of your question you don't provide enough information to comment.

Regards,

Nick

kesavadas_thekkillath
Active Contributor
0 Kudos

set the screen field attribute 'invisible'.

Former Member
0 Kudos

hi

second issue is that

when i am giving invalid password in password field and then click on login button its showing page will login succefully and its goes to next page.how can i slove .plz help me.

thanks

laxmikanta

Former Member
0 Kudos

hi

how can i set the screen field attribute 'invisible'.

tell me process plz.

thanks

laxmikanta

0 Kudos

hi

Search in SDN .

It is not the process ,iust click the invisible check box.thats all.

Double Click on the Password Field.

A popup will show You.(Screen Painter Attribute.)

In that screnn 3 tabs are available ,select "Display" tab .

Enable the or click the Invisible button and activate zzz.

For password validation

in PAI

User commaand

case sy-ucomm.

when 'OK'.

if password = 'welcome'.

call screen 102.

else.

message 'Wrong PWD' type 'E'.

endif.

endcase.

call screen 103.

if pwd

Edited by: dharma raj on Jan 6, 2010 4:00 PM

Former Member
0 Kudos

case 1 :

Give field as invisible.

case 2:

write ur own message with type E

Edited by: Karthik Thalla on Jan 6, 2010 12:11 PM

Former Member
0 Kudos

Hi all

i succefully created login screen & its working fine.now i want to add check box.i created checkbox in screen painter but i dont know how it will work.i need some coading in report part.can any one help me.

Thanks & regards

laxmikanta

0 Kudos

JUst check whether the checkbox variable = 'X' in your code.

0 Kudos

Hi

I want to add extra check box field in my login account.thats why i put condition checkbox variable = 'x'.but when compile thats time showing exception that is --- Field Variable is Unknown.so plz help me how to slove this.

Thanks & Regards

Laxmikanta

0 Kudos

Hi,

For Checkbox control you placed in the screen painter, you should provide the FctCode (function code).

In program, under pai user_command, You write the actual logic, as

when 'FctCode'.

if chk ='X'.

......

Regards,

Murali Krishna T

Former Member
0 Kudos

Hi All

I want to add extra check box field in my login account.thats why i put condition checkbox variable = 'x'.but when compile thats time showing exception that is --- Field Variable is Unknown.so plz help me how to slove this.

Thanks & Regards

Laxmikanta