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

Input field should not be case sensitive

Former Member
0 Likes
1,082

experts help

1)I have declared selection field in module pool as maktx of type maktx.

when ever the user enter the data into into , it is comming in caps but i want as it is the data entered by user in the program I dont want it to convert it caps by default .Please tell how to handle

2) I have a 2 radio buttons declared and made it as a group,

When user selects one radio button then that particular filed input should be allowed to enter if he selects another radio button then field 2 should be allowed to input.

I am displaying as

radiobutton1 field1 inputbox1

radiobutton2 field2 inputbox2

By default one shoule be active . is using screen modify statement will help . Should it be coded in PBO and PAI.

3)IN intial screen i will have a push button and when i press it then it will call another screen and there i will have another push button say back.

Rigth now when the user press back button in second screen i have writeen leave program.

But I want it to go back to previous screen.

call screen 'earlier screen' should be used or leave to screen 'earlier screen'.

or any other best method.

Thank you for the replies

experts help

1)I have declared selection field in module pool as maktx of type maktx.

when ever the user enter the data into into , it is comming in caps but i want as it is the data entered by user in the program I dont want it to convert it caps by default .Please tell how to handle

2) I have a 2 radio buttons declared and made it as a group,

When user selects one radio button then that particular filed input should be allowed to enter if he selects another radio button then field 2 should be allowed to input.

I am displaying as

radiobutton1 field1 inputbox1

radiobutton2 field2 inputbox2

By default one shoule be active . is using screen modify statement will help . Should it be coded in PBO and PAI.

3)IN intial screen i will have a push button and when i press it then it will call another screen and there i will have another push button say back.

Rigth now when the user press back button in second screen i have writeen leave program.

But I want it to go back to previous screen.

call screen 'earlier screen' should be used or leave to screen 'earlier screen'.

or any other best method.

Thank you for the replies

3 REPLIES 3
Read only

RaymondGiuseppi
Active Contributor
0 Likes
753

1) in screen painter maintain the input field attributes "Upper/lower case entry" (or use a correct DDIC reference)

2) in PBO you will have a LOOK AT SCREEN/MODIFY/ENDLOOP, also i suggest add a Function Code so checking/un-checking the radio-buttons will trigger PAI immediately, but in PAI ignore this function code to stay on current dynpro.

3) To go back to previous dynpro, use a LEAVE TO SCREEN 0, so program closes the current dynpro and continues with the statement following the CALL SCREEN. (Another CALL SCREEN will add one screen to the stack, til maximum number reached, when program will dump out.)

NB: Try to use the search tool, most of those questions have already been answered (many times)

Regards,

Raymond

Read only

awin_prabhu
Active Contributor
0 Likes
753

Hi Shiva,

1. Goto -> Screen Painter-> Click 'Element list' tab -> Click 'Special attr.' tab

Tick the check box 'Upper/lower case entry' for ur field 'MAKTX'. Activate.

2. Write in PBO.

3. Use 'LEAVE TO SCREEN 0' statement

Thanks

Read only

Former Member
0 Likes
753

Moderator message - Please search before asking and ask only one question per thread - post locked