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: 

Cross line to dispaly in layout..anybody help me??

Former Member
0 Kudos

Hi,

I know how to disaply vertical & horizontal lines.

I've to display a cross line, which resembles " / ".

Any body can help me out

Regards,

Raja.

Message was edited by: raja gurrala

11 REPLIES 11

Former Member
0 Kudos

Hi raja,

1. Intersection of vertical and horizontal line

= criss/cross line

eg + (plus sign)

2. I don't think (i could n't find)

any ascii character

which could be used in abap for printing puropse.

3. At the most +

is there, but it won't MIX/MATCH with

horizontal & vertical lines

_________-- ||||||||||||

regards,

amit m.

Former Member
0 Kudos

Hi,

There is no '/' (ascii) in abap .

The only way is use write statement int the loop to print the that line.

All the best

charan

Former Member
0 Kudos

AMIT,

Come again...

what does it mean..

i've to display a cross line...exactly a big line like "/".

How can u acheive this using +?

physically i've to print the line by using this (/) character?

0 Kudos

Hi

Try to use the statament WRITE AT /POS statament:

DATA: POS TYPE I VALUE 4.

DO 4 TIMES.

WRITE AT /POS '+'.

POS = POS - 1.

ENDDO.

Max

0 Kudos

Hi again,

1. well, i dont think there is any direct ascii

charaacter for

exactly a big line like "/".

2. Why do u want to do this ?

regards,

amit m.

Former Member
0 Kudos

Max,

can i able to write the same in SCRIPT???

0 Kudos

Hi raja,

1. for writing in script / abap program,

we have to use SPACES (by typing space bar)

2. like this (@ means space bar)

@@@@@/

@@@@/

@@@/

@@/

@/

3. Thsi will give impression of long SLASH.

4. jUST copy paste the above in abap/layout text.

regards,

amit m.

Former Member
0 Kudos

amit,

Even i have the same idea...dude.

But what's happening means it is printing like the follwing...

................/

............../

............/

. dots are tabs....u can see the effect it's not giving the exact staright line.

So ultimately i've to use long string of spaces only..it seems i don't have any other option.

Raja.

0 Kudos

hi Raja,

Ascii value of / is 47.

Former Member
0 Kudos

Amit,

i've to display the cross line...

as i said earlier i need to make some space unusable on the document..as per their suggestion...i want to disply a crossline over there...

Raja.

Former Member
0 Kudos

Is there any option to rotate a vertical or horzontal line to 45 degrees??

just this is my idea...if there is any way to implement this ..plz do share the same with me