cancel
Showing results for 
Search instead for 
Did you mean: 

According to material num,for every new material num one line space.

Former Member
0 Kudos

Hi,

please give suggestion how to get vertical lines without breaking as shown below.

I want according to material number(AT1),for every new material number one line space have to be there.

I used 'skip' so the verical line is breaking for every new material.

______________________________________________________________

Material Number | Material Description

_____________ |______________________________________________

| AT1 | Catalyst - 18165-RNA-A013-Y2

| AT2 | Catalyst - 18165-RNA-A013-Y2

| AT3 | Catalyst - 18165-RNA-A013-Y2 (COPY)

| AT4 | Catalyst - 18165-RNA-A013-Y2

| AT5 | Catalyst - 18165-RNA-A013-Y2

| CGW0001 SUBSTRATE 148 X 84 X 67 - 400/6/S/0.699L

| CGW0001 SUBSTRATE 148 X 84 X 67 - 400/6/S/0.699L

| CGW0001 SUBSTRATE 148 X 84 X 67 - 400/6/S/0.699L

CGW0001 SUBSTRATE 148 X 84 X 67 - 400/6/S/0.699L

| CGW0001 SUBSTRATE 148 X 84 X 67 - 400/6/S/0.699L

| CGW0001 SUBSTRATE 148 X 84 X 67 - 400/6/S/0.699L

| CGW0001 SUBSTRATE 148 X 84 X 67 - 400/6/S/0.699L

I need line continous but for every new material to material gap.

Thanks,

sree.

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi,

try this code.

loop at itab.

write:/1(18) itab-matnr,19 '|'.
write:/19 '|'.

endloop.

Regards,

Morris Bond.

Reward Points if Helpful.

Former Member
0 Kudos

Hi,

write code like this.

write : /1 sy-vline,120 sy-vline.

give the line size for ex 120

reward if usefull