cancel
Showing results for 
Search instead for 
Did you mean: 

split cell

Former Member
0 Kudos

Hi folks,

Please advice how to achieve linetype, which as 3 cell and the last celll is agin split into 2*3 matrix.

thanks in advance,

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi Karthi,

Can you please brief on what you mean by 2*3 matrix? Becuz u can split cells using the pencil (Draw Lines and Columns) on the toolbar above Table diagram.

Thanks,

Nitesh

Former Member
0 Kudos

Hi,

If you r spilting a TABLE into cells, then double click on table name, u ill see a table in layout form.

here, click on the PENCIL like (DRAW LINES AND COLUMNS) button and spilt the table into cells

or click on the push button (DETAILS) here create a new row with req no of cells..

Hope its clear!!

Rgds,

Pavan

Former Member
0 Kudos

Hi,

first split the cells.

next split the third cell and move into internla table.

exapmle:- w_adc type 123,345,56.78.90.

data : begin itab occurs o,

char(10) type c,

end of itab.

loop at line.

split w_abc at ',' into w_a w_b w_c.

split w_c at '.' into itab.

endloop.

regards,

Prabhudas

Former Member
0 Kudos

Hi Prabhu,

Please tell me this logic in detail. I didn;t get what to do actually.

Former Member
0 Kudos

Hi karthikey,

first split the cell with some seperator into three varaibles example

exapmle:- w_adc type 123,345,56.78.90.

data : begin itab occurs o,

char(10) type c,

end of itab.

split w_abc at ',' into w_a w_b w_c.

now w_a contians 123

and w_b contains 345

and w_c contains 56.78.90

gaian split he w_c into three varibles or more..

split w_c at '.' into itab.

Regards,

Prabhudas