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

Border line for inputfield?

Former Member
0 Likes
1,598

Hi,

I have quite a number of inputfield & textfield in a screen. I need to set the border line for the field. Is it possible to do that? how am i go about doing it? Please advise.

Thanks

Regards,

Rayden

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
919

Hi,

If you are at screen 1000, you can add FRAME, just like this:


SELECTION-SCREEN BEGIN OF BLOCK BLC01 WITH FRAME TITLE TEXT-S10.
  PARAMETERS: P_UNAME LIKE SY-UNAME OBLIGATORY DEFAULT SY-UNAME.
SELECTION-SCREEN END OF BLOCK BLC01.

But if you at dialog screen, just add box in your screen and add your fields in you box.

Regards,

2 REPLIES 2
Read only

Former Member
0 Likes
921

Hi,

If you are at screen 1000, you can add FRAME, just like this:


SELECTION-SCREEN BEGIN OF BLOCK BLC01 WITH FRAME TITLE TEXT-S10.
  PARAMETERS: P_UNAME LIKE SY-UNAME OBLIGATORY DEFAULT SY-UNAME.
SELECTION-SCREEN END OF BLOCK BLC01.

But if you at dialog screen, just add box in your screen and add your fields in you box.

Regards,

Read only

Former Member
0 Likes
919

Goto Screen painter layout -> click on box -> drag it on fields -> if it is module pool

If it is just report then you can design boxes using below links.

http://help.sap.com/saphelp_nw04/helpdata/en/9f/dba66935c111d1829f0000e829fbfe/frameset.htm

Thanks

Seshu