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

sap script language issue

Former Member
0 Likes
740

Guy's

i have following line in sap script

&'Conditions d' envoi'VBDKA-VSBED_BEZ&

it's getting printed as it's

&'Conditions d' envoi'VBDKA-VSBED_BEZ&

i have checked value of'VBDKA-VSBED_BEZ,it's 92345623

so it should print like this

Conditions d' envoi92345623 ,i have check the paragraph

they are using,every thing is fine

6 REPLIES 6
Read only

Former Member
0 Likes
685

Hi sanju,

1. minor mistake

2. the first & is at the wrong place.

3. it should be like this.

'Conditions d' envoi'<b>&VBDKA-VSBED_BEZ&</b>

regards,

amit m.

Read only

0 Likes
685

Hi

it's printing like

'Conditions d' envoi' 976822

i want it to print like

Conditions d' envoi 976822

Read only

0 Likes
685

Hi sanju,

Try like this:

P1 Conditions d' envoi &VBDKA-VSBED_BEZ&

Regards,

Ravi

Read only

Former Member
0 Likes
685

Hi Sanju,

One quick check i think you can very well print like this right?

P1 'Conditions d' envoi' &VBDKA-VSBED_BEZ&

Cheers

VJ

Read only

Former Member
0 Likes
685

only the variable should be between the &S.

REGARDS,

RAVI

Read only

manuel_bassani
Contributor
0 Likes
685

Hi,

maybe it's the apostrophe of the strnng

d' envoi

that may cause the error.

try

d'' envoi

Regards, Manuel