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: 

Can I have any example form is there to create colums(sy-uline) and rows

Former Member
0 Kudos
75

Dear All,

Can I have any example form is there to design colums(sy-uline) and rows(sy-vline) in main window transaction SE71. Please let me know.

Urgent.

Regards,

Karthik.

4 REPLIES 4

Former Member
0 Kudos
37

Hi Kartik,

You can use &ULINE& and &VLINE& to have horizontal and vertical lines on the Script.

the form of uline - &ULINE(n)& is used to specify the length of uline where 'n' is the length of line.

Or you can make use of the Control Command BOX and set the width of vertical and horizontal lines.

Former Member
0 Kudos
37

best way to draw columns and rows is to use the BOX command. Keep width 0 for vertical lines, and height 0 for horizontal lines.

former_member673464
Active Contributor
0 Kudos
37

Hi,

You can draw vertical columns and horizontal rows using &uline(n)& and &vline&.

You can also use window for getting lines and columns on your script using box syntax in se71 .By specifying width and height of box as zero we can get vertical columns and horizontal lines respectively.

Former Member
0 Kudos
37

Hi!

Write this code in ur main window and check whether it satisfies your requirement.

/:TOP

/:POSITION WINDOW.

/:BOX WIDTH '196' MM HEIGHT '110' MM FRAME 10 TW.

/:BOX WIDTH '196' MM HEIGHT '1' CM FRAME 10 TW INTENSITY 10.

/:BOX XPOS '1.5' CM WIDTH 0 TW HEIGHT '110' MM FRAME 10 TW.

/:BOX XPOS '9' CM WIDTH 0 TW HEIGHT '110' MM FRAME 10 TW.

/:BOX XPOS '12' CM WIDTH 0 TW HEIGHT '110' MM FRAME 10 TW.

/:BOX XPOS '16' CM WIDTH 0 TW HEIGHT '110' MM FRAME 10 TW.

/:ENDTOP.

Reply n reward points if it works.

Regards,

Neha Bansal.